/* TISLIT — landing page styles */

:root {
  --ivory: #FAFAF8;
  --paper: #F4EFE7;
  --beige: #E8E5E0;
  --gold: #C4A574;
  --gold-deep: #A8884F;
  --gold-soft: rgba(196, 165, 116, 0.15);
  --terracotta: #A0694A;
  --terracotta-soft: rgba(160, 105, 74, 0.12);
  --ink: #2C1810;
  --ink-soft: #6B5A4D;
  --ink-faint: #A89B91;
  --accent: var(--gold);
  --accent-soft: var(--gold-soft);
  --display-font: "Cormorant Garamond", Georgia, serif;
  --body-font: "Cormorant Garamond", Georgia, serif;
  --ui-font: "Work Sans", -apple-system, sans-serif;
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ====== HEADER ====== */
.tt-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: background 400ms ease, padding 400ms ease, border-color 400ms ease;
  border-bottom: 1px solid transparent;
}
.tt-header.is-scrolled {
  background: rgba(250, 250, 248, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: rgba(196, 165, 116, 0.18);
}
.tt-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.tt-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tt-logo__word {
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 6px;
  color: var(--ink);
}
.tt-nav {
  display: flex;
  gap: 38px;
  font-family: var(--ui-font);
  font-size: 12.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tt-nav a {
  position: relative;
  padding-bottom: 2px;
  transition: color 240ms ease;
}
.tt-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 320ms ease;
}
.tt-nav a:hover { color: var(--ink); }
.tt-nav a:hover::after { width: 100%; }

.tt-header__cta { padding: 10px 22px; font-size: 12px; }

/* ====== BUTTONS ====== */
.tt-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--ui-font);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 320ms cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.tt-btn--primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.tt-btn--primary:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(44, 24, 16, 0.4);
}
.tt-btn--primary[disabled] { opacity: 0.7; cursor: wait; }
.tt-btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.tt-btn--ghost:hover {
  background: var(--ink);
  color: var(--ivory);
}
.tt-btn--text {
  padding: 16px 4px;
  background: transparent;
  color: var(--ink);
  border: none;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.tt-btn--text:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ====== EYEBROW & LABELS ====== */
.tt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ui-font);
  font-size: 11.5px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.tt-eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--accent);
  display: inline-block;
  transform: rotate(45deg);
}
.tt-label {
  font-family: var(--ui-font);
  font-size: 11.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.tt-label--light { color: var(--gold); }

/* ====== SECTION SCAFFOLD ====== */
.tt-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px 48px;
}
.tt-section__title {
  font-family: var(--display-font);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.tt-section__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.tt-section__title--light { color: var(--ivory); }
.tt-section__header {
  max-width: 760px;
  margin-bottom: 80px;
}

/* ====== HERO ====== */
.tt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 180px 48px 0;
  overflow: hidden;
}
.tt-hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
}
[data-motif="off"] .tt-hero__pattern { opacity: 0; }

/* Hands composition — full-bleed silhouettes reaching toward center */
.tt-hands {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.tt-hands::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 52%;
  background: linear-gradient(to bottom, var(--ivory) 30%, transparent);
  z-index: 3;
  pointer-events: none;
}
.tt-hands__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 65%;
  opacity: 0;
  animation: handsImgIn 1800ms cubic-bezier(.2,.7,.2,1) 200ms forwards;
  filter: drop-shadow(0 30px 60px rgba(44, 24, 16, 0.12));
}
@keyframes handsImgIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

[data-motif="off"] .tt-hands__img { opacity: 0.35; }
[data-motif="off"] .tt-hands__center { display: none; }

.tt-hands__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.tt-hands__halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0;
  animation: handsHalo 5s ease-in-out 1400ms infinite;
}
@keyframes handsHalo {
  0%, 100% { opacity: 0.4; transform: scale(0.92); }
  50% { opacity: 0.85; transform: scale(1.08); }
}
.tt-hands__mark {
  position: relative;
  opacity: 0;
  animation: handsMark 1.4s cubic-bezier(.4,.1,.2,1) 1100ms forwards;
}
@keyframes handsMark {
  from { opacity: 0; transform: scale(0.4) rotate(-25deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

@media (max-width: 900px) {
  .tt-hands__img {
    object-position: center 65%;
    opacity: 0.45;
  }
  .tt-hands__img { animation: handsImgInMobile 1800ms cubic-bezier(.2,.7,.2,1) 200ms forwards; }
}
@keyframes handsImgInMobile {
  from { opacity: 0; }
  to { opacity: 0.45; }
}

.tt-hero__inner {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}
.tt-hero__inner--withHands {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-right: 0;
}
.tt-hero__inner--withHands .tt-hero__title { max-width: none; margin-left: auto; margin-right: auto; }
.tt-hero__inner--withHands .tt-hero__sub { margin-left: auto; margin-right: auto; }
.tt-hero__inner--withHands .tt-eyebrow,
.tt-hero__inner--withHands .tt-hero__ctas,
.tt-hero__inner--withHands .tt-hero__meta {
  justify-content: center;
}
.tt-hero__inner--withHands .tt-hero__meta { margin-left: auto; margin-right: auto; }
@media (max-width: 900px) {
  .tt-hero__inner--withHands { padding-right: 0; }
}
.tt-hero__title {
  font-family: var(--display-font);
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  color: var(--ink);
  max-width: 13ch;
}
.tt-hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.tt-hero__sub {
  font-family: var(--display-font);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 48px;
}
.tt-hero__ctas {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.tt-hero__meta {
  display: flex;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--beige);
  max-width: 720px;
}
.tt-meta__item { display: flex; flex-direction: column; gap: 4px; }
.tt-meta__num {
  font-family: var(--display-font);
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.tt-meta__lbl {
  font-family: var(--ui-font);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.tt-meta__rule {
  width: 1px; height: 32px; background: var(--beige);
}
.tt-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--ui-font);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.tt-hero__scrollLine {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--ink-faint), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ====== VALUES ====== */
.tt-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--beige);
  border-left: 1px solid var(--beige);
}
.tt-values__grid > div {
  display: flex;
  flex-direction: column;
}
.tt-card {
  position: relative;
  padding: 48px 40px 56px;
  border-right: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  background: var(--ivory);
  transition: background 320ms ease, transform 320ms ease;
  overflow: hidden;
  flex: 1;
}
.tt-card:hover {
  background: #fff;
  transform: translateY(-2px);
}
.tt-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.tt-card__num {
  font-family: var(--ui-font);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--ink-faint);
}
.tt-card__title {
  font-family: var(--display-font);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--ink);
}
.tt-card__body {
  font-family: var(--display-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 32ch;
}
.tt-card__line {
  position: absolute;
  left: 40px; bottom: 28px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 480ms cubic-bezier(.2,.7,.2,1);
}
.tt-card:hover .tt-card__line { width: 60px; }

/* ====== APPROACH ====== */
.tt-approach__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: start;
}
.tt-approach__intro {
  font-family: var(--display-font);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 32px 0 56px;
}
.tt-approach__points {
  display: flex;
  flex-direction: column;
  gap: 36px;
  border-top: 1px solid var(--beige);
  padding-top: 36px;
}
.tt-approach__point {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
}
.tt-approach__roman {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}
.tt-approach__point h4 {
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--ink);
}
.tt-approach__point p {
  font-family: var(--display-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.tt-approach__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  border: 1px solid var(--beige);
  overflow: hidden;
}
.tt-approach__caption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  font-family: var(--display-font);
}
.tt-approach__caption span {
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
}
.tt-approach__caption small {
  font-family: var(--ui-font);
  font-size: 10.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}

/* ====== QUOTE ====== */
.tt-quote {
  text-align: center;
  padding: 100px 48px;
  max-width: 980px;
}
.tt-quote__text {
  font-family: var(--display-font);
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.3;
  color: var(--ink);
  margin: 40px auto 28px;
  max-width: 22ch;
  font-weight: 300;
}
.tt-quote__attr {
  font-family: var(--ui-font);
  font-size: 11.5px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  justify-content: center;
  gap: 16px;
}
.tt-quote__sep { color: var(--accent); }

/* ====== FORM ====== */
.tt-form { max-width: 860px; }
.tt-form__header { max-width: 600px; margin-bottom: 48px; }

/* Confidentiality note */
.tt-form__confidNote {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui-font);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 20px;
}

/* Steps indicator */
.tt-form__steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}
.tt-form__step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.tt-form__step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui-font);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--ink-faint);
  background: var(--ivory);
  flex-shrink: 0;
  transition: all 300ms ease;
}
.tt-form__step.is-active .tt-form__step-dot {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--gold-soft);
}
.tt-form__step.is-done .tt-form__step-dot {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ivory);
  font-size: 13px;
}
.tt-form__step-label {
  font-family: var(--ui-font);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-faint);
  transition: color 300ms ease;
}
.tt-form__step.is-active .tt-form__step-label { color: var(--ink); }
.tt-form__step-line {
  flex: 1;
  height: 1px;
  background: var(--beige);
  margin: 0 12px;
}

/* Step title */
.tt-form__step-title {
  grid-column: 1 / -1;
  font-family: var(--ui-font);
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--beige);
  margin-bottom: 8px;
}

/* Single column form */
.tt-form__card--single {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Radio vertical */
.tt-radio--col {
  flex-direction: column;
  gap: 8px;
}
.tt-radio--col .tt-radio__opt {
  justify-content: flex-start;
}

/* Error block */
.tt-field__err--block {
  position: static;
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--terracotta);
  font-family: var(--ui-font);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Checkboxes */
.tt-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tt-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-family: var(--display-font);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.tt-checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.tt-checkbox__box {
  width: 20px;
  height: 20px;
  border: 1px solid var(--beige);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 240ms ease;
}
.tt-checkbox.is-on .tt-checkbox__box {
  background: var(--ink);
  border-color: var(--ink);
}
.tt-checkbox.is-on .tt-checkbox__box::after {
  content: "";
  position: absolute;
  left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid var(--ivory);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

/* Nav footer */
.tt-form__foot--nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tt-form__intro {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 24px;
}
.tt-form__card {
  background: #fff;
  border: 1px solid var(--beige);
  padding: 56px 56px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 36px;
  position: relative;
}
.tt-form__card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 28px; height: 28px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}
.tt-form__card::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 28px; height: 28px;
  border-bottom: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
}
.tt-field { display: flex; flex-direction: column; gap: 10px; position: relative; }
.tt-field--full { grid-column: 1 / -1; }
.tt-field label {
  font-family: var(--ui-font);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tt-field input,
.tt-field textarea {
  font-family: var(--display-font);
  font-size: 17px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--beige);
  padding: 12px 0;
  outline: none;
  transition: border-color 280ms ease, box-shadow 280ms ease;
  resize: none;
}
.tt-field input::placeholder,
.tt-field textarea::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}
.tt-field input:focus,
.tt-field textarea:focus {
  border-bottom-color: var(--accent);
  box-shadow: 0 1px 0 0 var(--accent);
}
.tt-field__err {
  font-family: var(--ui-font);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--terracotta);
  position: absolute;
  right: 0; top: 0;
}
.tt-radio { display: flex; gap: 12px; }
.tt-radio__opt {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 1px solid var(--beige);
  cursor: pointer;
  font-family: var(--ui-font);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 240ms ease;
}
.tt-radio__opt input { position: absolute; opacity: 0; pointer-events: none; }
.tt-radio__opt:hover { border-color: var(--accent); color: var(--ink); }
.tt-radio__opt.is-on {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.tt-form__foot {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid var(--beige);
  flex-wrap: wrap;
}
.tt-form__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui-font);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.tt-form__sent {
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.tt-form__sentBody {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 50ch;
}

/* ====== CONTACT ====== */
.tt-contact {
  max-width: none;
  background: var(--ink);
  color: var(--ivory);
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}
.tt-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(196, 165, 116, 0.08), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(160, 105, 74, 0.08), transparent 40%);
  pointer-events: none;
}
.tt-contact__header {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto 80px;
}
.tt-contact__grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(196, 165, 116, 0.25);
  border-left: 1px solid rgba(196, 165, 116, 0.25);
}
.tt-contact__card {
  padding: 40px 32px 48px;
  border-right: 1px solid rgba(196, 165, 116, 0.25);
  border-bottom: 1px solid rgba(196, 165, 116, 0.25);
  transition: background 320ms ease;
}
.tt-contact__card:hover { background: rgba(196, 165, 116, 0.06); }
.tt-contact__lbl {
  font-family: var(--ui-font);
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.tt-contact__val {
  font-family: var(--display-font);
  font-size: 24px;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 8px;
}
.tt-contact__sub {
  font-family: var(--ui-font);
  font-size: 11.5px;
  letter-spacing: 1.4px;
  color: rgba(250, 250, 248, 0.5);
}

/* ====== FOOTER ====== */
.tt-footer {
  background: #1c100a;
  color: rgba(250, 250, 248, 0.7);
  padding: 80px 48px 32px;
}
.tt-footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(196, 165, 116, 0.18);
}
.tt-footer__brand { display: flex; flex-direction: column; gap: 14px; }
.tt-footer__word {
  font-family: var(--display-font);
  font-size: 28px;
  letter-spacing: 8px;
  color: var(--gold);
  margin-top: 4px;
}
.tt-footer__tag {
  font-family: var(--ui-font);
  font-size: 11.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.5);
}
.tt-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tt-footer__cols > div { display: flex; flex-direction: column; gap: 10px; }
.tt-footer__h {
  font-family: var(--ui-font);
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.tt-footer__cols a {
  font-family: var(--display-font);
  font-size: 16px;
  color: rgba(250, 250, 248, 0.75);
  transition: color 240ms ease;
}
.tt-footer__cols a:hover { color: var(--gold); }
.tt-footer__bot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-family: var(--ui-font);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.4);
}

/* ====== LOGO BLOCK ====== */
.tt-logo__block { display: flex; flex-direction: column; gap: 1px; }
.tt-logo__sub {
  font-family: var(--ui-font);
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-faint);
  line-height: 1;
}

/* ====== HERO BADGES ====== */
.tt-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding-top: 16px;
  justify-content: center;
}
.tt-hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ui-font);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ====== SECTION INTRO ====== */
.tt-section__intro {
  font-family: var(--display-font);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 24px 0 0;
}

/* ====== GRID VARIANTS ====== */
.tt-values__grid--3 { grid-template-columns: repeat(3, 1fr); }
.tt-values__grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ====== CONFIDENTIALITÉ POINT ====== */
.tt-conf__point {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-right: 1px solid rgba(196, 165, 116, 0.25);
  border-bottom: 1px solid rgba(196, 165, 116, 0.25);
  font-family: var(--display-font);
  font-size: 17px;
  color: rgba(250, 250, 248, 0.85);
  transition: background 280ms ease;
}
.tt-conf__point:hover { background: rgba(196, 165, 116, 0.06); }

/* ====== FAQ ====== */
.tt-faq { max-width: 860px; }
.tt-faq__list {
  border-top: 1px solid var(--beige);
}
.tt-faq__item {
  border-bottom: 1px solid var(--beige);
}
.tt-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
  font-family: var(--display-font);
  font-size: 20px;
  color: var(--ink);
  transition: color 240ms ease;
}
.tt-faq__q:hover { color: var(--accent); }
.tt-faq__icon {
  font-family: var(--ui-font);
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}
.tt-faq__a {
  font-family: var(--display-font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  padding: 0 0 28px;
  max-width: 68ch;
}

/* ====== FOOTER ADDITIONS ====== */
.tt-footer__desc {
  font-family: var(--display-font);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250, 250, 248, 0.5);
  max-width: 36ch;
  margin-top: 8px;
}
.tt-footer__note {
  font-style: italic;
  max-width: 48ch;
  text-align: right;
}

/* ====== HERO REASSURANCE — desktop hidden ====== */
.tt-hero__reassurance {
  display: none;
  font-family: var(--ui-font);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  text-align: center;
  margin: 0;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .tt-values__grid { grid-template-columns: repeat(2, 1fr); }
  .tt-values__grid--3 { grid-template-columns: repeat(2, 1fr); }
  .tt-values__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .tt-approach__grid { grid-template-columns: 1fr; gap: 60px; }
  .tt-contact__grid { grid-template-columns: repeat(2, 1fr); }
  .tt-footer__top { grid-template-columns: 1fr; }
  .tt-conf__inner { grid-template-columns: 1fr !important; }
}

/* ====== MOBILE (≤ 768px) ====== */
@media (max-width: 768px) {

  /* — GLOBAL — */
  .tt-section { padding: 60px 20px; }
  .tt-section__header { max-width: 100%; margin-bottom: 36px; }
  .tt-section__title { font-size: clamp(24px, 7vw, 32px) !important; line-height: 1.1; }
  .tt-section__intro { font-size: 15px; line-height: 1.7; max-width: none; }
  .tt-eyebrow { margin-bottom: 20px; font-size: 10px; }
  .tt-label { font-size: 10px; letter-spacing: 2px; margin-bottom: 16px; }

  /* — HEADER — */
  .tt-header { padding: 14px 0; }
  .tt-header__inner { padding: 0 20px; }
  .tt-nav { display: none; }
  .tt-logo__word { font-size: 18px; letter-spacing: 4px; }
  .tt-logo__sub { font-size: 8px; letter-spacing: 1px; }
  .tt-header__cta { padding: 8px 16px !important; font-size: 10px !important; letter-spacing: 1.2px !important; }

  /* — HERO — */
  .tt-hero { padding: 96px 20px 36px; }
  .tt-hero__inner--withHands {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 132px);
  }
  .tt-hero__title {
    font-size: clamp(30px, 8.5vw, 40px) !important;
    line-height: 1.05;
    max-width: 14ch;
    margin: 0 auto 20px;
  }
  .tt-hero__sub {
    font-size: 15px;
    line-height: 1.7;
    max-width: 32ch;
    margin: 0 auto 0;
  }
  .tt-hero__ctas-wrap { margin-top: auto !important; padding-top: 200px; }
  .tt-hero__ctas {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 0 !important;
    margin-bottom: 14px !important;
    width: 100%;
  }
  .tt-hero__ctas .tt-btn--primary {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 11px;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
  }
  .tt-hero__reassurance {
    display: block;
    margin: 0 0 12px;
  }
  .tt-hero__ctas .tt-btn--text {
    font-size: 11px;
    padding: 8px 4px;
    letter-spacing: 1.2px;
  }
  .tt-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    padding-top: 10px;
  }
  .tt-hero__badge {
    align-items: center;
    text-align: left;
    font-size: 9px;
    letter-spacing: 1.2px;
    gap: 5px;
  }
  .tt-hero__badge span { text-align: left; }
  .tt-hero__badge svg {
    flex-shrink: 0;
    width: 8px !important;
    height: 8px !important;
    margin-top: 0;
  }
  .tt-hero__meta { gap: 18px; }
  .tt-meta__rule { display: none; }
  .tt-hero__scroll { display: none; }

  /* — EMOTION BLOCK — */
  .tt-emotion-block { padding: 48px 20px !important; }
  .tt-emotion-block p {
    max-width: 32ch !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  /* — CARDS — */
  .tt-values__grid { grid-template-columns: 1fr; }
  .tt-values__grid--3 { grid-template-columns: 1fr; }
  .tt-values__grid--4 { grid-template-columns: 1fr; }
  .tt-card { padding: 22px 20px 28px; }
  .tt-card:hover { transform: none; }
  .tt-card__top { margin-bottom: 18px; }
  .tt-card__title { font-size: 22px; }
  .tt-card__body { font-size: 14px; line-height: 1.6; }
  .tt-card__num { font-size: 9px; opacity: 0.5; }

  /* — PARCOURS — */
  .tt-approach__grid { grid-template-columns: 1fr; gap: 36px; }
  .tt-approach__intro { font-size: 15px; max-width: none; margin: 14px 0 28px; }
  .tt-approach__points { gap: 20px; padding-top: 20px; }
  .tt-approach__point { grid-template-columns: 32px 1fr; gap: 10px; }
  .tt-approach__roman { font-size: 16px; }
  .tt-approach__point h4 { font-size: 17px; margin-bottom: 2px; }
  .tt-approach__point p { font-size: 14px; line-height: 1.55; }
  .tt-approach__left .tt-btn { width: 100%; justify-content: center; }

  /* — CONFIDENTIALITÉ — */
  .tt-contact { padding: 56px 20px; }
  .tt-contact__grid { grid-template-columns: 1fr; }
  .tt-conf__inner { grid-template-columns: 1fr !important; gap: 36px !important; }
  .tt-conf__point { padding: 13px 16px; font-size: 14px; }

  /* — TRUST — */
  .tt-trust-section { padding: 56px 20px !important; }

  /* — RARETÉ / QUOTE — */
  .tt-quote { padding: 48px 20px; }
  .tt-quote__text { font-size: clamp(20px, 5.5vw, 26px); max-width: 18ch; }

  /* — FAQ — */
  .tt-faq { max-width: 100%; }
  .tt-faq__q { font-size: 16px; padding: 18px 0; gap: 12px; }
  .tt-faq__a { font-size: 14px; line-height: 1.7; padding-bottom: 18px; }

  /* — FORMULAIRE — */
  .tt-form { max-width: 100%; }
  .tt-form__header { margin-bottom: 24px; max-width: 100%; }
  .tt-form__card { grid-template-columns: 1fr; padding: 24px 18px 20px; }
  .tt-form__steps { overflow-x: auto; padding-bottom: 6px; }
  .tt-form__step-dot { width: 28px; height: 28px; font-size: 10px; }
  .tt-form__step-label { font-size: 8.5px; letter-spacing: 0.8px; }
  .tt-field { gap: 8px; }
  .tt-field input, .tt-field textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 10px 0;
  }
  .tt-radio__opt { padding: 12px 10px; font-size: 11px; letter-spacing: 1px; }
  .tt-form__foot--nav {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .tt-form__foot--nav > .tt-btn {
    order: -1;
    width: 100%;
    justify-content: center;
  }
  .tt-form__foot--nav > div:first-child { display: flex; justify-content: center; }
  .tt-form__legal { justify-content: center; order: 10; font-size: 10px; }

  /* — FOOTER — */
  .tt-footer { padding: 44px 20px 24px; }
  .tt-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .tt-footer__cols { grid-template-columns: 1fr; gap: 22px; }
  .tt-footer__bot { flex-direction: column; gap: 8px; align-items: flex-start; }
  .tt-footer__note { text-align: left; max-width: none; }
  .tt-footer__word { font-size: 22px; letter-spacing: 5px; }
}

/* ====== PETITS MOBILES (≤ 390px) ====== */
@media (max-width: 390px) {
  .tt-section { padding: 52px 16px; }
  .tt-hero { padding: 88px 16px 32px; }
  .tt-hero__title { font-size: clamp(28px, 8vw, 34px) !important; }
  .tt-hero__sub { font-size: 14px; }
  .tt-hero__ctas .tt-btn--primary { font-size: 10px; padding: 14px 16px; }
  .tt-card { padding: 18px 16px 24px; }
  .tt-form__card { padding: 20px 14px 18px; }
  .tt-contact { padding: 48px 16px; }
  .tt-footer { padding: 36px 14px 20px; }
  .tt-quote { padding: 40px 16px; }
  .tt-emotion-block { padding: 40px 16px !important; }
  .tt-trust-section { padding: 48px 16px !important; }
  .tt-section__title { font-size: clamp(22px, 7.5vw, 28px) !important; }
  .tt-conf__point { padding: 11px 14px; font-size: 13px; }
  .tt-faq__q { font-size: 15px; }
  .tt-approach__point h4 { font-size: 16px; }
}
