/* ============================================================
   MAÎTRE — Private Client Services
   Palette:
     Maître Green   #18352D
     Warm Ivory     #F2EDE3
     Soft Stone     #C8C0B4
     Muted Bronze   #9A7B57  (rare accent)
     Deep Oxblood   #532E2E  (functional only: errors)
     Charcoal       #252826
   ============================================================ */

:root {
  --green: #18352D;
  --green-deep: #0E211B;
  --ivory: #F2EDE3;
  --stone: #C8C0B4;
  --bronze: #9A7B57;
  --oxblood: #532E2E;
  --charcoal: #252826;

  --ink-70: rgba(37, 40, 38, 0.72);
  --ink-55: rgba(37, 40, 38, 0.55);
  --ink-38: rgba(37, 40, 38, 0.38);
  --hairline-light: rgba(37, 40, 38, 0.14);
  --hairline-dark: rgba(242, 237, 227, 0.14);
  --ivory-80: rgba(242, 237, 227, 0.8);
  --ivory-65: rgba(242, 237, 227, 0.65);
  --ivory-50: rgba(242, 237, 227, 0.5);

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 84px;
}

/* ---------- Base ---------- */

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.62;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }

::selection { background: var(--bronze); color: var(--ivory); }

:focus-visible {
  outline: 1px solid var(--bronze);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 3000;
  padding: 0.7rem 1.2rem;
  background: var(--green);
  color: var(--ivory);
  font-size: 0.8rem;
  text-decoration: none;
  transition: top 0.3s;
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ---------- Typography ---------- */

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section--light .section-title { color: var(--green); }
.section--dark .section-title,
.section--deep .section-title { color: var(--ivory); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }

.section-intro {
  max-width: 660px;
  margin-top: 1.1rem;
  font-size: 1.02rem;
  color: var(--ink-70);
}
.section--dark .section-intro { color: var(--ivory-65); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 2.4rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out);
}

.btn--solid {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--ivory);
}
.btn--solid:hover { background: #87694A; border-color: #87694A; }

.btn--outline {
  background: transparent;
  border-color: var(--ivory-50);
  color: var(--ivory);
}
.btn--outline:hover { background: var(--bronze); border-color: var(--bronze); color: var(--ivory); }

.btn--dark {
  background: var(--green);
  border-color: var(--green);
  color: var(--ivory);
}
.btn--dark:hover { background: var(--green-deep); border-color: var(--green-deep); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(24, 53, 45, 0.97);
  border-bottom-color: rgba(242, 237, 227, 0.1);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: padding 0.45s var(--ease-out);
}

.site-header.scrolled .header-inner { padding-block: 1.05rem; }

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ivory);
}

.brand-monogram { width: 30px; height: 30px; color: var(--bronze); flex: none; }

.brand-word {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.main-nav { display: flex; gap: 2.5rem; }

.main-nav a {
  position: relative;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-80);
  padding-block: 0.4rem;
  transition: color 0.3s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.main-nav a:hover { color: var(--ivory); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1.5rem; }

.header-cta { padding: 0.8rem 1.7rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 40px;
  height: 40px;
  padding: 8px 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}

.menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  background: rgba(14, 33, 27, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.mobile-menu.open .mobile-nav a { opacity: 1; transform: none; }
.mobile-menu.open .mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav a:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-nav a:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu.open .mobile-nav a:nth-child(4) { transition-delay: 0.34s; }

.mobile-cta { opacity: 0; transition: opacity 0.5s var(--ease-out) 0.42s; }
.mobile-menu.open .mobile-cta { opacity: 1; }

.mobile-menu-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--bronze);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out) 0.5s;
}
.mobile-menu.open .mobile-menu-line { opacity: 1; }

body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--green-deep);
}

.hero-media { position: absolute; inset: 0; overflow: hidden; }

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 33, 27, 0.62) 0%, rgba(14, 33, 27, 0.15) 65%),
    linear-gradient(180deg, rgba(14, 33, 27, 0.55) 0%, rgba(24, 53, 45, 0.28) 45%, rgba(14, 33, 27, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 5rem;
  color: var(--ivory);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.6vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  max-width: 19ch;
  margin-top: 1.3rem;
}

.hero-text {
  max-width: 560px;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ivory-80);
}

.hero-actions { margin-top: 2.1rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--bronze), transparent);
  animation: scroll-pulse 2.8s var(--ease-out) infinite;
}

@keyframes scroll-pulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  35% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  70% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ---------- Sections ---------- */

.section { padding-block: clamp(3.8rem, 7vw, 5.8rem); }

.section--light { background: var(--ivory); color: var(--charcoal); }
.section--dark { background: var(--green); color: var(--ivory); }
.section--deep { background: var(--green-deep); color: var(--ivory); }

/* ---------- Estate band (full-width image break) ---------- */

.estate-band {
  height: clamp(300px, 52vh, 540px);
  background:
    linear-gradient(180deg, rgba(14, 33, 27, 0.34), rgba(14, 33, 27, 0.18) 45%, rgba(14, 33, 27, 0.42)),
    url("../img/estate-grounds.png") center 62% / cover no-repeat;
}

/* ---------- Positioning ---------- */

.positioning-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.2rem, 4.5vw, 4rem);
  align-items: start;
}

.positioning-left .section-title { max-width: 14ch; }

.positioning-figure {
  position: relative;
  margin-top: 2.2rem;
}

.positioning-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.positioning-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(154, 123, 87, 0.4);
  transform: translate(14px, 14px);
  pointer-events: none;
}

.positioning-right p { margin-bottom: 1rem; color: var(--ink-70); }

.positioning-right .lead {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.4;
  color: var(--charcoal);
}

.statement {
  margin-top: 1.8rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--bronze);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--green);
}

/* ---------- Services ---------- */

.service-category {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(1.9rem, 3.5vw, 2.8rem);
  border-top: 1px solid var(--hairline-light);
}

.service-number {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--bronze);
  margin-bottom: 0.8rem;
}

.service-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.8rem;
}

.service-desc {
  max-width: 38ch;
  font-size: 0.98rem;
  color: var(--ink-70);
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.5rem;
}

.service-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.5rem;
  border-bottom: 1px solid var(--hairline-light);
  font-size: 0.95rem;
  color: var(--ink-70);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.3rem;
  width: 14px;
  height: 1px;
  background: var(--bronze);
}

.service-note {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--bronze);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--green);
}

/* ---------- How It Works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3.5vw, 3.2rem);
}

.step {
  border-top: 1px solid var(--hairline-dark);
  padding-top: 1.7rem;
}

.step-number {
  display: block;
  font-family: var(--serif);
  font-feature-settings: "lnum" 1;
  font-variant-numeric: lining-nums;
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--bronze);
  margin-bottom: 0.9rem;
}

.step-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 0.8rem;
}

.step p {
  font-size: 0.96rem;
  color: var(--ivory-65);
  margin-bottom: 0.7rem;
}

/* ---------- Why MAÎTRE ---------- */

.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 3.2vw, 2.8rem);
}

.advantage {
  border-top: 1px solid var(--hairline-light);
  padding-top: 1.5rem;
}

.advantage:last-child {
  grid-column: 1 / -1;
  max-width: 52rem;
}

.advantage-number {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--bronze);
  margin-bottom: 0.8rem;
}

.advantage h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.22rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.advantage p { font-size: 0.95rem; color: var(--ink-70); }

/* ---------- Confidentiality ---------- */

.confidentiality {
  position: relative;
  overflow: hidden;
}

.confidentiality-mark {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: min(55vh, 500px);
  height: min(55vh, 500px);
  color: rgba(154, 123, 87, 0.08);
  pointer-events: none;
}

.confidentiality-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.confidentiality-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
}

.confidentiality-title em {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--bronze);
}

.confidentiality-text { margin-top: 2rem; }

.confidentiality-text p {
  color: var(--ivory-65);
  margin-bottom: 0.9rem;
}

.confidentiality-line {
  margin-top: 2.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ---------- Testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 3.5vw, 3.2rem);
}

.quote {
  border-top: 1px solid var(--hairline-light);
  padding-top: 1.7rem;
}

.quote p {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--charcoal);
}

.quote footer { margin-top: 1.3rem; }

.quote-author {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.quote-context {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--ink-55);
}

/* ---------- Final CTA ---------- */

.final-cta-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ivory);
}

.final-cta-text {
  max-width: 560px;
  margin: 1.4rem auto 2.2rem;
  color: var(--ivory-65);
}

.final-cta-signoff {
  margin-top: 3.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--bronze);
}

/* ---------- Enquiry form ---------- */

.enquiry-inner { max-width: 780px; }

.enquiry .section-title { margin-bottom: 2.3rem; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row { margin-bottom: 1.7rem; }

.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.field label,
.field--methods legend {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 0.75rem;
}

.req { color: var(--bronze); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(37, 40, 38, 0.3);
  border-radius: 0;
  transition: border-color 0.3s;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--ink-38); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--green);
}

.field textarea {
  min-height: 120px;
  padding: 1rem;
  border: 1px solid rgba(37, 40, 38, 0.3);
  resize: vertical;
  line-height: 1.6;
}

.field textarea:focus { border-color: var(--green); }

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.2rem;
  cursor: pointer;
}

.field select:invalid { color: var(--ink-38); }
.field select option { color: var(--charcoal); }

.select-wrap { position: relative; }

.select-wrap::after {
  content: "";
  position: absolute;
  right: 0.3rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--bronze);
  border-bottom: 1px solid var(--bronze);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* Contact method options */
.field--methods { border: none; margin-bottom: 1.7rem; }

.method-options { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.method { position: relative; }

.method input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.method span {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-70);
  border: 1px solid rgba(37, 40, 38, 0.28);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.method input:checked + span {
  border-color: var(--green);
  color: var(--green);
  background: rgba(24, 53, 45, 0.05);
}

.method input:focus-visible + span {
  outline: 1px solid var(--bronze);
  outline-offset: 3px;
}

/* Consent */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}

.consent input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.consent-box {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 0.3rem;
  border: 1px solid rgba(37, 40, 38, 0.4);
  transition: background 0.3s, border-color 0.3s;
}

.consent-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2.5px;
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--ivory);
  border-bottom: 1.5px solid var(--ivory);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}

.consent input:checked ~ .consent-box {
  background: var(--green);
  border-color: var(--green);
}

.consent input:checked ~ .consent-box::after { opacity: 1; }

.consent input:focus-visible ~ .consent-box {
  outline: 1px solid var(--bronze);
  outline-offset: 3px;
}

.consent-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-70);
}

.form-error {
  margin-bottom: 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid var(--oxblood);
  font-size: 0.9rem;
  color: var(--oxblood);
}

.form-submit { margin-top: 2rem; }

.form-disclaimer {
  margin-top: 1.8rem;
  max-width: 640px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-55);
}

/* Confirmation */
.form-confirmation {
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  border: 1px solid rgba(154, 123, 87, 0.45);
}

.confirmation-mark {
  width: 42px;
  height: 42px;
  margin: 0 auto 1.8rem;
  color: var(--bronze);
}

.form-confirmation h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.form-confirmation p {
  max-width: 480px;
  margin: 0 auto;
  color: var(--ink-70);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green-deep);
  color: var(--stone);
  padding: clamp(2.4rem, 4vw, 3.4rem) 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(242, 237, 227, 0.1);
}

.footer-word {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ivory);
}

.footer-tag {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
}

.footer-line {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ivory-50);
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a,
.footer-channel {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-65);
  transition: color 0.3s;
}

.footer-nav a:hover,
.footer-channel:hover { color: var(--bronze); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-top: 1.5rem;
}

.footer-monogram {
  width: 24px;
  height: 24px;
  color: rgba(154, 123, 87, 0.6);
  flex: none;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.footer-legal a {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(242, 237, 227, 0.42);
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--stone); }

.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(242, 237, 227, 0.32);
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0ms);
}

.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:last-child { grid-column: 1 / -1; max-width: 30rem; }
  .advantages { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 720px) {
  .positioning-grid,
  .service-category { grid-template-columns: 1fr; }

  .positioning-left .section-title { max-width: none; }

  .positioning-figure { margin-top: 2.2rem; }
  .positioning-figure::after { transform: translate(9px, 9px); }

  .service-desc { max-width: none; }

  .service-list { grid-template-columns: 1fr; }

  .steps,
  .advantages,
  .quotes { grid-template-columns: 1fr; }

  .advantage:last-child { max-width: none; }

  .form-row--two { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }

  .footer-bottom { justify-content: center; text-align: center; }

  .hero-content { padding-top: 7rem; }
  .hero-title { max-width: 13ch; }

  .confidentiality-mark { right: -30%; opacity: 0.6; }

  .final-cta-signoff { margin-top: 2.6rem; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .reveal { opacity: 1; transform: none; }
  .hero-scroll span { animation: none; }
}
