:root {
  --bg: #f6f1e7;
  --bg-alt: #ede4d4;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.68);
  --line: rgba(31, 30, 27, 0.1);
  --text: #171612;
  --text-soft: rgba(23, 22, 18, 0.72);
  --muted: rgba(23, 22, 18, 0.58);
  --gold: #b89456;
  --gold-soft: #d7bf86;
  --shadow: 0 22px 60px rgba(71, 56, 27, 0.08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(215, 191, 134, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), transparent 20%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 40%, var(--bg-alt) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  backdrop-filter: blur(12px);
}

.topbar a {
  color: var(--gold);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  max-width: calc(var(--max) + 48px);
  margin: 1rem auto 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  box-shadow: 0 10px 24px rgba(184, 148, 86, 0.18);
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
}

.nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.7rem 0.92rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font: inherit;
  cursor: pointer;
  color: var(--text-soft);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-link:hover,
.nav-link.active,
.nav-more.active > .nav-more-trigger {
  background: rgba(184, 148, 86, 0.1);
  color: var(--text);
  transform: translateY(-1px);
}

.nav-contact {
  background: linear-gradient(145deg, rgba(184, 148, 86, 0.14), rgba(215, 191, 134, 0.1));
  color: var(--text);
}

.nav-more {
  position: relative;
}

.nav-more-trigger span {
  font-size: 0.72rem;
  transition: transform 180ms ease;
}

.nav-more.open .nav-more-trigger span,
.nav-more:hover .nav-more-trigger span,
.nav-more:focus-within .nav-more-trigger span {
  transform: rotate(180deg);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 15rem;
  padding: 0.65rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 42px rgba(71, 56, 27, 0.12);
  display: grid;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 5;
}

.nav-more.open .nav-panel,
.nav-more:hover .nav-panel,
.nav-more:focus-within .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-panel-label {
  display: block;
  padding: 0.35rem 0.5rem 0.45rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 800;
}

.nav-panel a {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  color: var(--text-soft);
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.nav-panel a:hover,
.nav-panel a.active {
  background: rgba(184, 148, 86, 0.1);
  color: var(--text);
}

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

.header-actions .button.active {
  border-color: rgba(184, 148, 86, 0.35);
  box-shadow: 0 12px 26px rgba(184, 148, 86, 0.12);
}

.button-app {
  color: var(--text);
  border-color: rgba(184, 148, 86, 0.35);
  background: rgba(255, 255, 255, 0.9);
}

.button-app.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.button-app.is-disabled:hover {
  transform: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(145deg, var(--gold), var(--gold-soft));
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 999px;
}

.app {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem 1.2rem 4rem;
}

.page {
  display: grid;
  gap: 1.1rem;
  animation: fade-up 420ms ease both;
}

.hero-layout,
.hero-card,
.panel,
.card,
.stat-card,
.quote-card,
.timeline-card,
.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.5rem;
  min-height: 70vh;
}

.hero-layout-home {
  min-height: 76vh;
}

.hero-home {
  gap: 1.2rem;
}

.hero-card {
  padding: 1.5rem;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 12ch;
}

h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
}

.lead,
.panel p,
.card p,
.quote-card p,
.timeline-card h3,
.section-heading p,
.contact-lines span {
  color: var(--text-soft);
  line-height: 1.75;
}

.actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-pill {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(184, 148, 86, 0.08);
  border: 1px solid rgba(184, 148, 86, 0.12);
  color: var(--text);
}

.hero-visual {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.hero-visual img {
  width: min(100%, 520px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.5rem;
}

.hero-visual-premium {
  align-self: stretch;
  justify-content: center;
}

.hero-visual-image {
  width: 100%;
  max-width: none;
  min-height: 100%;
}

.hero-visual-caption {
  width: min(100%, 520px);
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(71, 56, 27, 0.08);
}

.hero-visual-caption strong {
  display: block;
  margin-top: 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.feature-image {
  width: 100%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.45rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-visual-stack {
  align-content: start;
}

.hero-image-main {
  width: 100%;
}

.hero-visual-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0.8rem;
  align-items: stretch;
}

.hero-image-secondary {
  width: 100%;
}

.caption-card {
  width: 100%;
  padding: 1rem 1.1rem;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: var(--text-soft);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-metrics > div {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.hero-metrics span {
  color: var(--text-soft);
}

.section {
  display: grid;
  gap: 1rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.section-heading p {
  max-width: 36rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.panel,
.quote-card,
.timeline-card,
.stat-card,
.faq-item {
  padding: 1.2rem;
}

.card {
  display: grid;
  gap: 0.8rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--gold);
  background: rgba(184, 148, 86, 0.1);
}

.card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel img {
  width: 100%;
  border-radius: 18px;
}

.quote-card {
  display: grid;
  gap: 1rem;
}

.experience-switcher {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.experience-tabs {
  display: grid;
  gap: 0.65rem;
}

.experience-tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  text-align: left;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.experience-tab.active {
  background: linear-gradient(145deg, rgba(184, 148, 86, 0.14), rgba(215, 191, 134, 0.16));
  color: var(--text);
  border-color: rgba(184, 148, 86, 0.2);
  transform: translateX(2px);
}

.experience-panel {
  display: grid;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 241, 231, 0.92));
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.experience-view {
  display: none;
}

.experience-view.active {
  display: grid;
  gap: 0.6rem;
}

.experience-view h3 {
  font-size: 2rem;
}

.quote-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  line-height: 0.6;
  color: rgba(184, 148, 86, 0.5);
}

.quote-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 241, 230, 0.9));
  border: 1px solid rgba(184, 148, 86, 0.12);
  box-shadow: var(--shadow);
}

.site-footer {
  max-width: calc(var(--max) + 48px);
  margin: 0 auto 2rem;
  padding: 1.4rem 1.2rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  color: var(--text-soft);
}

.footer-brand,
.footer-links,
.footer-contact {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer-brand {
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
}

.footer-brand .brand-mark {
  width: 3rem;
  height: 3rem;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
}

.timeline-card {
  min-height: 8rem;
  display: grid;
  gap: 0.9rem;
}

.step-badge {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 148, 86, 0.12);
  color: var(--gold);
  font-weight: 800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stats-grid-compact {
  margin-top: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.2rem;
}

.check-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.check-list li,
.contact-lines div {
  position: relative;
  padding-left: 1.25rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--gold-soft));
}

.faq-stack {
  display: grid;
  gap: 0.75rem;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
}

.faq-question span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.faq-question svg {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 180ms ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-answer p {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-lines {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.2rem;
}

.map-panel {
  min-height: 22rem;
  padding: 0;
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
}

.form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field span {
  font-weight: 700;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  outline: none;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(23, 22, 18, 0.42);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    border-radius: 28px;
  }

  .brand {
    grid-area: brand;
  }

  .site-nav {
    grid-area: nav;
    justify-content: flex-start;
  }

  .header-actions {
    grid-area: actions;
  }

  .hero-layout,
  .split,
  .contact-grid,
  .footer-cta,
  .experience-switcher,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    text-align: center;
  }

  .site-header {
    position: relative;
    padding: 0.9rem 1rem;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-nav.open,
  .header-actions.open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    margin-top: 0.4rem;
    align-items: stretch;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0.4rem;
  }

  .nav-more {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .nav-panel {
    position: static;
    min-width: 0;
    margin-top: 0.5rem;
    padding: 0.45rem;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.72);
  }

  .nav-more.open .nav-panel {
    opacity: 1;
    visibility: visible;
  }

  .hero-layout {
    min-height: auto;
    padding: 1.1rem;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .grid-2,
  .grid-3,
  .form-grid,
  .stats-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    padding: 1.2rem;
  }
}

@media (max-width: 560px) {
  .app {
    padding-inline: 0.85rem;
  }

  .hero-layout,
  .panel,
  .card,
  .quote-card,
  .timeline-card,
  .faq-item,
  .stat-card {
    border-radius: 20px;
  }

  .hero-visual img {
    padding: 0.35rem;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .footer-cta,
  .actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Immersive interaction layer */
:root {
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
}

::selection {
  color: #17130d;
  background: #e4ca83;
}

.site-header {
  transition: top 400ms var(--ease-luxury), max-width 500ms var(--ease-luxury),
    background 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.site-header.scrolled {
  top: 0.55rem;
  max-width: min(calc(100% - 1.2rem), 1240px);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(250, 247, 240, 0.93);
  box-shadow: 0 20px 65px rgba(31, 23, 10, 0.14);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 18% -1px;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(184, 140, 63, 0.75), transparent);
  transition: opacity 300ms ease;
}

.site-header.scrolled::after {
  opacity: 1;
}

.brand-mark {
  transition: transform 500ms var(--ease-luxury), box-shadow 500ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(-4deg) scale(1.08);
  box-shadow: 0 12px 30px rgba(184, 140, 63, 0.18);
}

.nav-panel {
  overflow: hidden;
  transform-origin: top center;
  transition: opacity 220ms ease, transform 360ms var(--ease-luxury), visibility 220ms ease;
}

.nav-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(225, 200, 134, 0.18), transparent 52%);
}

.nav-panel a {
  position: relative;
  isolation: isolate;
}

.nav-panel a::after {
  content: "↗";
  position: absolute;
  right: 0.75rem;
  opacity: 0;
  transform: translate(-7px, 4px);
  transition: opacity 220ms ease, transform 300ms var(--ease-luxury);
}

.nav-panel a:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 320ms var(--ease-luxury), background 240ms ease,
    border-color 240ms ease, box-shadow 320ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.5) 48%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 650ms var(--ease-luxury);
}

.button:hover::before {
  transform: translateX(130%);
}

.magnetic-action {
  translate: var(--magnet-x, 0) var(--magnet-y, 0);
}

.cinematic-hero {
  min-height: min(820px, calc(100svh - 118px));
  aspect-ratio: auto;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.cinematic-hero-image {
  object-fit: cover;
  object-position: center 36%;
  scale: 1.045;
  will-change: transform;
}

.cinematic-shade {
  background:
    linear-gradient(90deg, rgba(10, 8, 5, 0.96) 0%, rgba(10, 8, 5, 0.75) 40%, rgba(10, 8, 5, 0.08) 76%),
    linear-gradient(0deg, rgba(10, 8, 5, 0.8) 0%, transparent 48%);
}

.hero-aurora {
  position: absolute;
  z-index: -1;
  width: 44vw;
  height: 44vw;
  left: -18vw;
  bottom: -27vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 176, 92, 0.32), transparent 64%);
  filter: blur(16px);
  animation: hero-aurora 8s ease-in-out infinite alternate;
}

.cinematic-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-rise 900ms var(--ease-luxury) forwards;
}

.cinematic-content > :nth-child(1) { animation-delay: 140ms; }
.cinematic-content > :nth-child(2) { animation-delay: 230ms; }
.cinematic-content > :nth-child(3) { animation-delay: 330ms; }
.cinematic-content > :nth-child(4) { animation-delay: 430ms; }

.cinematic-content h1 {
  text-wrap: balance;
  text-shadow: 0 12px 55px rgba(0, 0, 0, 0.24);
}

.hero-proof {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(12, 10, 7, 0.28);
  backdrop-filter: blur(18px);
}

.brand-marquee {
  position: relative;
}

.brand-marquee::before,
.brand-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(14vw, 180px);
  pointer-events: none;
}

.brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #eee5d6, transparent);
}

.brand-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #eee5d6, transparent);
}

.editorial-statement h2,
.section-heading-wide h2,
.process-heading h2,
.closing-invitation h2,
.story-copy h2,
.team-feature-caption h2 {
  text-wrap: balance;
}

.eyebrow {
  overflow: hidden;
}

.eyebrow::before {
  transform-origin: left;
  animation: line-breathe 3.8s ease-in-out infinite;
}

.tilt-surface {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  isolation: isolate;
  transform: perspective(1300px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 650ms var(--ease-luxury), box-shadow 500ms ease;
  will-change: transform;
}

.service-stage {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-stage-visual img {
  object-fit: cover;
  transform: scale(1.07);
  transition: opacity 700ms ease, transform 1.1s var(--ease-luxury), filter 700ms ease;
  filter: saturate(0.78) contrast(1.03);
}

.service-stage-visual img.active {
  transform: scale(1);
  filter: saturate(0.96) contrast(1.03);
}

.service-row {
  position: relative;
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 99px;
  background: var(--champagne);
  transform: translateY(-50%);
  transition: height 340ms var(--ease-luxury);
}

.service-row.active::before {
  height: 54%;
}

.story-image-wrap img,
.standard-portrait img,
.service-editorial-image img {
  translate: var(--image-x, 0) var(--image-y, 0);
  scale: 1.045;
  transition: translate 500ms var(--ease-luxury), scale 700ms var(--ease-luxury),
    filter 500ms ease, opacity 300ms ease;
}

.story-image-wrap:hover img,
.standard-portrait:hover img,
.service-editorial-image:hover img {
  scale: 1.075;
}

.story-panel {
  position: relative;
}

.story-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(225, 200, 134, 0.05), transparent 70%);
}

.story-stats > div {
  transition: transform 400ms var(--ease-luxury);
}

.story-stats > div:hover {
  transform: translateY(-6px);
}

.process-line {
  --process-progress: 0;
}

.process-line::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: calc(var(--process-progress) * 100%);
  height: 1px;
  background: linear-gradient(90deg, #a87c35, #e2c979);
  box-shadow: 0 0 14px rgba(199, 164, 94, 0.55);
  transition: width 180ms linear;
}

.process-stop {
  opacity: 0.5;
  transition: opacity 400ms ease, color 400ms ease, translate 400ms var(--ease-luxury);
}

.process-stop.reached {
  opacity: 1;
}

.process-stop:hover {
  translate: 0 -7px;
}

.process-stop.reached i {
  box-shadow: 0 0 0 1px var(--champagne), 0 0 0 7px rgba(199, 164, 94, 0.12);
}

.team-feature {
  min-height: 680px;
}

.team-feature > img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  scale: 1.02;
  transition: scale 1.1s var(--ease-luxury), filter 700ms ease;
  filter: saturate(0.82);
}

.team-feature:hover > img {
  scale: 1.065;
  filter: saturate(1);
}

.closing-logo {
  animation: closing-mark 12s ease-in-out infinite alternate;
}

.closing-invitation::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(760px, 92vw);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 140, 63, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(184, 140, 63, 0.025), 0 0 0 140px rgba(184, 140, 63, 0.018);
}

.page:not(.home-page) > .hero-card {
  min-height: min(620px, 72svh);
  background-position: center;
  background-size: cover;
}

.page:not(.home-page) > .hero-card .hero-copy {
  width: min(660px, 58%);
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.7);
  box-shadow: 0 22px 70px rgba(61, 43, 14, 0.08);
  backdrop-filter: blur(18px);
}

.page:not(.home-page) .card,
.page:not(.home-page) .panel,
.family-benefit,
.standard-step {
  transition: transform 500ms var(--ease-luxury), box-shadow 500ms ease,
    border-color 300ms ease, background 300ms ease;
}

.page:not(.home-page) .card:hover,
.page:not(.home-page) .panel:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 140, 63, 0.2);
  box-shadow: 0 32px 85px rgba(54, 39, 14, 0.1);
}

.family-benefit:hover,
.standard-step:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.3);
}

.faq-item {
  overflow: hidden;
}

.faq-question svg {
  transition: transform 400ms var(--ease-luxury);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.concierge-trigger {
  transition: transform 400ms var(--ease-luxury), box-shadow 400ms ease, background 300ms ease;
}

.concierge-trigger:hover {
  transform: translateY(-5px);
  background: #211d16;
  box-shadow: 0 26px 60px rgba(21, 19, 15, 0.3);
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(46px) scale(0.985);
  transition: opacity 850ms ease, filter 900ms ease,
    transform 1s var(--ease-luxury);
}

.reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.grid > .reveal:nth-child(2),
.family-benefits > .reveal:nth-child(2),
.standard-steps > .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.grid > .reveal:nth-child(3),
.family-benefits > .reveal:nth-child(3),
.standard-steps > .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.grid > .reveal:nth-child(4),
.family-benefits > .reveal:nth-child(4),
.standard-steps > .reveal:nth-child(4) {
  transition-delay: 230ms;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-aurora {
  to {
    translate: 10vw -5vw;
    scale: 1.18;
  }
}

@keyframes line-breathe {
  0%, 100% { scale: 0.72 1; opacity: 0.55; }
  50% { scale: 1 1; opacity: 1; }
}

@keyframes closing-mark {
  to {
    transform: rotate(5deg) scale(1.08);
    opacity: 0.085;
  }
}

@media (max-width: 1080px) {
  .cinematic-hero {
    min-height: 760px;
  }

  .page:not(.home-page) > .hero-card .hero-copy {
    width: min(700px, 75%);
  }

  .team-feature {
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  .site-header.scrolled {
    max-width: calc(100% - 1rem);
  }

  .cinematic-hero {
    min-height: calc(100svh - 96px);
  }

  .cinematic-hero-image {
    object-position: 62% center;
  }

  .page:not(.home-page) > .hero-card {
    min-height: 560px;
    background-position: 62% center;
  }

  .page:not(.home-page) > .hero-card .hero-copy {
    width: 100%;
  }

  .tilt-surface {
    transform: none;
  }

  .team-feature {
    min-height: 0;
  }

  .team-feature > img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .process-line::after {
    display: none;
  }

  .process-stop {
    opacity: 1;
  }
}

@media (max-width: 560px) {
  .cinematic-content h1 {
    letter-spacing: -0.045em;
  }

  .cinematic-content p {
    font-size: 0.95rem;
  }

  .page:not(.home-page) > .hero-card {
    min-height: 500px;
    padding: 1rem;
  }

  .page:not(.home-page) > .hero-card .hero-copy {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .closing-invitation::before {
    width: 110vw;
    box-shadow: 0 0 0 42px rgba(184, 140, 63, 0.025), 0 0 0 84px rgba(184, 140, 63, 0.018);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tilt-surface,
  .magnetic-action,
  .story-image-wrap img,
  .standard-portrait img,
  .service-editorial-image img {
    transform: none !important;
    translate: none !important;
    scale: 1 !important;
  }

  .cinematic-content > * {
    opacity: 1;
    transform: none;
  }
}

/* Final image-fit guarantee: no staff or brand photography is cropped */
.cinematic-hero-image,
.service-stage-visual img,
.story-image-wrap img,
.team-feature > img,
.feature-image,
.service-editorial-image img,
.standard-portrait img,
.family-story > img,
.photo-grid img {
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  translate: none !important;
  scale: 1 !important;
}

.cinematic-hero,
.service-stage-visual,
.story-image-wrap,
.team-feature,
.service-editorial-image,
.standard-portrait,
.family-story,
.feature-image {
  background-color: #15130f;
}

.story-image-wrap:hover img,
.standard-portrait:hover img,
.service-editorial-image:hover img,
.team-feature:hover > img {
  transform: none !important;
  translate: none !important;
  scale: 1 !important;
}

.page:not(.home-page) > .hero-card {
  background:
    linear-gradient(90deg, rgba(255, 252, 247, 0.98) 0%, rgba(255, 252, 247, 0.9) 42%, rgba(255, 252, 247, 0.34) 75%),
    url("./brand-logo-light.jpg") center / contain no-repeat,
    #f7efe5;
}

/* Preserve complete photographic compositions */
.cinematic-hero-image,
.service-stage-visual img,
.story-image-wrap img,
.team-feature > img,
.feature-image,
.service-editorial-image img,
.standard-portrait img,
.family-story > img,
.photo-grid img {
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  translate: none !important;
  scale: 1 !important;
}

.cinematic-hero,
.service-stage-visual,
.story-image-wrap,
.team-feature,
.service-editorial-image,
.standard-portrait,
.family-story,
.feature-image {
  background-color: #15130f;
}

.cinematic-hero-image,
.service-stage-visual img {
  background: #15130f;
}

.story-image-wrap:hover img,
.standard-portrait:hover img,
.service-editorial-image:hover img,
.team-feature:hover > img {
  transform: none !important;
  translate: none !important;
  scale: 1 !important;
}

.page:not(.home-page) > .hero-card {
  background:
    linear-gradient(90deg, rgba(255, 252, 247, 0.98) 0%, rgba(255, 252, 247, 0.9) 42%, rgba(255, 252, 247, 0.34) 75%),
    url("./brand-logo-light.jpg") center / contain no-repeat,
    #f7efe5;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Cinematic 2026 experience */
:root {
  --ink: #17140f;
  --cream: #f4efe5;
  --cream-deep: #e8decd;
  --champagne: #c7a45e;
  --night: #15130f;
  --max: 1360px;
}

body {
  overflow-x: hidden;
  background: var(--cream);
}

body::before {
  display: none;
}

.ambient-light {
  display: none;
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #b88c3f, #ead596);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.topbar {
  min-height: 38px;
  padding: 0.58rem clamp(1rem, 4vw, 4rem);
  color: rgba(255, 255, 255, 0.68);
  background: var(--night);
  border: 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: #e1c886;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: #9bbb83;
  box-shadow: 0 0 0 4px rgba(155, 187, 131, 0.12);
}

.site-header {
  top: 1rem;
  max-width: min(calc(100% - 2rem), 1300px);
  margin-top: 1rem;
  padding: 0.62rem 0.72rem 0.62rem 0.9rem;
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(250, 247, 240, 0.84);
  box-shadow: 0 14px 45px rgba(38, 29, 13, 0.1);
  backdrop-filter: blur(24px) saturate(150%);
}

.brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  box-shadow: none;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
}

.brand-copy span {
  font-size: 0.57rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-link {
  padding: 0.64rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.header-actions .button {
  padding: 0.72rem 1rem;
  font-size: 0.73rem;
}

.header-actions .button-secondary {
  display: none;
}

.app {
  max-width: var(--max);
  padding: 1rem clamp(0.8rem, 2vw, 1.5rem) 5rem;
}

.page {
  gap: clamp(1.5rem, 4vw, 4rem);
}

.home-page {
  gap: 0;
}

.cinematic-hero {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 6vw, 5.8rem);
  border-radius: 32px;
  color: #fff;
  background: #17130d;
  box-shadow: 0 38px 90px rgba(50, 35, 12, 0.16);
}

.cinematic-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}

.cinematic-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 8, 5, 0.98) 0%, rgba(10, 8, 5, 0.82) 38%, rgba(10, 8, 5, 0.06) 72%),
    linear-gradient(0deg, rgba(10, 8, 5, 0.72) 0%, transparent 42%);
}

.cinematic-hero::after {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 23px;
  pointer-events: none;
}

.hero-monogram {
  position: absolute;
  top: -0.16em;
  right: 0.04em;
  z-index: -1;
  color: rgba(255, 255, 255, 0.055);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20rem, 50vw, 48rem);
  line-height: 0.9;
}

.cinematic-content {
  width: min(780px, 72%);
  display: grid;
  gap: 1.3rem;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 34px;
  height: 1px;
  background: var(--gold-soft);
}

.cinematic-content h1 {
  max-width: none;
  font-size: clamp(3.8rem, 7.7vw, 7.2rem);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  color: var(--champagne);
  font-weight: 500;
}

.cinematic-content p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.75;
}

.button {
  min-height: 48px;
  padding: 0.88rem 1.2rem;
  border-radius: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.button-primary {
  color: #19150e;
  background: linear-gradient(135deg, #e0c77f, #b88c3f);
  box-shadow: 0 12px 30px rgba(195, 154, 77, 0.2);
}

.button-primary:hover {
  box-shadow: 0 16px 38px rgba(195, 154, 77, 0.32);
}

.button-arrow {
  gap: 1.1rem;
}

.button-arrow svg {
  width: 1rem;
  transition: transform 220ms ease;
}

.button-arrow:hover svg {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link.dark {
  color: var(--ink);
  border-bottom-color: rgba(23, 20, 15, 0.3);
}

.hero-proof {
  position: absolute;
  right: clamp(2.5rem, 5vw, 5rem);
  bottom: clamp(2.6rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: #211c13;
  background: #dbc484;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

.hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  line-height: 1.5;
}

.hero-proof strong {
  color: #fff;
}

.scroll-cue {
  position: absolute;
  right: 1.8rem;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.scroll-cue i {
  display: block;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--gold-soft);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

.brand-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 1.15rem 0;
  color: rgba(23, 20, 15, 0.55);
  background: #eee5d6;
  border-block: 1px solid rgba(23, 20, 15, 0.06);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-right: 2.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-track i {
  color: var(--champagne);
  font-style: normal;
  font-size: 0.6rem;
}

.section-space {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.editorial-intro {
  display: grid;
  grid-template-columns: 0.65fr 2.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.section-number {
  padding-top: 0.65rem;
  color: rgba(23, 20, 15, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-statement {
  display: grid;
  gap: 1rem;
}

.editorial-statement h2,
.section-heading-wide h2,
.process-heading h2,
.closing-invitation h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
}

.editorial-aside {
  padding-top: 2.2rem;
}

.editorial-aside p,
.section-heading-wide > p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.85;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-heading-wide > div {
  display: grid;
  gap: 1rem;
}

.service-stage {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  overflow: hidden;
  border-radius: 28px;
  background: #1b1813;
  box-shadow: 0 34px 80px rgba(37, 27, 11, 0.14);
}

.service-stage-visual {
  position: relative;
  overflow: hidden;
}

.service-stage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(27, 24, 19, 0.24));
  pointer-events: none;
}

.service-stage-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  opacity: 0;
  transform: none;
  transition: opacity 600ms ease;
}

.service-stage-visual img.active {
  opacity: 1;
}

.service-stage-label {
  position: absolute;
  z-index: 2;
  left: 1.6rem;
  bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 3vw, 3rem);
}

.service-row {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.65rem 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  cursor: pointer;
  transition: color 260ms ease, padding 260ms ease;
}

.service-row:hover,
.service-row.active {
  padding-left: 1rem;
  color: #fff;
}

.service-index {
  color: var(--champagne);
  font-size: 0.68rem;
}

.service-row strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
}

.service-row small {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  line-height: 1.6;
  opacity: 0;
  transition: max-height 260ms ease, opacity 260ms ease, margin 260ms ease;
}

.service-row.active small {
  max-height: 4rem;
  margin-top: 0.35rem;
  opacity: 1;
}

.service-row i {
  font-style: normal;
}

.story-panel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  color: #fff;
  background: var(--night);
}

.story-image-wrap {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  align-self: center;
  background: #0d0b08;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform: none !important;
}

.image-note {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  padding: 0.7rem 0.9rem;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(20, 17, 12, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.65rem;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 7vw, 7rem);
}

.eyebrow.light {
  color: #e1c886;
}

.story-copy h2 {
  margin: 1rem 0 1.2rem;
  font-size: clamp(3rem, 5vw, 5rem);
}

.story-copy > p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  padding-block: 1.6rem;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.story-stats strong {
  display: block;
  color: #e1c886;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.story-stats span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
}

.button-ghost {
  width: fit-content;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.process-cinematic {
  display: grid;
  grid-template-columns: 0.65fr 3.1fr;
  gap: 2rem;
}

.process-heading {
  display: grid;
  gap: 1rem;
}

.process-line {
  grid-column: 2;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 1.5rem;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(23, 20, 15, 0.15);
}

.process-stop {
  position: relative;
  display: grid;
  gap: 0.85rem;
  color: var(--text-soft);
}

.process-stop span {
  font-size: 0.63rem;
}

.process-stop i {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 1px var(--champagne);
  transition: transform 220ms ease;
}

.process-stop:hover i {
  transform: scale(1.7);
}

.process-stop strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 600;
}

.team-feature {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background: var(--night);
}

.team-feature > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  align-self: center;
  background: #0d0b08;
}

.team-feature-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.team-feature-caption h2 {
  margin: 1rem 0;
  font-size: clamp(3rem, 5vw, 5rem);
}

.team-feature-caption p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

.closing-invitation {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  text-align: center;
}

.closing-logo {
  position: absolute;
  z-index: -1;
  width: min(560px, 80vw);
  opacity: 0.055;
  mix-blend-mode: multiply;
}

.closing-invitation h2 {
  margin: 1rem 0 1.2rem;
}

.closing-invitation > p {
  margin: 0 0 1.8rem;
  color: var(--text-soft);
}

.site-footer {
  max-width: none;
  margin: 0;
  padding: 4rem max(1.2rem, calc((100vw - 1280px) / 2));
  color: rgba(255, 255, 255, 0.58);
  background: var(--night);
}

.site-footer strong {
  color: #fff;
}

.site-footer .brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer a:hover {
  color: #e1c886;
}

/* Premium treatment for secondary routes */
.page:not(.home-page) > .hero-card {
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 6vw, 5rem);
  color: var(--text);
  border: 0;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 252, 247, 0.98) 0%, rgba(255, 252, 247, 0.9) 43%, rgba(255, 252, 247, 0.18) 76%),
    url("./brand-logo-light.jpg") center / cover;
}

.page:not(.home-page) > .hero-card .lead {
  max-width: 650px;
  color: var(--text-soft);
}

.page:not(.home-page) > .hero-card h1 {
  max-width: 11ch;
}

.page:not(.home-page) .panel,
.page:not(.home-page) .card,
.page:not(.home-page) .timeline-card,
.page:not(.home-page) .stat-card,
.page:not(.home-page) .faq-item {
  border-color: rgba(23, 20, 15, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 60px rgba(54, 39, 14, 0.06);
  backdrop-filter: blur(12px);
}

.page:not(.home-page) .panel {
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.feature-image {
  min-height: 0;
  aspect-ratio: 3 / 2;
  padding: 0;
  border-radius: 16px;
  object-fit: contain;
  background: #17140f;
}

.portrait-image {
  aspect-ratio: 3 / 2;
}

.photo-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid img:first-child {
  grid-row: 1 / -1;
}

.services-editorial {
  display: grid;
  gap: clamp(4rem, 8vw, 8rem);
  padding-block: clamp(3rem, 7vw, 7rem);
}

.service-editorial-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.service-editorial-card:nth-child(even) .service-editorial-image {
  order: 2;
}

.service-editorial-image {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 26px;
  background: #d9cbb7;
}

.service-editorial-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transition: opacity 300ms ease;
}

.service-editorial-card:hover .service-editorial-image img {
  opacity: 0.96;
}

.service-editorial-image > span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(15, 12, 8, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: 0.7rem;
}

.service-editorial-copy {
  display: grid;
  gap: 1rem;
  padding: clamp(0rem, 2vw, 2rem);
}

.service-editorial-copy h2 {
  font-size: clamp(3.5rem, 7vw, 6.8rem);
}

.service-editorial-copy p {
  max-width: 510px;
  color: var(--text-soft);
  line-height: 1.9;
}

.closing-invitation-compact {
  min-height: 520px;
  border-top: 1px solid rgba(23, 20, 15, 0.1);
}

.standard-manifesto {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.standard-portrait {
  position: sticky;
  top: 120px;
  overflow: hidden;
  border-radius: 26px;
  background: #17140f;
}

.standard-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.standard-portrait > div {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-around;
  padding: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(0deg, rgba(12, 9, 5, 0.9), transparent);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.standard-steps {
  display: grid;
}

.standard-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(23, 20, 15, 0.12);
}

.standard-step > span {
  color: var(--champagne);
  font-size: 0.68rem;
}

.standard-step h3 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.standard-step p {
  max-width: 560px;
  margin: 0.7rem 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.standard-results {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 3rem;
  align-items: end;
  padding: clamp(2rem, 6vw, 5rem);
  color: #fff;
  border-radius: 28px;
  background: var(--night);
}

.standard-results-heading h2 {
  margin-top: 0.8rem;
}

.standard-results .stats-grid article {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.standard-results .stats-grid strong {
  display: block;
  color: #e1c886;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.standard-results .stats-grid span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
}

.family-story {
  position: relative;
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  padding: 0;
  border-radius: 28px;
  color: #fff;
  background: var(--night);
}

.family-story > img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #0d0b08;
}

.family-story::after {
  display: none;
}

.family-story-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.family-story-copy h2 {
  margin: 1rem 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.family-story-copy p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.family-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.family-benefit {
  padding: 1.6rem;
  border-left: 1px solid rgba(23, 20, 15, 0.12);
}

.family-benefit > span {
  color: var(--champagne);
  font-size: 0.68rem;
}

.family-benefit h3 {
  margin: 2.5rem 0 0.8rem;
  font-size: 2rem;
}

.family-benefit p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.75;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.faq-intro h2 {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.enquiry-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border-radius: 28px;
  background: #fffaf1;
  box-shadow: 0 34px 90px rgba(52, 37, 12, 0.1);
}

.enquiry-aside {
  padding: clamp(2rem, 5vw, 4.5rem);
  color: #fff;
  background:
    linear-gradient(rgba(15, 12, 8, 0.78), rgba(15, 12, 8, 0.92)),
    url("./service-housekeeper-new.jpg") center / contain no-repeat,
    #17140f;
}

.enquiry-aside h2 {
  margin: 1rem 0 2rem;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.enquiry-steps {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.enquiry-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.8rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.enquiry-steps li > span {
  color: #e1c886;
  font-size: 0.65rem;
}

.enquiry-steps strong {
  display: block;
  margin-bottom: 0.3rem;
}

.enquiry-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.enquiry-contact {
  display: grid;
  gap: 0.5rem;
  margin-top: 2rem;
  color: #e1c886;
  font-size: 0.76rem;
}

.enquiry-form-panel {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.enquiry-form-panel > h2 {
  margin: 0.45rem 0 1.5rem;
}

.form-kicker {
  color: var(--champagne);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.enquiry-form-panel .field input,
.enquiry-form-panel .field select,
.enquiry-form-panel .field textarea {
  border-radius: 8px;
  background: #fff;
}

.concierge-trigger {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 50px;
  padding: 0.7rem 1rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(21, 19, 15, 0.92);
  box-shadow: 0 18px 45px rgba(21, 19, 15, 0.22);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.concierge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8bd75;
  box-shadow: 0 0 0 0 rgba(216, 189, 117, 0.5);
  animation: concierge-pulse 2.2s infinite;
}

.concierge-label {
  font-size: 0.72rem;
  font-weight: 700;
}

.concierge-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  background: rgba(12, 10, 7, 0.36);
  backdrop-filter: blur(4px);
  transition: opacity 300ms ease, visibility 300ms ease;
}

.concierge-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 61;
  width: min(480px, 100%);
  overflow-y: auto;
  padding: clamp(2rem, 5vw, 4rem);
  background: #f7f1e6;
  box-shadow: -30px 0 80px rgba(20, 15, 7, 0.18);
  transform: translateX(102%);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.concierge-open {
  overflow: hidden;
}

body.concierge-open .concierge-backdrop {
  opacity: 1;
  visibility: visible;
}

body.concierge-open .concierge-drawer {
  transform: translateX(0);
}

.concierge-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 20, 15, 0.12);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
}

.concierge-drawer h2 {
  margin: 1rem 0;
  font-size: clamp(2.8rem, 6vw, 4.3rem);
}

.concierge-drawer > p,
.concierge-drawer > small {
  color: var(--text-soft);
  line-height: 1.7;
}

.concierge-form {
  display: grid;
  gap: 1.2rem;
  margin: 2rem 0 1rem;
}

.concierge-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.concierge-form legend {
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid span {
  display: block;
  padding: 0.85rem;
  border: 1px solid rgba(23, 20, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.choice-grid input:checked + span {
  border-color: #b88c3f;
  background: rgba(199, 164, 94, 0.14);
}

@keyframes concierge-pulse {
  70% { box-shadow: 0 0 0 10px rgba(216, 189, 117, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 189, 117, 0); }
}

.reveal {
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes scroll-pulse {
  0% { transform: translateX(-110%); }
  50%, 100% { transform: translateX(220%); }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .cinematic-content {
    width: 82%;
  }

  .hero-proof {
    display: none;
  }

  .editorial-intro {
    grid-template-columns: 0.45fr 1.55fr;
  }

  .editorial-aside {
    grid-column: 2;
  }

  .story-panel {
    grid-template-columns: 1fr;
  }

  .story-image-wrap {
    min-height: 0;
  }

  .service-editorial-image {
    min-height: 0;
  }

  .standard-results {
    grid-template-columns: 1fr;
  }

  .family-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .topbar p {
    display: none;
  }

  .topbar {
    justify-content: center;
  }

  .site-header {
    position: sticky;
    grid-template-areas: "brand toggle" "nav nav" "actions actions";
    border-radius: 20px;
  }

  .brand-copy span {
    display: none;
  }

  .nav-toggle {
    grid-area: toggle;
  }

  .nav-panel {
    display: none;
  }

  .nav-more.open .nav-panel {
    display: grid;
  }

  .header-actions .button-secondary {
    display: inline-flex;
  }

  .cinematic-hero {
    min-height: 720px;
    aspect-ratio: auto;
    padding: 2rem 1.6rem 3rem;
    border-radius: 24px;
  }

  .cinematic-hero-image {
    object-position: 62% center;
    object-position: center top;
  }

  .cinematic-shade {
    background:
      linear-gradient(0deg, rgba(8, 6, 4, 0.92) 0%, rgba(8, 6, 4, 0.45) 68%, rgba(8, 6, 4, 0.08)),
      linear-gradient(90deg, rgba(8, 6, 4, 0.55), transparent);
  }

  .cinematic-content {
    width: 100%;
  }

  .cinematic-content h1 {
    font-size: clamp(3.5rem, 15vw, 5.4rem);
  }

  .scroll-cue {
    display: none;
  }

  .editorial-intro,
  .section-heading-wide,
  .process-cinematic {
    grid-template-columns: 1fr;
  }

  .section-number {
    padding: 0;
  }

  .editorial-aside,
  .process-line {
    grid-column: 1;
  }

  .service-stage {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .service-stage-visual {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .service-list {
    padding: 1rem 1.4rem 2rem;
  }

  .story-copy {
    padding: 3rem 1.4rem;
  }

  .process-line {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }

  .process-line::before {
    display: none;
  }

  .testimonial-canvas {
    min-height: 560px;
  }

  .service-editorial-card,
  .standard-manifesto,
  .faq-section,
  .enquiry-layout,
  .team-feature,
  .family-story {
    grid-template-columns: 1fr;
  }

  .service-editorial-card:nth-child(even) .service-editorial-image {
    order: 0;
  }

  .standard-portrait {
    position: relative;
    top: auto;
  }

  .family-story {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .app {
    padding-inline: 0.6rem;
  }

  .site-header {
    max-width: calc(100% - 1rem);
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .cinematic-hero {
    min-height: calc(100svh - 90px);
    border-radius: 20px;
  }

  .cinematic-hero::after {
    inset: 0.6rem;
    border-radius: 15px;
  }

  .hero-kicker {
    font-size: 0.59rem;
  }

  .cinematic-content .actions {
    align-items: flex-start;
  }

  .cinematic-content .text-link {
    margin-top: 0.5rem;
  }

  .section-space {
    padding-block: 4.5rem;
  }

  .editorial-statement h2,
  .section-heading-wide h2,
  .process-heading h2,
  .closing-invitation h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .service-stage-visual {
    min-height: 0;
  }

  .service-row {
    padding-block: 1.2rem;
  }

  .story-image-wrap {
    min-height: 0;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .story-stats > div {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-canvas {
    min-height: 500px;
    border-radius: 20px;
  }

  .closing-invitation {
    min-height: 520px;
  }

  .photo-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 360px);
  }

  .photo-grid img:first-child {
    grid-row: auto;
  }

  .service-editorial-image {
    min-height: 0;
  }

  .standard-results {
    padding: 2rem 1.2rem;
  }

  .standard-results .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .family-benefits {
    grid-template-columns: 1fr;
  }

  .family-benefit {
    border-left: 0;
    border-top: 1px solid rgba(23, 20, 15, 0.12);
  }

  .concierge-trigger {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .concierge-label {
    display: none;
  }

  .concierge-drawer {
    padding: 4.5rem 1.2rem 2rem;
  }
}

/* Final immersive overrides — intentionally last in the cascade */
.site-header {
  transition: top 400ms var(--ease-luxury), max-width 500ms var(--ease-luxury),
    background 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.site-header.scrolled {
  top: 0.55rem;
  max-width: min(calc(100% - 1.2rem), 1240px);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(250, 247, 240, 0.93);
  box-shadow: 0 20px 65px rgba(31, 23, 10, 0.14);
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 320ms var(--ease-luxury), background 240ms ease,
    border-color 240ms ease, box-shadow 320ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.5) 48%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 650ms var(--ease-luxury);
}

.button:hover::before {
  transform: translateX(130%);
}

.magnetic-action {
  translate: var(--magnet-x, 0) var(--magnet-y, 0);
}

.cinematic-hero {
  min-height: min(820px, calc(100svh - 118px));
  aspect-ratio: auto;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.cinematic-hero-image {
  object-fit: cover;
  object-position: center 36%;
  scale: 1.045;
  will-change: transform;
}

.cinematic-shade {
  background:
    linear-gradient(90deg, rgba(10, 8, 5, 0.96) 0%, rgba(10, 8, 5, 0.75) 40%, rgba(10, 8, 5, 0.08) 76%),
    linear-gradient(0deg, rgba(10, 8, 5, 0.8) 0%, transparent 48%);
}

.hero-aurora {
  position: absolute;
  z-index: -1;
  width: 44vw;
  height: 44vw;
  left: -18vw;
  bottom: -27vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 176, 92, 0.32), transparent 64%);
  filter: blur(16px);
  animation: hero-aurora 8s ease-in-out infinite alternate;
}

.cinematic-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-rise 900ms var(--ease-luxury) forwards;
}

.cinematic-content > :nth-child(1) { animation-delay: 140ms; }
.cinematic-content > :nth-child(2) { animation-delay: 230ms; }
.cinematic-content > :nth-child(3) { animation-delay: 330ms; }
.cinematic-content > :nth-child(4) { animation-delay: 430ms; }

.tilt-surface {
  transform: perspective(1300px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 650ms var(--ease-luxury), box-shadow 500ms ease;
}

.service-stage-visual img {
  object-fit: cover;
  transform: scale(1.07);
  transition: opacity 700ms ease, transform 1.1s var(--ease-luxury), filter 700ms ease;
  filter: saturate(0.78) contrast(1.03);
}

.service-stage-visual img.active {
  transform: scale(1);
  filter: saturate(0.96) contrast(1.03);
}

.story-image-wrap img,
.standard-portrait img,
.service-editorial-image img {
  translate: var(--image-x, 0) var(--image-y, 0);
  scale: 1.045;
}

.process-line::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: calc(var(--process-progress, 0) * 100%);
  height: 1px;
  background: linear-gradient(90deg, #a87c35, #e2c979);
  box-shadow: 0 0 14px rgba(199, 164, 94, 0.55);
  transition: width 180ms linear;
}

.process-stop {
  opacity: 0.5;
  transition: opacity 400ms ease, color 400ms ease, translate 400ms var(--ease-luxury);
}

.process-stop.reached {
  opacity: 1;
}

.team-feature {
  min-height: 680px;
}

.team-feature > img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  scale: 1.02;
  transition: scale 1.1s var(--ease-luxury), filter 700ms ease;
  filter: saturate(0.82);
}

.team-feature:hover > img {
  scale: 1.065;
  filter: saturate(1);
}

.page:not(.home-page) > .hero-card {
  min-height: min(620px, 72svh);
}

.page:not(.home-page) > .hero-card .hero-copy {
  width: min(660px, 58%);
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.7);
  box-shadow: 0 22px 70px rgba(61, 43, 14, 0.08);
  backdrop-filter: blur(18px);
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(46px) scale(0.985);
  transition: opacity 850ms ease, filter 900ms ease,
    transform 1s var(--ease-luxury);
}

.reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@media (max-width: 820px) {
  .cinematic-hero {
    min-height: calc(100svh - 96px);
  }

  .cinematic-hero-image {
    object-position: 62% center;
  }

  .tilt-surface {
    transform: none;
  }

  .page:not(.home-page) > .hero-card .hero-copy {
    width: 100%;
  }

  .team-feature {
    min-height: 0;
  }

  .team-feature > img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .process-line::after {
    display: none;
  }

  .process-stop {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tilt-surface,
  .magnetic-action,
  .story-image-wrap img,
  .standard-portrait img,
  .service-editorial-image img {
    transform: none !important;
    translate: none !important;
    scale: 1 !important;
  }

  .cinematic-content > *,
  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none !important;
  }
}
