/* ===== WCAG Accessibility Utilities ===== */

/* Skip navigation link (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: #100C08;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 0.5rem 0.5rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Screen-reader only utility (WCAG 1.3.1) */
.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;
}

/* Global focus-visible styles (WCAG 2.4.7) */
:focus-visible {
  outline: 2px solid #C1A68D;
  outline-offset: 3px;
  border-radius: 2px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #100C08;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== Font Imports ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ===== CSS Variables ===== */
:root {
  --champagne: #C1A68D;
  --champagne-light: #E5DCCF;
  --ink: #100C08;
  --ink-light: #2A1F18;
  --bg-cream: #FCFAF6;
  --bg-off: #F4EFEB;
  --matte-dark: #16120E;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Luxury Image Filters ===== */
img, video {
  filter: contrast(1.05) saturate(0.85);
  transition: filter 0.6s var(--ease);
}

.hero-cinematic__video {
  filter: contrast(1.15) saturate(0.6) brightness(0.45);
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

/* ===== Premium Section Utilities ===== */
.section-cream { background: var(--bg-cream); }
.section-off   { background: var(--bg-off); }

.section-pad {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .section-pad { padding-top: 8rem; padding-bottom: 8rem; }
}

.section-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 768px) {
  .section-inner { padding-left: 5rem; padding-right: 5rem; }
}

/* Overline label above headings */
.overline {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

/* Thin gold bar above section heading */
.gold-rule {
  display: block;
  width: 2.5rem;
  height: 1.5px;
  background: var(--gold-dark);
  margin-bottom: 1.25rem;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ===== Premium Button Base ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-cream);
  background: var(--ink);
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--ink);
  transition: all 0.6s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  background: transparent;
  color: var(--ink);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 4px;
  transition: all 0.4s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--ink);
}

/* ===== Premium Card Base ===== */
.premium-card {
  background: transparent;
  border: 1px solid var(--champagne-light);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: border-color 0.6s var(--ease), background 0.6s var(--ease);
}
.premium-card:hover {
  border-color: var(--champagne);
  background: var(--bg-off);
}

/* ===== Popup Modal — Premium Airy Redesign ===== */

@keyframes pm-enter {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pm-shimmer {
  0%   { transform: translateX(-120%) skewX(-14deg); }
  100% { transform: translateX(280%) skewX(-14deg); }
}

@keyframes pm-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Root ── */
.popup-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.popup-modal.hidden { display: none !important; }

.popup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 4, 0.58);
  backdrop-filter: blur(28px) saturate(0.7);
  animation: pm-backdrop-in 0.35s ease both;
}

/* ── Dialog ── */
.popup-modal__dialog {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(860px, calc(100vw - 3rem));
  max-height: min(calc(100vh - 3rem), 620px);
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  background: #FDFBF7;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(180, 150, 100, 0.18),
    0 40px 80px -12px rgba(12, 8, 4, 0.28),
    0 8px 24px rgba(12, 8, 4, 0.08);
  animation: pm-enter 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── Close ── */
.popup-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 30;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(28, 15, 7, 0.12);
  border-radius: 9999px;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(8px);
  color: #3D2510;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.popup-modal__close:hover {
  background: rgba(253, 251, 247, 1);
  border-color: rgba(28, 15, 7, 0.3);
  transform: scale(1.06);
}

/* ── Visual Panel ── */
.popup-modal__visual {
  position: relative;
  background: #1C0F07;
  color: #FDFBF7;
  overflow: hidden;
}

.popup-modal__image-wrap {
  position: absolute;
  inset: 0;
}

.popup-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.85);
}

.popup-modal__image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 8, 4, 0.92) 0%,
    rgba(14, 8, 4, 0.5) 45%,
    rgba(14, 8, 4, 0.15) 100%
  );
}

.popup-modal__visual-copy {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.75rem;
  gap: 0.6rem;
}

.popup-modal__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #D4B880;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.popup-modal__eyebrow::before {
  content: '';
  width: 1.25rem;
  height: 1px;
  background: #C9A96E;
  flex-shrink: 0;
}

.popup-modal__visual-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #FDFBF7;
}

.popup-modal__visual-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #D4B880;
}

/* ── Form Panel ── */
.popup-modal__form-panel {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2.25rem 2rem;
  overflow-y: auto;
  background: #FDFBF7;
  display: flex;
  flex-direction: column;
}

.popup-modal__form-head {
  margin-bottom: 1.75rem;
}

.popup-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #1C0F07;
  margin-bottom: 0.75rem;
}

.popup-modal__title strong {
  font-weight: 600;
}

.popup-modal__intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: #5A4535;
}

.popup-modal__intro strong {
  font-weight: 600;
  color: #2C1A0E;
}

/* ── Form ── */
.popup-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.popup-modal__field {
  position: relative;
}

.popup-modal__label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2C1A0E;
  margin-bottom: 0.5rem;
}

.popup-modal__input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border: 1.5px solid rgba(44, 26, 14, 0.35);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  color: #1C0F07;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.popup-modal__input::placeholder {
  color: rgba(28, 15, 7, 0.3);
  font-weight: 400;
  font-style: italic;
}

.popup-modal__input:focus {
  border-color: #2C1A0E;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(44, 26, 14, 0.1);
}

/* ── Submit ── */
.popup-modal__submit {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 3.25rem;
  padding: 0 1.5rem;
  margin-top: 0.5rem;
  background: #2C1A0E;
  color: #E8D5B5;
  border: none;
  border-radius: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: background 0.3s ease, transform 0.15s ease;
}

.popup-modal__submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.14) 50%, transparent 100%);
  transform: translateX(-120%) skewX(-14deg);
  animation: pm-shimmer 4s ease-in-out 1.8s infinite;
  pointer-events: none;
}

.popup-modal__submit:hover {
  background: #3D2516;
}

.popup-modal__submit:active {
  transform: scale(0.98);
}

.popup-modal__submit svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.popup-modal__submit:hover svg {
  transform: translateX(3px);
}

/* ── Footer / Trust ── */
.popup-modal__footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(180, 150, 100, 0.12);
}

.popup-modal__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.popup-modal__trust span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B7360;
}

.popup-modal__trust-dot {
  width: 3px !important;
  height: 3px !important;
  border-radius: 9999px;
  background: #C9A96E;
  flex-shrink: 0;
}

.popup-modal__footnote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8125rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: #A89484;
  text-align: center;
  margin-top: 0.6rem;
}

/* ══════════════════════════════════════
   MOBILE — Bottom Sheet (≤ 768px)
   ══════════════════════════════════════ */

@media (max-width: 768px) {
  .popup-modal {
    padding: 0;
    align-items: flex-end;
  }

  .popup-modal__dialog {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 1rem);
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    border-radius: 1.5rem 1.5rem 0 0;
    box-shadow:
      0 -4px 24px rgba(12, 8, 4, 0.12),
      0 -20px 60px rgba(12, 8, 4, 0.2);
  }

  /* Drag handle indicator */
  .popup-modal__dialog::before {
    content: '';
    position: absolute;
    top: 0.55rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 3.5px;
    border-radius: 999px;
    background: rgba(180, 150, 100, 0.35);
    z-index: 40;
  }

  /* Visual: hero strip */
  .popup-modal__visual {
    height: 11rem;
  }

  .popup-modal__visual .popup-modal__image {
    object-position: center 25%;
  }

  .popup-modal__visual-copy {
    padding: 1.25rem 1.25rem 1rem;
    gap: 0.35rem;
  }

  .popup-modal__eyebrow {
    font-size: 0.625rem;
  }

  .popup-modal__visual-title {
    font-size: 1.25rem;
    line-height: 1.15;
  }

  /* Close — pin inside visual strip, dark style */
  .popup-modal__close {
    top: 0.6rem;
    right: 0.6rem;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(20, 12, 6, 0.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FDFBF7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .popup-modal__close:hover {
    background: rgba(20, 12, 6, 0.75);
  }

  /* Form panel */
  .popup-modal__form-panel {
    padding: 1.5rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .popup-modal__form-head {
    margin-bottom: 1.25rem;
  }

  .popup-modal__title {
    font-size: 1.65rem;
    margin-bottom: 0.4rem;
  }

  .popup-modal__intro {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #7A6A58;
  }

  /* Fields: card-style for touch */
  .popup-modal__form {
    gap: 0.85rem;
  }

  .popup-modal__field {
    padding: 0.85rem 1rem 0.75rem;
    border: 1.5px solid rgba(44, 26, 14, 0.3);
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.65);
  }

  .popup-modal__label {
    font-size: 0.6875rem;
    margin-bottom: 0.35rem;
  }

  .popup-modal__input {
    height: auto;
    min-height: 2.5rem;
    padding: 0.35rem 0;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(180, 150, 100, 0.18);
    background: transparent;
    font-size: 1rem; /* prevent iOS zoom */
  }

  .popup-modal__input:focus {
    box-shadow: none;
    border-bottom-color: #C9A96E;
    background: transparent;
  }

  /* Submit */
  .popup-modal__submit {
    height: 3.25rem;
    margin-top: 0.25rem;
    border-radius: 0.875rem;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    touch-action: manipulation;
    box-shadow: 0 8px 24px rgba(44, 26, 14, 0.14);
  }

  /* Footer */
  .popup-modal__footer {
    padding-top: 1rem;
  }

  .popup-modal__trust {
    gap: 0.4rem;
  }

  .popup-modal__trust span {
    font-size: 0.6875rem;
  }

  .popup-modal__footnote {
    font-size: 0.625rem;
  }
}

/* ── Extra small (≤ 420px) ── */
@media (max-width: 420px) {
  .popup-modal__visual {
    height: 9.5rem;
  }

  .popup-modal__visual-copy {
    padding: 1rem;
  }

  .popup-modal__visual-title {
    font-size: 1.1rem;
  }

  .popup-modal__form-panel {
    padding: 1.25rem 1rem calc(1rem + env(safe-area-inset-bottom));
  }

  .popup-modal__title {
    font-size: 1.45rem;
  }
}

/* ── Popup: legacy class compat (index.html) ── */
.popup-modal__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 0.6rem;
}

.popup-modal__kicker::before {
  content: '';
  width: 1.25rem;
  height: 1px;
  background: #C9A96E;
  flex-shrink: 0;
}

.popup-modal__visual-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(253, 251, 247, 0.72);
  max-width: 22rem;
  margin-top: 0.2rem;
}

.popup-modal__close span {
  font-size: 1rem;
  line-height: 1;
  font-weight: 300;
}

/* Old-style trust (column layout for index.html) */
.popup-modal__visual .popup-modal__trust {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(201,169,110,0.18);
  padding-top: 0.65rem;
}

.popup-modal__visual .popup-modal__trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  font-size: 0.75rem;
  color: rgba(253, 251, 247, 0.75);
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.popup-modal__visual .popup-modal__trust span:last-child {
  border-bottom: none;
}

.popup-modal__visual .popup-modal__trust span::before {
  content: '';
  width: 3px;
  height: 3px;
  background: #C9A96E;
  border-radius: 9999px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .popup-modal__visual .popup-modal__trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .popup-modal__visual .popup-modal__trust span {
    padding: 0.35rem 0.55rem;
    font-size: 0.625rem;
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 0.75rem;
    background: rgba(253,251,247,0.06);
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }

  .popup-modal__visual-text {
    display: none;
  }
}

/* ===== Header / Navbar from ABOUTUS ===== */
.tlr-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 4rem;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.8s var(--ease), border-color 0.8s var(--ease), padding 0.8s var(--ease);
}
.tlr-header.scrolled {
  background: rgba(252, 250, 246, 0.98);
  backdrop-filter: blur(10px);
  border-color: var(--champagne-light);
  padding: 1rem 4rem;
}

.tlr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* ==================== NAVIGATION ==================== */
.tlr-nav {
  display: flex;
  gap: 2.2rem;
}

.tlr-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #FAF7F2;
  text-decoration: none;
  position: relative;
  opacity: 0.6;
  text-transform: uppercase;
  transition: opacity 0.4s var(--ease), color 0.6s var(--ease);
}

.tlr-header.scrolled .tlr-nav a {
  color: var(--ink);
}

.tlr-nav a:hover {
  opacity: 1;
}

.tlr-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #FAF7F2;
  transition: width 0.6s var(--ease), background 0.6s var(--ease);
}

.tlr-header.scrolled .tlr-nav a::after {
  background: var(--ink);
}

.tlr-nav a:hover::after {
  width: 100%;
}

/* ==================== LOGO ==================== */
.tlr-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  color: #FAF7F2;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 1.1rem;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 0.6s var(--ease);
}

.tlr-header.scrolled .tlr-logo {
  color: var(--ink);
}

/* ==================== BURGER ==================== */
.tlr-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-54%);
  z-index: 1100;
}

.tlr-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #FAF7F2;
  margin: 6px 0;
  border-radius: 9999px;
  transition: all 0.3s ease, background 0.6s var(--ease);
}

.tlr-header.scrolled .tlr-burger span {
  background: var(--ink);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .tlr-nav {
    display: none;
  }
  .tlr-burger {
    display: block;
    right: 0.7rem;
    width: 30px;
    height: 22px;
  }
  .tlr-burger span {
    height: 2px;
    margin: 5px 0;
  }
  .tlr-logo {
    position: relative;
    left: 50%;
    transform: translateX(-68%);
    font-size: 1rem;
    text-align: center;
    padding-right: 2rem;
  }
  .tlr-header {
    padding: 0.9rem 1.5rem;
  }
  .tlr-header__inner {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .tlr-burger {
    width: 26px;
    height: 20px;
    right: 0.8rem;
  }
  .tlr-burger span {
    height: 1.5px;
    margin: 5px 0;
  }
  .tlr-logo {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    padding-right: 1.6rem;
  }
}

@media (max-width: 400px) {
  .tlr-burger {
    width: 22px;
    height: 18px;
  }
  .tlr-burger span {
    height: 1.2px;
    margin: 4px 0;
  }
  .tlr-logo {
    font-size: 0.9375rem;
    letter-spacing: 0.16em;
    padding-right: 1.4rem;
  }
}

/* MOBILE MENU OVERLAY */
.tlr-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.tlr-mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.tlr-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(26, 18, 14, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
  transition: right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1.5rem;
}

.tlr-mobile-menu.open {
  right: 0;
}

.tlr-close {
  background: none;
  border: none;
  color: #FBF8F4;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.tlr-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tlr-mobile-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FBF8F4;
  opacity: 0.9;
  transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.tlr-mobile-nav a:hover {
  opacity: 1;
}

.tlr-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.tlr-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.tlr-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== CINEMATIC HERO ===== */
.hero-cinematic {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0806;
}

/* --- Video Background --- */
.hero-cinematic__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-cinematic__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.15) saturate(0.6) brightness(0.45);
  transform: scale(1.08);
  animation: heroVideoZoom 20s ease-in-out infinite alternate;
}

@keyframes heroVideoZoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1.15); }
}

/* Dark gradient overlay — editorial fade */
.hero-cinematic__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,8,6,0.85) 0%,
      rgba(10,8,6,0.4) 35%,
      rgba(10,8,6,0.3) 55%,
      rgba(10,8,6,0.75) 85%,
      rgba(10,8,6,0.95) 100%
    ),
    linear-gradient(90deg,
      rgba(10,8,6,0.6) 0%,
      transparent 40%,
      transparent 60%,
      rgba(10,8,6,0.4) 100%
    );
  z-index: 2;
}

/* Film grain texture */
.hero-cinematic__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* --- Content Layer --- */
.hero-cinematic__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  padding: 5rem 1.5rem 3rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-cinematic__content {
    gap: 1.6rem;
    padding: 6rem 2rem 3rem;
  }
}

/* --- Eyebrow Bar --- */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-eyebrow__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(193,166,141,0.85);
}

.hero-eyebrow__line {
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.5;
}

.hero-eyebrow__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--champagne);
  opacity: 0.5;
}

/* --- Headline --- */
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #FAF7F2;
  line-height: 1.05;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.hero-headline__line {
  display: block;
}

.hero-headline__line--1 {
  font-size: clamp(2rem, 5.5vw, 4.2rem);
}

.hero-headline__line--2 {
  font-size: clamp(2rem, 5.5vw, 4.2rem);
}

.hero-headline__line--2 em {
  font-style: italic;
  font-weight: 400;
  color: transparent;
  background: linear-gradient(135deg, #E8CDB5 0%, #C1A68D 40%, #A47149 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Subtext --- */
.hero-subtext {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(250,247,242,0.6);
  line-height: 1.7;
  max-width: 520px;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .hero-subtext {
    font-size: 0.95rem;
  }
}

/* --- CTA Row --- */
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 0;
}

@media (min-width: 480px) {
  .hero-cta-row {
    flex-direction: row;
    gap: 1.5rem;
  }
}

/* Primary CTA */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0806;
  background: linear-gradient(135deg, #E8CDB5 0%, #C1A68D 50%, #A47149 100%);
  padding: 1rem 2.2rem;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  cursor: pointer;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(193,166,141,0.35);
}

.hero-btn-primary:hover::before {
  transform: translateX(120%);
}

.hero-btn-primary__text {
  position: relative;
  z-index: 2;
}

.hero-btn-primary__arrow {
  position: relative;
  z-index: 2;
  display: flex;
  transition: transform 0.4s var(--ease);
}

.hero-btn-primary:hover .hero-btn-primary__arrow {
  transform: translateX(4px);
}

/* Ghost CTA */
.hero-btn-ghost {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.7);
  background: none;
  border: 1px solid rgba(193,166,141,0.3);
  padding: 1rem 2.2rem;
  cursor: pointer;
  border-radius: 9999px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.hero-btn-ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(193,166,141,0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.hero-btn-ghost:hover {
  color: #FAF7F2;
  border-color: rgba(193,166,141,0.6);
}

.hero-btn-ghost:hover::after {
  transform: scaleX(1);
}

/* --- Trust Strip --- */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(193,166,141,0.12);
  margin-top: 0.5rem;
}

.hero-trust__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
}

.hero-trust__icon {
  display: flex;
  color: var(--champagne);
  opacity: 0.6;
}

.hero-trust__divider {
  width: 1px;
  height: 14px;
  background: rgba(193,166,141,0.2);
}

@media (max-width: 480px) {
  /* Eyebrow: tighter on mobile */
  .hero-eyebrow__label {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }
  .hero-eyebrow__line {
    width: 1.2rem;
  }

  /* Headline: slightly tighter line-height */
  .hero-headline__line--1,
  .hero-headline__line--2 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  /* Subtext: smaller + less line padding */
  .hero-subtext {
    font-size: 0.8rem;
    line-height: 1.65;
    letter-spacing: 0.01em;
  }

  /* CTA: full width buttons on mobile */
  .hero-cta-row {
    width: 100%;
    gap: 0.75rem;
  }
  .hero-btn-primary,
  .hero-btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
  }

  /* Trust strip: 3-column grid, each item centered */
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem 0.25rem;
    padding-top: 1rem;
    margin-top: 0.25rem;
  }
  .hero-trust__divider {
    display: none;
  }
  .hero-trust__item {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    line-height: 1.3;
  }
  .hero-trust__icon {
    opacity: 0.8;
  }

  /* Tighter overall content gap on mobile */
  .hero-cinematic__content {
    gap: 0.9rem;
    padding: 5rem 1.25rem 2.5rem;
  }
}

/* --- Scroll Indicator --- */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-scroll-hint__mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(193,166,141,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-hint__wheel {
  width: 2px;
  height: 6px;
  background: var(--champagne);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0.7; }
}

/* ===== Hero Reveal Animations ===== */
.hero-text, .hero-cta {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-text.show, .hero-cta.show {
  opacity: 1;
  transform: none;
}

/* Stagger delays for hero elements */
.hero-cinematic__content > .hero-text:nth-child(1) { transition-delay: 0s; }
.hero-cinematic__content > .hero-text:nth-child(2) { transition-delay: 0.15s; }
.hero-cinematic__content > .hero-text:nth-child(3) { transition-delay: 0.3s; }
.hero-cinematic__content > .hero-cta:nth-child(4) { transition-delay: 0.45s; }
.hero-cinematic__content > .hero-text:nth-child(5) { transition-delay: 0.6s; }
.hero-scroll-hint { transition-delay: 0.8s; }

/* ===== Restore Section — Ivory Atelier ===== */
.restore-section {
  position: relative;
  width: 100%;
  background: var(--bg-cream);
  overflow: hidden;
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .restore-section { padding: 7rem 3rem; }
}
@media (min-width: 1024px) {
  .restore-section { padding: 8rem 4rem; }
}

/* Subtle diagonal line texture */
.restore-section__texture {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--ink) 0, var(--ink) 1px,
    transparent 0, transparent 18px
  );
  pointer-events: none;
}

/* Inner grid */
.restore-section__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .restore-section__inner {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .restore-section__inner { gap: 5rem; }
}

/* --- Image Column --- */
.restore-section__image-col {
  flex: 1;
  position: relative;
  max-width: 500px;
  width: 100%;
}

.restore-section__frame {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
}

.restore-section__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 3.2;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) brightness(0.95);
  transition: transform 1.2s var(--ease);
}

.restore-section__frame:hover .restore-section__img {
  transform: scale(1.04);
}

/* Gold accent border offset behind image */
.restore-section__frame-accent {
  position: absolute;
  top: 12px;
  right: -12px;
  bottom: -12px;
  left: 12px;
  border: 1px solid var(--champagne);
  opacity: 0.25;
  border-radius: 2.5rem;
  z-index: -1;
  pointer-events: none;
}

/* Floating stat badge */
.restore-section__stat {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: var(--ink);
  color: var(--bg-cream);
  padding: 1.2rem 1.6rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  z-index: 5;
  box-shadow: 0 12px 40px rgba(16,12,8,0.25);
}

@media (min-width: 768px) {
  .restore-section__stat {
    bottom: -20px;
    right: -20px;
    padding: 1.5rem 2rem;
  }
}

.restore-section__stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--champagne);
}

.restore-section__stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,250,246,0.5);
}

/* --- Text Column --- */
.restore-section__text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 540px;
}

/* Eyebrow */
.restore-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
}

.restore-section__eyebrow-line {
  width: 2rem;
  height: 1px;
  background: var(--champagne);
  opacity: 0.5;
}

/* Heading */
.restore-section__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.restore-section__heading em {
  font-style: italic;
  font-weight: 400;
  color: transparent;
  background: linear-gradient(135deg, #A47149 0%, #7A5130 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Body */
.restore-section__body {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.55;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

/* Features grid */
.restore-section__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--champagne-light);
  border-bottom: 1px solid var(--champagne-light);
}

.restore-section__feature {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.restore-section__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-off);
  color: var(--champagne);
  flex-shrink: 0;
  border: 1px solid var(--champagne-light);
}

.restore-section__feature-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.restore-section__feature-desc {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.4;
  margin-top: 1px;
}

/* CTA Button — warm solid */
.restore-section__btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-cream);
  background: var(--ink);
  padding: 1rem 2.4rem;
  border: 1px solid var(--ink);
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--ease);
}

.restore-section__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
  z-index: 0;
}

.restore-section__btn:hover {
  color: var(--ink);
  border-color: var(--champagne);
}

.restore-section__btn:hover::before {
  transform: scaleX(1);
}

.restore-section__btn svg,
.restore-section__btn span {
  position: relative;
  z-index: 1;
}

.restore-section__btn svg {
  transition: transform 0.4s var(--ease);
}

.restore-section__btn:hover svg {
  transform: translateX(4px);
}

/* ===== Proof / Testimonials Section ===== */
/* ===== Vernissage — Testimonials Gallery ===== */
.vernissage {
  position: relative;
  width: 100%;
  background: #FDFAF6;
  overflow: hidden;
}

/* Grain texture overlay */
.vernissage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── HERO SPLIT ── */
.vernissage__hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: center;
}

/* Left panel */
.vernissage__left {
  padding: clamp(5rem, 10vh, 9rem) clamp(2.5rem, 5vw, 6rem) clamp(5rem, 10vh, 9rem) clamp(3rem, 7vw, 9rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-right: 1px solid rgba(193,166,141,0.18);
}

.vernissage__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #866447;
  margin-bottom: 2.2rem;
}
.vernissage__tag::before {
  content: '';
  display: inline-block;
  width: 2.8rem;
  height: 1px;
  background: #A47149;
  opacity: 0.55;
}

.vernissage__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 0.95;
  color: #1A140E;
  letter-spacing: -0.02em;
  margin-bottom: 2.4rem;
}
.vernissage__title em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: #A47149;
  font-size: 1.08em;
}

.vernissage__lede {
  max-width: 30rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: #5d4939;
  margin-bottom: 2.8rem;
  border-left: 2px solid rgba(193,166,141,0.4);
  padding-left: 1.2rem;
}

.vernissage__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid rgba(193,166,141,0.7);
  border-radius: 9999px;
  background: rgba(255,252,248,0.9);
  width: fit-content;
  margin-bottom: 1.4rem;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.vernissage__rating:hover {
  border-color: rgba(193,166,141,0.65);
  box-shadow: 0 8px 28px rgba(90,60,30,0.08);
}
.vernissage__stars { display: flex; gap: 0.18rem; }
.vernissage__rating-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5e4b3c;
}

.vernissage__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.vernissage__meta-item {
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(26,20,14,0.25);
  border-radius: 9999px;
  background: transparent;
  color: #5f4b3c;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.35s, border-color 0.35s, color 0.35s;
}
.vernissage__meta-item:hover {
  background: rgba(193,166,141,0.12);
  border-color: rgba(193,166,141,0.4);
  color: #A47149;
}

/* Right panel — collage stage */
.vernissage__right {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Warm vignette on right */
.vernissage__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(253,250,246,0.5) 100%);
  z-index: 2;
  pointer-events: none;
}

.vernissage__track-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  overflow: visible;
  cursor: default;
}
.vernissage__track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Each frame absolutely positioned for collage overlap */
.vernissage__frame {
  position: absolute;
  width: clamp(200px, 22vw, 300px);
  display: flex;
  flex-direction: column;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}
.vernissage__frame:nth-child(1) {
  top: 10%;
  left: 5%;
  transform: rotate(-5.5deg);
  z-index: 3;
}
.vernissage__frame:nth-child(2) {
  top: 20%;
  left: 28%;
  transform: rotate(2.5deg) translateY(2.5rem);
  z-index: 4;
}
.vernissage__frame:nth-child(3) {
  top: 12%;
  right: 3%;
  transform: rotate(6.5deg) translateY(1.5rem);
  z-index: 3;
}
.vernissage__frame:hover {
  transform: rotate(0deg) translateY(-1.5rem) scale(1.06) !important;
  z-index: 10 !important;
}

.vernissage__frame-inner {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #EDE5D8;
  border: 1.5px solid rgba(193,166,141,0.3);
  box-shadow:
    0 2px 6px rgba(90,60,30,0.08),
    0 12px 36px rgba(90,60,30,0.12),
    0 30px 70px rgba(90,60,30,0.09);
  padding: 0.75rem;
  transition: box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s;
}
.vernissage__frame:hover .vernissage__frame-inner {
  box-shadow:
    0 4px 12px rgba(90,60,30,0.1),
    0 24px 56px rgba(90,60,30,0.18),
    0 48px 96px rgba(90,60,30,0.1);
  border-color: rgba(193,166,141,0.6);
}
.vernissage__frame-inner img {
  width: 100%;
  display: block;
  border-radius: 0.85rem;
  border: 1px solid rgba(193,166,141,0.35);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.vernissage__frame:hover .vernissage__frame-inner img { transform: scale(1.03); }

.vernissage__caption {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  margin-left: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a5646;
  transition: color 0.4s;
}
.vernissage__caption::before {
  content: '';
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #A47149;
  opacity: 0.7;
  flex-shrink: 0;
}
.vernissage__frame:hover .vernissage__caption { color: #4f3e31; }

/* ── STATS LEDGER ── */
.vernissage__stats {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(193,166,141,0.22);
  background: #FDFAF6;
  overflow: hidden;
}

.vernissage__stats-intro {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vh, 4rem) clamp(2rem, 6vw, 7rem) clamp(1.5rem, 3vh, 2.5rem);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(193,166,141,0.15);
}

.vernissage__stats-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #866447;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.vernissage__stats-kicker::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: #A47149;
  opacity: 0.5;
}

.vernissage__stats-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: #594737;
  max-width: 42rem;
  text-align: right;
}

.vernissage__stats-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(2rem, 4vh, 3rem) clamp(2rem, 6vw, 7rem) clamp(2.5rem, 5vh, 4.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.vernissage__stat {
  padding: 1.5rem 2.5rem 1.5rem 0;
  display: grid;
  gap: 0.35rem;
  align-content: start;
  position: relative;
}
.vernissage__stat + .vernissage__stat {
  padding-left: 2.5rem;
  border-left: 1px solid rgba(193,166,141,0.2);
}

.vernissage__stat-index {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9375rem;
  letter-spacing: 0.22em;
  color: #7D6050;
  margin-bottom: 0.2rem;
}
.vernissage__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4.5vw, 5.5rem);
  font-weight: 400;
  color: #1A140E;
  letter-spacing: -0.06em;
  line-height: 0.85;
  transition: color 0.4s;
}
.vernissage__stat:hover .vernissage__stat-num { color: #A47149; }

.vernissage__stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5f4b3c;
  margin-top: 0.6rem;
}
.vernissage__stat-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #5d4939;
  margin-top: 0.8rem;
  max-width: 22rem;
}

@media (max-width: 960px) {
  .vernissage__hero { grid-template-columns: 1fr; }
  .vernissage__left {
    border-right: none;
    border-bottom: 1px solid rgba(193,166,141,0.18);
    padding: clamp(4rem, 8vh, 6rem) clamp(2rem, 5vw, 4rem);
  }
  .vernissage__right { height: 70vw; min-height: 340px; }
  .vernissage__stats-intro { flex-direction: column; gap: 0.8rem; }
  .vernissage__stats-copy { text-align: left; }
  .vernissage__stats-grid { grid-template-columns: 1fr; }
  .vernissage__stat + .vernissage__stat {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(193,166,141,0.2);
    padding-top: 1.5rem;
  }
}

/* ===== Testimonials ===== */
/* Heading Reveal */
.reveal-text {
  opacity: 0;
  transform: translateY(100%);
  display: inline-block;
  transition: all 1s ease;
}

.reveal-text.show {
  opacity: 1;
  transform: translateY(0);
}

/* Underline Grow */
.underline-grow {
  width: 0;
  transition: width 1s ease;
}

.underline-grow.show {
  width: 5rem;
}

/* Card Animation */
.card-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-animate.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Button Glow */
.premium-btn {
  transition: all 0.4s ease;
}

.premium-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(164, 113, 73, 0.4);
}

/* Responsive testimonials */
@media (max-width: 640px) {
  .process-header h2 {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
  .process-header p,
  .fade-up {
    font-size: 0.95rem;
  }
  .card-animate {
    padding: 1rem;
  }
}

/* ===== Marquee ===== */
.luxury-marquee {
  width: 100%;
  overflow: hidden;
  background: #1b1b1b;
  padding: 1.2rem 0;
  border-top: 1px solid #a47149;
  border-bottom: 1px solid #a47149;
}

.luxury-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: fit-content;
  animation: scroll-marquee 28s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.marquee-item {
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(to right, #f8e2c0, #caa87a, #a47149);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 2px;
}

.gola {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f8e2c0, #a47149);
  flex-shrink: 0;
}

@keyframes scroll-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ===== Luxury Animations (fade left/right/up) ===== */
@keyframes fadeLeft {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Initial hidden state */
.hidden-animate {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.hidden-animate.animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Triggered animations */
.luxury-fade-left.animate { animation: fadeLeft 1.4s ease forwards; }
.luxury-fade-right.animate { animation: fadeRight 1.4s ease forwards; }
.luxury-stagger.animate { animation: fadeUp 1.2s ease forwards; }

/* ===== Text Glow ===== */
@keyframes text-glow {
  0%, 100% {
    text-shadow: 0 0 4px rgba(248, 226, 192, 0.25);
  }
  50% {
    text-shadow: 0 0 18px rgba(202, 168, 122, 0.5);
  }
}

.animate-text-glow {
  animation: text-glow 3s ease-in-out infinite;
}

/* ===== Reveal Card ===== */
.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ===== Sparkle ===== */
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #f8e2c0 0%, #caa87a 60%, transparent 100%);
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
  animation: sparkle-fade 0.8s ease-out forwards;
  filter: drop-shadow(0 0 4px #f8e2c0);
}

@keyframes sparkle-fade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.2);
    opacity: 0;
  }
}

/* ===== Shimmer Keyframes ===== */
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ===== Click Doodle (removed) ===== */
/* #music-toggle removed — no longer in DOM */
#dead-placeholder {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  cursor: pointer;
  z-index: 10000;
  padding: 8px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #a47149;
}

.bar {
  width: 4px;
  background: linear-gradient(to top, #f8e2c0, #caa87a, #a47149);
  animation: wave 1s infinite ease-in-out;
  border-radius: 2px;
  transform-origin: bottom;
}

.bar1 {
  animation-delay: 0s;
  height: 20%;
}

.bar2 {
  animation-delay: 0.2s;
  height: 50%;
}

.bar3 {
  animation-delay: 0.4s;
  height: 30%;
}

@keyframes wave {
  0%, 100% {
    height: 20%;
  }
  50% {
    height: 100%;
  }
}

#click-doodle {
  position: fixed;
  bottom: 70px;
  left: 10px;
  z-index: 9999;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: white;
  background: linear-gradient(135deg, #a47149, #caa87a);
  padding: 6px 12px;
  border-radius: 14px;
  border: none;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: wiggle 2s infinite ease-in-out, pulse 3s infinite ease-in-out;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#click-doodle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-1deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* ===== Popup ===== */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeInScale 0.5s forwards;
}

/* Fallback image height for very small phones */
@media (max-width: 768px) {
  #popup-form img {
    max-height: 220px;
  }
}

/* Close button color tweak for smaller screens */
@media (max-width: 1024px) {
  #popup-form button[aria-label="Close consultation form"] {
    color: white !important;
  }
}

/* ===== TLR Split Sections — Color Restoration & Stain Removal ===== */
.tlr-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.tlr-split--reverse {
  direction: rtl;
}
.tlr-split--reverse > * {
  direction: ltr;
}

/* Image Panel */
.tlr-split__image-panel {
  position: relative;
  overflow: hidden;
}

.tlr-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  filter: contrast(1.08) saturate(0.8);
}

.tlr-split-section:hover .tlr-split__img {
  transform: scale(1.04);
}

.tlr-split__img-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tlr-split--dark .tlr-split__img-overlay {
  background: linear-gradient(135deg, rgba(16,12,8,0.45) 0%, rgba(164,113,73,0.12) 100%);
}

.tlr-split--light .tlr-split__img-overlay {
  background: linear-gradient(135deg, rgba(245,240,234,0.15) 0%, rgba(58,47,40,0.3) 100%);
}

/* Badge overlay on image */
.tlr-split__badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 12, 8, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(164, 113, 73, 0.4);
  border-radius: 9999px;
  padding: 0.5rem 1.1rem 0.5rem 0.6rem;
}

.tlr-badge__num {
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #A47149;
  letter-spacing: 0.05em;
  background: rgba(164, 113, 73, 0.15);
  border-radius: 9999px;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tlr-badge__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* Text Panel */
.tlr-split__text-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 4.5rem;
}

.tlr-split--dark .tlr-split__text-panel {
  background: #1A1510;
}

.tlr-split--light .tlr-split__text-panel {
  background: #F5F0EA;
}

.tlr-split__text-inner {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Eyebrow */
.tlr-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #A47149;
}

/* Heading */
.tlr-split__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.tlr-split--dark .tlr-split__heading {
  color: #F5EDE0;
}

.tlr-split--light .tlr-split__heading {
  color: #1A1510;
}

/* Accent underline stroke */
.tlr-accent-stroke {
  position: relative;
  display: inline;
  color: #A47149;
}

.tlr-accent-stroke::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, #A47149, #D4A96A);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.tlr-split-section:hover .tlr-accent-stroke::after {
  transform: scaleX(1);
}

/* Body text */
.tlr-split__body {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 400;
}

.tlr-split--dark .tlr-split__body {
  color: rgba(245, 237, 224, 0.65);
}

.tlr-split--light .tlr-split__body {
  color: #5A4B3C;
}

/* Pills */
.tlr-split__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tlr-pill {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
}

.tlr-split--dark .tlr-pill {
  background: rgba(164, 113, 73, 0.12);
  color: #C1A68D;
  border: 1px solid rgba(164, 113, 73, 0.25);
}

.tlr-split--light .tlr-pill {
  background: rgba(58, 47, 40, 0.06);
  color: #6B543E;
  border: 1px solid rgba(164, 113, 73, 0.2);
}

/* CTA */
.tlr-split__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  align-self: flex-start;
}

.tlr-split--dark .tlr-split__cta {
  background: #A47149;
  color: #1A1510;
  border: 1px solid #A47149;
}

.tlr-split--dark .tlr-split__cta:hover {
  background: transparent;
  color: #A47149;
}

.tlr-split--light .tlr-split__cta {
  background: transparent;
  color: #3A2F28;
  border: 1px solid rgba(58, 47, 40, 0.3);
}

.tlr-split--light .tlr-split__cta:hover {
  background: #3A2F28;
  color: #F5F0EA;
  border-color: #3A2F28;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .tlr-split-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tlr-split--reverse {
    direction: ltr;
  }

  .tlr-split__image-panel {
    min-height: 320px;
  }

  .tlr-split--dark .tlr-split__text-panel,
  .tlr-split--light .tlr-split__text-panel {
    padding: 3rem 2rem;
  }

  .tlr-split__text-inner {
    max-width: 100%;
  }
}
. m a s t e r - c a r d _ _ f r a m e   {   b o r d e r - r a d i u s :   1 . 5 r e m   ! i m p o r t a n t ;   o v e r f l o w :   h i d d e n   ! i m p o r t a n t ;   } 
 
 . m a s t e r - c a r d _ _ i m a g e   {   b o r d e r - r a d i u s :   1 . 5 r e m   ! i m p o r t a n t ;   } 
 
 . m a s t e r - c a r d _ _ b a d g e   {   b o r d e r - r a d i u s :   9 9 9 9 p x   ! i m p o r t a n t ;   } 
 
 


/* ═══════════════════════════════════════════════════════════════════════════
   PILLARS  —  Full-screen stacked card scroll (Three Pillars of Restoration)
═══════════════════════════════════════════════════════════════════════════ */

/* ── Spacers ── */
.pillars-spacer {
  width: 100%;
  min-height: 100vh;
}

/* ── Section wrapper ── */
.pillars-wrapper {
  width: 100%;
  padding: 120px 0 80px;
  background: var(--bg-cream);
  position: relative;
}

/* ── Decorative top rule ── */
.pillars-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193,166,141,0.6) 30%, rgba(193,166,141,0.6) 70%, transparent);
}

/* ── Intro header ── */
.pillars-intro {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 clamp(2rem, 5vw, 7rem);
  display: flex;
  align-items: flex-end;
  gap: clamp(2rem, 5vw, 6rem);
}

.pillars-intro__tag {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0.7;
  flex-shrink: 0;
  padding-bottom: 0.5rem;
}

.pillars-intro__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.pillars-intro__title em {
  font-style: italic;
  color: var(--champagne);
  display: block;
}

/* ── Cards container ── */
.pillars-cards {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(2rem, 5vw, 7rem);
}

/* ── Each card wrapper (pinned by GSAP) ── */
.pillar-wrapper {
  width: 100%;
  perspective: 800px;
  margin-bottom: 2rem;
}
.pillar-wrapper:last-child {
  margin-bottom: 0;
}

/* ── The card itself ── */
.pillar-card {
  position: relative;
  width: 100%;
  height: clamp(480px, 72vh, 680px);
  border-radius: 1.25rem;
  overflow: hidden;
  background: #f0ebe4;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(193,166,141,0.08);
  will-change: transform;
}

.pillar-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.08) saturate(0.75) brightness(0.9);
  transform: scale(1.03);
  transition: transform 8s ease-out;
}
.pillar-card:hover .pillar-card__img {
  transform: scale(1.0);
}

/* Multi-layer overlay: dark bottom, light grain top */
.pillar-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,7,4,0.88) 0%, rgba(10,7,4,0.45) 40%, rgba(10,7,4,0.05) 72%, transparent 100%),
    linear-gradient(to right, rgba(10,7,4,0.2) 0%, transparent 50%);
  z-index: 1;
}

/* ── Content block: number + text side by side ── */
.pillar-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
}

/* Large number */
.pillar-card__num {
  grid-column: 1;
  grid-row: 1 / 4;
  align-self: end;
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(193,166,141,0.25);
  letter-spacing: -0.04em;
  user-select: none;
  padding-bottom: 0.1em;
}

.pillar-card__eyebrow {
  grid-column: 2;
  grid-row: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}

.pillar-card__title {
  grid-column: 2;
  grid-row: 2;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #faf6f0;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
}
.pillar-card__title em {
  font-style: italic;
  color: #d4aa7a;
}

.pillar-card__body {
  grid-column: 2;
  grid-row: 3;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(245,240,234,0.6);
  line-height: 1.8;
  max-width: 480px;
}

/* Actions: right column */
.pillar-card__actions {
  grid-column: 3;
  grid-row: 1 / 4;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  padding-left: 1rem;
}

.pillar-card__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0E0B08;
  background: var(--champagne);
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(193,166,141,0.25);
}
.pillar-card__btn-primary:hover {
  background: #d4b898;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(193,166,141,0.35);
}

.pillar-card__btn-ghost {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.6);
  background: transparent;
  border: 1px solid rgba(193,166,141,0.25);
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.3s, color 0.3s;
}
.pillar-card__btn-ghost:hover {
  border-color: rgba(193,166,141,0.6);
  color: #f5f0ea;
}

/* Badge top-right */
.pillar-card__badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.75);
  background: rgba(10,7,4,0.55);
  backdrop-filter: blur(16px);
  padding: 0.6rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(193,166,141,0.18);
}
.pillar-card__badge-line {
  width: 1rem;
  height: 1px;
  background: var(--champagne);
  opacity: 0.6;
}

@media (max-width: 768px) {
  /* Layout resets */
  .pillars-intro { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .pillars-intro__tag { writing-mode: horizontal-tb; transform: none; }
  .pillar-card__content { grid-template-columns: 1fr; grid-template-rows: auto; }
  .pillar-card__num { display: none; }
  .pillar-card__eyebrow { grid-column: 1; grid-row: 1; }
  .pillar-card__title { grid-column: 1; grid-row: 2; }
  .pillar-card__body { grid-column: 1; grid-row: 3; }
  .pillar-card__actions { grid-column: 1; grid-row: 4; flex-direction: column; align-items: stretch; padding-left: 0; margin-top: 0.85rem; gap: 0.6rem; }

  /* Section padding */
  .pillars-wrapper { padding: 56px 0 40px; }
  .pillars-intro { margin-bottom: 36px; padding: 0 1.25rem; }
  .pillars-intro__title { font-size: clamp(1.8rem, 8vw, 3rem); }
  .pillars-cards { padding: 0 1.25rem; }

  /* Card size */
  .pillar-card { height: clamp(340px, 62vh, 500px); border-radius: 1rem; }
  .pillar-card__content { padding: 1.5rem; }
  .pillar-wrapper { margin-bottom: 1.1rem; }

  /* Typography inside cards */
  .pillar-card__eyebrow { font-size: 0.65rem; letter-spacing: 0.2em; margin-bottom: 0.35rem; }
  .pillar-card__title { font-size: clamp(1.25rem, 5vw, 1.75rem); margin-bottom: 0.5rem; }
  .pillar-card__body { font-size: 0.8rem; line-height: 1.65; }

  /* Buttons: full width stacked */
  .pillar-card__btn-primary,
  .pillar-card__btn-ghost {
    width: 100%;
    justify-content: center;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    padding: 0.7rem 1.1rem;
  }

  /* Badge smaller */
  .pillar-card__badge {
    font-size: 0.6rem;
    padding: 0.38rem 0.7rem;
    letter-spacing: 0.14em;
    top: 0.85rem;
    right: 0.85rem;
  }

  /* Extended services grid: tighter padding */
  .pillars-wrapper .max-w-7xl { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .pillars-wrapper .border { padding: 1.25rem; }
  .services-ext-grid { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  .services-ext-kicker { margin-bottom: 2rem !important; }
}

@media (max-width: 480px) {
  /* Section */
  .pillars-wrapper { padding: 40px 0 32px; }
  .pillars-intro { margin-bottom: 24px; padding: 0 1rem; gap: 0.4rem; }
  .pillars-intro__tag { font-size: 0.58rem; letter-spacing: 0.2em; }
  .pillars-intro__title { font-size: clamp(1.6rem, 7.5vw, 2rem); line-height: 1.08; }
  .pillars-cards { padding: 0 1rem; }

  /* Cards: compact but tall enough for stacked buttons */
  .pillar-card { height: clamp(360px, 62vh, 480px); border-radius: 0.875rem; box-shadow: 0 16px 36px rgba(0,0,0,0.38); }
  .pillar-card__content { padding: 1.1rem 1.1rem 1.25rem; }
  .pillar-wrapper { margin-bottom: 0.875rem; }

  /* Card text */
  .pillar-card__eyebrow { font-size: 0.58rem; letter-spacing: 0.16em; margin-bottom: 0.28rem; }
  .pillar-card__title { font-size: clamp(1.1rem, 5vw, 1.4rem); margin-bottom: 0.4rem; line-height: 1.2; }
  .pillar-card__body {
    font-size: 0.76rem;
    line-height: 1.6;
    color: rgba(245,240,234,0.52);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Buttons: stacked full-width, no wrap */
  .pillar-card__actions { flex-direction: column; gap: 0.45rem; margin-top: 0.7rem; }
  .pillar-card__btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 0.64rem;
    letter-spacing: 0.07em;
    padding: 0.65rem 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pillar-card__btn-ghost {
    width: 100%;
    justify-content: center;
    font-size: 0.64rem;
    letter-spacing: 0.07em;
    padding: 0.65rem 1rem;
    white-space: nowrap;
  }

  /* Badge: minimal */
  .pillar-card__badge {
    font-size: 0.52rem;
    padding: 0.3rem 0.6rem;
    letter-spacing: 0.1em;
    top: 0.7rem;
    right: 0.7rem;
  }
  .pillar-card__badge-line { width: 0.6rem; }

  /* Extended grid: much tighter */
  .pillars-wrapper .max-w-7xl { padding-top: 1.75rem; padding-bottom: 2rem; }
  .pillars-wrapper .border { padding: 1rem; }

  /* Extended grid helpers */
  .services-ext-grid { padding-top: 1.75rem !important; padding-bottom: 2rem !important; padding-left: 1rem !important; padding-right: 1rem !important; }
  .services-ext-kicker { margin-bottom: 1.5rem !important; letter-spacing: 0.2em !important; }
}

/* ── Services extended grid: mobile 2-column compact layout ── */
@media (max-width: 640px) {
  /* 2-column grid — halves the scroll length */
  .services-ext-items {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
  }

  /* Compact tile padding */
  .svc-tile {
    padding: 0.9rem 0.85rem !important;
  }

  /* Title: tighter */
  .svc-tile__title {
    font-size: 0.62rem !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 0.4rem !important;
    line-height: 1.35 !important;
  }

  /* Body: 2-line clamp, smaller font */
  .svc-tile__body {
    font-size: 0.72rem !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* Section wrapper tighter */
  .services-ext-grid {
    padding-top: 1.5rem !important;
    padding-bottom: 1.75rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .services-ext-kicker {
    font-size: 0.6rem !important;
    letter-spacing: 0.18em !important;
    margin-bottom: 1rem !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   TRUST  —  "The Choice of Delhi NCR's Most Discerning Homes"
═══════════════════════════════════════════════════════════════════════════ */

.trust-section {
  background: var(--bg-cream);
  padding: clamp(5rem, 9vh, 8rem) clamp(2rem, 7vw, 9rem);
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 110%, rgba(193,166,141,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% -10%, rgba(193,166,141,0.05) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Ornamental rule ── */
.trust-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 5rem;
}
.trust-rule:last-of-type {
  margin-bottom: 0;
  margin-top: 5rem;
}
.trust-rule__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193,166,141,0.5), transparent);
}
.trust-rule__diamond {
  flex-shrink: 0;
  opacity: 0.8;
}

/* ── Header ── */
.trust-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: clamp(2rem, 4vw, 5rem);
  margin-bottom: clamp(3.5rem, 6vh, 5.5rem);
}
.trust-header__tag {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #8A694B;
  align-self: center;
}
.trust-header__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.trust-header__title em {
  font-style: italic;
  color: #A47149;
}
.trust-header__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #5E4A3A;
  line-height: 1.9;
  max-width: 320px;
  align-self: end;
  padding-bottom: 0.4rem;
}

/* ── Stats row ── */
.trust-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: clamp(4rem, 7vh, 6rem);
  border-top: 1px solid rgba(193,166,141,0.2);
  border-bottom: 1px solid rgba(193,166,141,0.2);
  padding: 2.5rem 0;
}
.trust-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 clamp(1.5rem, 2.5vw, 3rem);
}
.trust-stat:first-child { padding-left: 0; }
.trust-stat:last-child { padding-right: 0; }

.trust-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.trust-stat__num sup {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.45em;
  font-weight: 600;
  color: #A47149;
  vertical-align: super;
  letter-spacing: 0.08em;
}
.trust-stat__rule {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--champagne);
  opacity: 0.6;
}
.trust-stat__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  font-weight: 400;
  color: #5F4D3E;
  line-height: 1.7;
  max-width: 220px;
  letter-spacing: 0.01em;
}
.trust-stat__divider {
  width: 1px;
  background: rgba(193,166,141,0.2);
  align-self: stretch;
  flex-shrink: 0;
}

/* ── Body: quote + image ── */
.trust-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 7rem);
  align-items: center;
  margin-bottom: clamp(3.5rem, 6vh, 5rem);
}
.trust-quote {
  position: relative;
  padding-left: 1rem;
}
.trust-quote__mark {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 9vw, 10rem);
  line-height: 0.7;
  color: rgba(193,166,141,0.18);
  display: block;
  margin-bottom: -1rem;
  user-select: none;
}
.trust-quote__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.trust-quote__cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  font-style: normal;
}
.trust-image {
  position: relative;
}
.trust-image__img {
  width: 100%;
  height: clamp(280px, 40vh, 420px);
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
  display: block;
  filter: contrast(1.06) saturate(0.82);
}
.trust-image__caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.8);
  background: rgba(16,12,8,0.55);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(193,166,141,0.2);
}

/* ── CTA row ── */
.trust-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.trust-cta__primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg-cream);
  background: var(--ink);
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  transition: background 0.3s, transform 0.2s;
}
.trust-cta__primary:hover {
  background: #2A1F18;
  transform: translateY(-1px);
}
.trust-cta__ghost {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(16,12,8,0.25);
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.trust-cta__ghost:hover {
  border-color: var(--ink);
  background: rgba(16,12,8,0.04);
}

@media (max-width: 900px) {
  .trust-header { grid-template-columns: 1fr; gap: 1rem; }
  .trust-header__tag {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.9375rem;
    letter-spacing: 0.28em;
  }
  .trust-header__sub {
    max-width: 100%;
    font-size: 0.96rem;
  }
  .trust-stats { flex-wrap: wrap; gap: 2rem; }
  .trust-stat__divider { display: none; }
  .trust-stat { flex: 1 1 40%; padding: 0; }
  .trust-stat__label {
    font-size: 0.94rem;
    max-width: none;
  }
  .trust-body { grid-template-columns: 1fr; }
}





/* ===== Master Touch v2 ===== */
.mt2 {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.25fr);
  background:
    radial-gradient(circle at left top, rgba(193,166,141,0.14), transparent 34%),
    linear-gradient(180deg, #f9f4ee 0%, #f5efe8 100%);
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

/* ── LEFT PANEL ── */
.mt2__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  padding: clamp(3.25rem, 6vh, 5.25rem) clamp(2.4rem, 4.2vw, 4.5rem) clamp(3.4rem, 7vh, 5.5rem) clamp(3rem, 7vw, 7.5rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.08) 100%);
  min-height: 100%;
  z-index: 1;
}
.mt2__panel::before {
  content: '';
  position: absolute;
  top: clamp(2rem, 5vh, 4rem);
  left: clamp(3rem, 7vw, 7.5rem);
  right: clamp(2.4rem, 4.2vw, 4.5rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(164,113,73,0.34), rgba(164,113,73,0.04));
}

.mt2__panel::after {
  content: '';
  position: absolute;
  top: 2.6rem;
  right: clamp(2rem, 4vw, 4rem);
  width: clamp(7rem, 12vw, 10rem);
  height: clamp(7rem, 12vw, 10rem);
  border-radius: 50%;
  border: 1px solid rgba(164,113,73,0.12);
  box-shadow: inset 0 0 0 14px rgba(164,113,73,0.03);
  opacity: 0.7;
  pointer-events: none;
}

.mt2__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.mt2__eyebrow-line {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, #A47149, rgba(164,113,73,0.18));
  opacity: 0.95;
  flex-shrink: 0;
}
.mt2__eyebrow-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #876548;
}
.mt2__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 5vw, 5.9rem);
  line-height: 0.92;
  color: var(--ink);
  letter-spacing: -0.045em;
  margin-bottom: 1.45rem;
  max-width: 9ch;
  position: relative;
}
.mt2__title em {
  font-style: italic;
  font-weight: 500;
  color: #A47149;
}
.mt2__body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: #5d4939;
  max-width: 30rem;
  margin-bottom: 2.5rem;
  padding: 1.2rem 1.35rem 1.2rem 1.45rem;
  border-left: 1.5px solid rgba(193,166,141,0.4);
  background: linear-gradient(90deg, rgba(255,255,255,0.62), rgba(255,255,255,0.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}
.mt2__stats {
  display: flex;
  flex-direction: column;
  width: min(100%, 34.5rem);
  margin-bottom: 2.8rem;
  border-top: 1px solid rgba(193,166,141,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0.08));
}
.mt2__stat {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.22rem 0.2rem 1.22rem 0;
  border-bottom: 1px solid rgba(193,166,141,0.18);
  position: relative;
}
.mt2__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 0.92;
  min-width: 5.4rem;
  transition: color 0.35s;
}
.mt2__stat-num sup {
  font-size: 0.5em;
  vertical-align: super;
}
.mt2__stat:hover .mt2__stat-num { color: #A47149; }
.mt2__stat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5e4b3c;
  line-height: 1.55;
}
.mt2__stat-icon {
  width: 1.83rem;
  height: 1.83rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #a47149;
  opacity: 0.95;
}
.mt2__stat-icon svg {
  width: 100%;
  height: 100%;
}
.mt2__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  padding: 1.05rem 2.35rem;
  background: var(--ink);
  color: #F7F3EE;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: fit-content;
  min-height: 3.65rem;
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  box-shadow: 0 14px 34px rgba(16,12,8,0.14);
  transition: box-shadow 0.4s, transform 0.3s;
}
.mt2__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #A47149;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.mt2__cta:hover::before { transform: scaleX(1); }
.mt2__cta span, .mt2__cta svg { position: relative; z-index: 1; }
.mt2__cta svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.mt2__cta:hover { box-shadow: 0 12px 36px rgba(164,113,73,0.3); transform: translateY(-1px); }
.mt2__cta:hover svg { transform: translateX(3px); }

/* ── RIGHT VIDEO ── */
.mt2__video-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 2.5rem 2.2rem 1.2rem;
  min-height: 100%;
}
.mt2__video-inner {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: min(820px, calc(100vh - 4rem));
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(16,12,8,0.1), 0 32px 80px rgba(16,12,8,0.08);
}
.mt2__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: contrast(1.04) saturate(0.78);
}

@media (max-width: 900px) {
  .mt2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .mt2__video-wrap { padding: 0 1.5rem 2.5rem; }
  .mt2__video-inner { height: 55vw; min-height: 240px; }
  .mt2__panel {
    padding: 2.5rem clamp(1.5rem, 5vw, 3rem) 2rem;
    gap: 0;
  }
  .mt2__panel::before { display: none; }
  .mt2__panel::after { display: none; }
  .mt2__title {
    font-size: clamp(2.6rem, 10vw, 4.2rem);
    max-width: none;
  }
  .mt2__eyebrow-text,
  .mt2__stat-label,
  .mt2__cta {
    letter-spacing: 0.12em;
  }
  .mt2__body,
  .mt2__stats {
    width: 100%;
    max-width: none;
  }
  .mt2__cta {
    width: 100%;
    letter-spacing: 0.18em;
  }
}



/* ---- Extracted from index.html: Mastery section + Cracked Restoration ---- */
      .mastery-section {
        --mastery-bg: #FCFAF8;
        --mastery-ink: #101817;
        --mastery-accent: #b89064;
        position: relative;
        z-index: 50;
        overflow: hidden;
        padding: 0;
        background: var(--mastery-bg);
      }

      .mastery-curves-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        opacity: 0.7;
      }

      .mastery-curves-bg svg {
        width: 100%;
        height: 100%;
      }

      .mastery-scroll-shell {
        position: relative;
        background: var(--mastery-bg);
      }

      .mastery-pin-wrap {
        position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: clamp(1.2rem, 2.5vw, 2.5rem) 0 clamp(1.5rem, 3vw, 2rem);
        background: var(--mastery-bg);
      }

      .mastery-header {
        position: relative;
        z-index: 10;
        width: min(92vw, 1100px);
        margin: 0 auto;
        pointer-events: none;
        will-change: transform, opacity;
      }

      .mastery-header__inner {
        display: flex;
        align-items: flex-end;
        gap: clamp(1.5rem, 3vw, 3rem);
      }

      .mastery-header__left {
        flex-shrink: 0;
        line-height: 1;
      }

      .mastery-header__numeral {
        font-family: 'Playfair Display', Georgia, serif;
        font-style: italic;
        font-size: clamp(4rem, 8vw, 9rem);
        font-weight: 400;
        color: transparent;
        -webkit-text-stroke: 1px rgba(184, 144, 100, 0.45);
        text-stroke: 1px rgba(184, 144, 100, 0.45);
        display: block;
        line-height: 0.85;
        letter-spacing: -0.03em;
        user-select: none;
      }

      .mastery-header__right {
        flex: 1;
        padding-bottom: 0.25rem;
      }

      .mastery-eyebrow {
        display: inline-block;
        margin: 0 0 0.6rem;
        color: #b89064;
        font-size: 0.9375rem;
        font-weight: 500;
        letter-spacing: 0.45em;
        text-transform: uppercase;
        opacity: 0.9;
      }

      .mastery-title {
        margin: 0;
        color: var(--mastery-ink);
        font-family: 'Playfair Display', Georgia, serif;
        font-size: clamp(1.35rem, 2.2vw, 2.4rem);
        font-weight: 400;
        line-height: 1.22;
        letter-spacing: 0.01em;
        text-wrap: balance;
      }

      .mastery-title em {
        font-style: italic;
        color: #b89064;
      }

      .mastery-header__rule {
        margin-top: 1rem;
        height: 1px;
        width: min(100%, 34rem);
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: linear-gradient(90deg, #b89064 0%, rgba(184,144,100,0.42) 22%, rgba(184,144,100,0.12) 68%, transparent 100%);
      }

      .mastery-header__rule::after {
        content: "";
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, rgba(184,144,100,0.2) 0%, rgba(184,144,100,0.08) 58%, transparent 100%);
      }

      .mastery-header__rule-dot {
        flex: 0 0 auto;
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(184,144,100,0.95) 0%, rgba(184,144,100,0.55) 58%, rgba(184,144,100,0.08) 100%);
        box-shadow: 0 0 0 0.45rem rgba(184,144,100,0.08);
      }

      .mastery-stage {
        min-height: auto;
        display: flex;
        align-items: center;
        overflow: visible;
        margin-top: clamp(0.4rem, 0.8vw, 0.75rem);
        padding: 0;
      }

      .mastery-perspective {
        width: 100%;
        perspective: 1200px;
        perspective-origin: 50% 50%;
      }

      .mastery-track {
        display: flex;
        gap: clamp(1.25rem, 2.8vw, 2.5rem);
        width: max-content;
        padding: 0 12vw 0 7vw;
        transform-style: preserve-3d;
        will-change: transform;
      }

      .mastery-card {
        position: relative;
        flex: 0 0 auto;
        width: clamp(250px, 24vw, 350px);
        aspect-ratio: 0.76;
        transform-origin: center center;
        will-change: transform, opacity;
      }

      .mastery-card--clone {
        opacity: 0.98;
      }

      .mastery-card__media {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 1.75rem;
        background: #141414;
        box-shadow: var(--mastery-card-shadow);
      }

      .mastery-card__media::after {
        content: "";
        position: absolute;
        inset: 0;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: inherit;
        pointer-events: none;
      }

      .mastery-card__image,
      .mastery-card__shade,
      .mastery-card__topline {
        position: absolute;
        inset: 0;
      }

      .mastery-card__image {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        transform: scale(1.02);
        filter: saturate(0.94) contrast(1.03);
      }

      .mastery-card__shade {
        background:
          linear-gradient(180deg, rgba(11, 12, 13, 0.1) 0%, rgba(11, 12, 13, 0.16) 34%, rgba(11, 12, 13, 0.82) 100%);
      }

      .mastery-card__topline {
        inset: 1rem 1rem auto 1rem;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
        opacity: 0.72;
      }

      .mastery-card__copy {
        position: absolute;
        left: clamp(1.2rem, 2vw, 1.8rem);
        right: 1rem;
        bottom: clamp(1.2rem, 2vw, 1.8rem);
        z-index: 2;
      }

      .mastery-card__index {
        display: inline-block;
        margin-bottom: 0.75rem;
        color: rgba(255, 255, 255, 0.76);
        font-size: 0.9375rem;
        font-weight: 500;
        letter-spacing: 0.26em;
        text-transform: uppercase;
      }

      .mastery-card__copy p {
        margin: 0;
        color: #fff;
        font-family: Montserrat, sans-serif;
        font-size: clamp(1.3rem, 2.1vw, 2.35rem);
        font-weight: 700;
        line-height: 0.98;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        text-wrap: balance;
      }

      .mastery-cta-wrap {
        position: relative;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: min(92vw, 1100px);
        margin: clamp(1.25rem, 2.5vw, 2rem) auto 0;
        will-change: transform, opacity;
      }

      .mastery-cta {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 1.1rem;
        border: 1px solid rgba(16, 24, 23, 0.75);
        border-radius: 0;
        background: transparent;
        color: var(--mastery-ink);
        padding: 0.85rem 1.4rem 0.85rem 1.6rem;
        font-family: Montserrat, sans-serif;
        font-size: 0.9375rem;
        font-weight: 500;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        cursor: pointer;
        overflow: hidden;
        transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.45s ease;
      }

      .mastery-cta__fill {
        position: absolute;
        inset: 0;
        background: var(--mastery-ink);
        transform: translateX(-102%);
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 0;
      }

      .mastery-cta__label {
        position: relative;
        z-index: 1;
        white-space: nowrap;
      }

      .mastery-cta__arrow {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.6rem;
        height: 1.6rem;
        border: 1px solid currentColor;
        border-radius: 50%;
        flex-shrink: 0;
        transition: transform 0.35s ease, border-color 0.45s ease;
      }

      .mastery-cta__arrow svg {
        display: block;
        transition: transform 0.35s ease;
      }

      .mastery-cta:hover .mastery-cta__fill {
        transform: translateX(0);
      }

      .mastery-cta:hover {
        color: #fff;
        border-color: var(--mastery-ink);
      }

      .mastery-cta:hover .mastery-cta__arrow {
        transform: rotate(0deg);
        border-color: rgba(255,255,255,0.5);
      }

      .mastery-cta:hover .mastery-cta__arrow svg {
        transform: translate(1px, -1px);
      }

      @media (max-width: 768px) {
        .mastery-section {
          padding: 0;
          overflow: hidden;
        }

        .mastery-scroll-shell {
          overflow: hidden;
        }

        .mastery-pin-wrap {
          min-height: auto;
          padding: 2rem 0 1.25rem;
          overflow: hidden;
        }

        .mastery-header {
          width: auto;
          padding: 0 1.25rem;
        }

        .mastery-header__inner {
          gap: 1rem;
          align-items: flex-end;
        }

        .mastery-header__numeral {
          font-size: clamp(3rem, 14vw, 5rem);
        }

        .mastery-title {
          font-size: clamp(1.3rem, 5vw, 2rem);
        }

        .mastery-header__rule {
          width: min(12rem, 100%);
        }

        .mastery-cta-wrap {
          width: auto;
          padding: 0 1.25rem;
          justify-content: flex-start;
        }

        .mastery-stage {
          min-height: auto;
          margin-top: 2rem;
          padding: 0;
          overflow: visible;
        }

        .mastery-perspective {
          perspective: none;
        }

        .mastery-track {
          width: max-content;
          overflow: visible;
          padding: 0 5vw 1rem;
          will-change: transform;
        }

        .mastery-track::-webkit-scrollbar {
          display: none;
        }

        .mastery-card {
          width: min(68vw, 260px);
          flex-shrink: 0;
        }

        .mastery-card__media {
          border-radius: 1.3rem;
        }

        .mastery-card__index {
          margin-bottom: 0.55rem;
        }

        .mastery-cta-wrap {
          display: block;
          padding: 1.75rem 1.25rem 0;
          margin-top: 1.25rem;
        }

        .mastery-cta {
          width: 100%;
          justify-content: space-between;
        }
      }
      /* Section: Cracked Leather Restoration - Redesign */
      .cracked-restoration {
        position: relative;
        background-color: var(--bg-cream);
        padding: clamp(1.5rem, 3vw, 2.75rem) 0;
        overflow: visible;
      }

      .cracked-restoration::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        opacity: 0.04;
        pointer-events: none;
      }

      .cracked-restoration__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: clamp(2rem, 4vw, 4rem);
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 clamp(1.25rem, 4vw, 5rem);
      }

      @media (min-width: 1024px) {
        .cracked-restoration__inner {
          grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
          gap: clamp(1.75rem, 3vw, 3.5rem);
          align-items: center;
        }
      }

      @media (min-width: 1024px) {
        .cracked-restoration__inner--reversed {
          grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        }
        .cracked-restoration__inner--reversed .cracked-restoration__content {
          order: 1;
        }
        .cracked-restoration__inner--reversed .cracked-restoration__media {
          order: 2;
        }
        section[aria-label="Leather Sofa Stain Removal in Delhi NCR"] .cracked-restoration__media {
          order: 1;
        }
        section[aria-label="Leather Sofa Stain Removal in Delhi NCR"] .cracked-restoration__content {
          order: 2;
        }
      }

      .cracked-restoration__media {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      @media (min-width: 1024px) {
        .cracked-restoration__media {
          display: flex;
          flex-direction: column;
          justify-content: center;
        }
        .cracked-restoration__frame {
          aspect-ratio: 1.15 / 1;
          min-height: clamp(360px, 34vw, 560px);
        }
      }

      .cracked-restoration__frame {
        position: relative;
        aspect-ratio: 1.15 / 1;
        background: var(--ink);
        overflow: hidden;
        box-shadow: 0 40px 100px -20px rgba(16, 12, 8, 0.15);
        border: 1px solid rgba(193, 166, 141, 0.1);
        border-radius: 2.5rem;
      }

      .cracked-restoration__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.95;
        transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
        border-radius: 2.5rem;
      }

      .cracked-restoration__media:hover .cracked-restoration__image {
        transform: scale(1.04);
      }

      .cracked-restoration__seal {
        position: absolute;
        top: 2rem;
        right: 2rem;
        display: flex;
        align-items: center;
        gap: 1.25rem;
        background: rgba(16, 12, 8, 0.85);
        backdrop-filter: blur(12px);
        padding: 0.9rem 1.75rem;
        border: 1px solid rgba(193, 166, 141, 0.35);
        color: #fff;
        font-size: 0.9375rem;
        font-weight: 500;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        z-index: 10;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border-radius: 9999px;
      }

      .cracked-restoration__seal-line {
        width: 1.8rem;
        height: 1px;
        background: var(--champagne);
      }

      .cracked-restoration__chip {
        position: absolute;
        background: #fff;
        padding: 1.1rem 1.35rem;
        box-shadow: 0 20px 50px rgba(16, 12, 8, 0.08);
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        z-index: 20;
        pointer-events: none;
        width: min(82%, 320px);
        border: 1px solid rgba(193, 166, 141, 0.12);
        border-radius: 2rem;
      }

      .cracked-restoration__chip--top {
        top: 1.4rem;
        left: 1.4rem;
      }

      .cracked-restoration__chip--bottom {
        right: 1.4rem;
        bottom: 1.4rem;
      }

      @media (max-width: 1023px) {
        .cracked-restoration__chip {
          position: relative;
          margin: 1rem auto 0;
          left: auto;
          right: auto;
          top: auto;
          bottom: auto;
          width: min(92%, 320px);
          max-width: 280px;
          box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        .cracked-restoration__chip--top { margin-top: 1.5rem; order: 2; }
        .cracked-restoration__chip--bottom { margin-top: 1rem; order: 3; }
        .cracked-restoration__media { display: flex; flex-direction: column; }
      }

      .cracked-restoration__chip-value {
        color: var(--champagne);
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: 0.9rem;
        font-weight: 500;
      }

      .cracked-restoration__chip-label {
        font-size: 0.9375rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        color: var(--ink);
        opacity: 0.8;
      }

      .cracked-restoration__content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        position: relative;
        z-index: 35;
      }

      .cracked-restoration__panel {
        background: #fff;
        padding: clamp(1.5rem, 3vw, 2.6rem);
        box-shadow: 0 50px 110px -30px rgba(16, 12, 8, 0.12);
        border: 1px solid rgba(193, 166, 141, 0.12);
        border-radius: 3rem;
        width: 100%;
      }

      .cracked-restoration__eyebrow {
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9375rem;
        font-weight: 600;
        letter-spacing: 0.38em;
        text-transform: uppercase;
        color: #8C8276;
        margin-bottom: 0.8rem;
      }

      .cracked-restoration__title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.75rem, 2.7vw, 2.7rem);
        font-weight: 400;
        line-height: 1;
        color: var(--ink);
        margin-bottom: 1rem;
        letter-spacing: -0.01em;
      }

      .cracked-restoration__title em {
        font-style: italic;
        font-weight: 400;
        display: block;
        color: var(--champagne);
        margin-top: 0.2rem;
      }

      .cracked-restoration__body {
        font-size: 0.9375rem;
        font-weight: 400;
        line-height: 1.65;
        color: rgba(16, 12, 8, 0.7);
        margin-bottom: 1.35rem;
      }

      .cracked-restoration__metrics {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin-bottom: 1.5rem;
        padding-left: 1.4rem;
        border-left: 1px solid rgba(193, 166, 141, 0.25);
      }

      .cracked-restoration__metric {
        display: flex;
        flex-direction: column;
      }

      .cracked-restoration__metric-value {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9375rem;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--ink);
        margin-bottom: 0.25rem;
      }

      .cracked-restoration__metric-label {
        font-size: 0.9375rem;
        font-weight: 400;
        line-height: 1.4;
        color: rgba(16, 12, 8, 0.6);
      }

      .cracked-restoration__actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.4rem;
      }

      @media (max-width: 1023px) {
        .cracked-restoration {
          padding: 2rem 0;
        }

        .cracked-restoration__panel {
          border-radius: 2rem;
        }

        .cracked-restoration__actions {
          gap: 1.25rem;
        }
      }

      .cracked-restoration__secondary {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9375rem;
        font-weight: 600;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--ink);
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        position: relative;
        opacity: 0.8;
        transition: opacity 0.4s ease;
      }

      .cracked-restoration:hover .cracked-restoration__secondary {
        opacity: 1;
      }

      .cracked-restoration__secondary::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 1px;
        background: var(--champagne);
        transform: scaleX(0.3);
        transform-origin: left;
        transition: transform 0.6s var(--ease);
      }

      .cracked-restoration__secondary:hover::after {
        transform: scaleX(1);
      }

/* ---- Extracted from index.html: Gallery / Master Card ---- */
      /* Ensure no scrollbars on the track */
      .gallery-pin-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .gallery-stage {
        padding-top: clamp(10rem, 22vh, 15rem);
        padding-bottom: min(10vh, 90px);
      }
      #gallery-track {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .master-card {
        position: relative;
        flex-shrink: 0;
        width: clamp(240px, 27vw, 430px);
        aspect-ratio: 0.72;
        transform-origin: center 70%;
      }
      .master-card__frame {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: #111;
        box-shadow: 0 40px 80px -48px rgba(31, 24, 18, 0.55);
      }
      .master-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.95) contrast(1.04);
      }
      .master-card__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(14, 22, 22, 0.82) 0%, rgba(14, 22, 22, 0.24) 28%, rgba(14, 22, 22, 0) 58%);
      }
      .master-card__content {
        position: absolute;
        left: 1.6rem;
        right: 1rem;
        bottom: 1.35rem;
        z-index: 2;
      }
      .master-card__title {
        margin: 0;
        color: #fff;
        font-family: Montserrat, sans-serif;
        font-size: clamp(1.6rem, 2.7vw, 3.2rem);
        font-weight: 700;
        line-height: 0.92;
        letter-spacing: -0.06em;
        text-transform: uppercase;
      }
      .master-card__badge {
        position: absolute;
        left: 13%;
        top: 48%;
        z-index: 2;
        width: 3.75rem;
        height: 3.75rem;
        border-radius: 9999px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #162727;
        color: rgba(255, 255, 255, 0.94);
        font-size: 2rem;
        line-height: 1;
        box-shadow: 0 18px 36px -24px rgba(0, 0, 0, 0.9);
      }
      .master-card__badge::before {
        content: "";
        position: absolute;
        inset: -0.55rem;
        border: 1px dashed rgba(22, 39, 39, 0.32);
        border-radius: inherit;
      }
      #gallery-track::-webkit-scrollbar {
        display: none;
      }
      .gallery-header,
      .gallery-cta,
      .master-card,
      #gallery-track {
        will-change: transform, opacity;
      }
      /* Maintain aspect ratios and card sizes */
      @media (max-width: 768px) {
        .master-card {
          width: min(78vw, 360px) !important;
        }
        #scroll-height-container {
          height: auto !important; /* Disabling pin on mobile */
        }
        #gallery-track {
          flex-direction: column !important;
          align-items: center !important;
          width: 100% !important;
          transform: none !important;
          padding: 12rem 0 11rem !important;
          gap: 2rem !important;
        }
        .gallery-header {
          top: 3.5rem !important;
        }
        .gallery-stage {
          height: auto !important;
          padding-top: 0 !important;
          padding-bottom: 0 !important;
        }
        .gallery-cta {
          position: relative !important;
          left: auto !important;
          bottom: auto !important;
          transform: none !important;
          padding-bottom: 3rem;
          opacity: 1 !important;
        }
        .master-card__badge {
          width: 3.1rem;
          height: 3.1rem;
          font-size: 1.7rem;
        }
        .master-card__content {
          left: 1.25rem;
          right: 0.85rem;
          bottom: 1rem;
        }
      }

/* ---- Extracted from index.html: Restoration Pathway ---- */

    /* ══ PW2 — EDITORIAL ASYMMETRIC PROCESS SECTION ══ */
    .pw2 {
      background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(237, 222, 201, 0.5), transparent),
        radial-gradient(ellipse 60% 50% at 85% 90%, rgba(219, 196, 170, 0.35), transparent),
        linear-gradient(180deg, #fefbf7 0%, #f7efe5 100%);
    }

    .pw2__grain {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
      opacity: 0.5;
    }

    .pw2__container {
      max-width: 82rem;
      padding: 6rem 3rem 5.5rem;
    }

    /* ── HEADER: split layout ── */
    .pw2__header {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 5rem;
    }

    .pw2__kicker {
      margin: 0 0 1.2rem;
      font-family: Montserrat, sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: #9b7654;
    }

    .pw2__title {
      margin: 0;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(3.2rem, 5.8vw, 5.8rem);
      font-weight: 400;
      line-height: 0.94;
      letter-spacing: -0.04em;
      color: #1e1510;
    }

    .pw2__title-italic {
      font-style: italic;
      color: #9f764a;
      font-weight: 400;
    }

    .pw2__header-right {
      padding-bottom: 0.5rem;
    }

    .pw2__lead {
      margin: 0;
      font-family: Montserrat, sans-serif;
      font-size: 1.02rem;
      font-weight: 400;
      line-height: 1.9;
      color: #5f4a39;
    }

    .pw2__header-rule {
      margin-top: 1.8rem;
      height: 1px;
      background: linear-gradient(90deg, rgba(164, 122, 82, 0.35), transparent 70%);
    }

    /* ── TIMELINE connector ── */
    .pw2__timeline {
      position: relative;
      height: 2rem;
      margin-bottom: 3rem;
      display: flex;
      align-items: center;
    }

    .pw2__timeline-line {
      position: absolute;
      left: 8%;
      right: 8%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(164, 122, 82, 0.3) 15%, rgba(164, 122, 82, 0.3) 85%, transparent);
    }

    .pw2__timeline-dot {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #c4a47a;
      border: 2px solid #fefbf7;
      box-shadow: 0 0 0 3px rgba(164, 122, 82, 0.18);
      transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 400ms ease;
    }

    .pw2__timeline-dot--1 { left: 16.66%; }
    .pw2__timeline-dot--2 { left: 50%; transform: translateX(-50%); }
    .pw2__timeline-dot--3 { right: 16.66%; }

    /* ── STAGES GRID — asymmetric stagger ── */
    .pw2__stages {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.2rem;
      align-items: start;
    }

    .pw2__stage {
      position: relative;
      overflow: hidden;
      border-radius: 1.6rem;
      background: linear-gradient(180deg, rgba(255, 253, 250, 0.97), rgba(248, 240, 231, 0.95));
      border: 1px solid rgba(189, 158, 127, 0.14);
      box-shadow:
        0 2px 8px rgba(92, 59, 28, 0.04),
        0 24px 56px rgba(92, 59, 28, 0.08);
      transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 650ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .pw2__stage:hover {
      transform: translateY(-8px);
      box-shadow:
        0 4px 12px rgba(92, 59, 28, 0.06),
        0 32px 72px rgba(92, 59, 28, 0.12);
    }

    /* Stagger: card 2 drops down for asymmetry */
    .pw2__stage--2 {
      margin-top: 3.5rem;
    }

    /* Watermark number */
    .pw2__stage-watermark {
      position: absolute;
      top: -0.4rem;
      right: 1rem;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 8.5rem;
      font-weight: 400;
      line-height: 1;
      color: rgba(164, 122, 82, 0.06);
      pointer-events: none;
      z-index: 0;
      letter-spacing: -0.06em;
    }

    /* Image */
    .pw2__stage-img-wrap {
      position: relative;
      z-index: 1;
      aspect-ratio: 4 / 4.5;
      overflow: hidden;
      margin: 0.7rem 0.7rem 0;
      border-radius: 1.1rem;
    }

    .pw2__stage-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .pw2__stage:hover .pw2__stage-img {
      transform: scale(1.04);
    }

    /* Content */
    .pw2__stage-content {
      position: relative;
      z-index: 1;
      padding: 1.5rem 1.5rem 1.8rem;
    }

    .pw2__stage-meta {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 0.9rem;
    }

    .pw2__stage-num {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: rgba(159, 118, 74, 0.5);
      letter-spacing: -0.04em;
    }

    .pw2__stage-divider {
      width: 1.5rem;
      height: 1px;
      background: rgba(164, 122, 82, 0.3);
    }

    .pw2__stage-label {
      font-family: Montserrat, sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #9b7654;
    }

    .pw2__stage-title {
      margin: 0;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.7rem, 2vw, 2.2rem);
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: #1e1510;
    }

    .pw2__stage-text {
      margin: 1rem 0 0;
      font-family: Montserrat, sans-serif;
      font-size: 0.94rem;
      font-weight: 400;
      line-height: 1.82;
      color: #5d4939;
    }

    /* Tags */
    .pw2__stage-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin: 1.2rem 0 0;
      padding: 1rem 0 0;
      border-top: 1px solid rgba(183, 150, 116, 0.12);
      list-style: none;
    }

    .pw2__stage-tags li {
      font-family: Montserrat, sans-serif;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #8a6748;
      padding: 0.38rem 0.75rem;
      border-radius: 2rem;
      border: 1px solid rgba(164, 122, 82, 0.16);
      background: rgba(164, 122, 82, 0.04);
      transition: background 300ms ease, border-color 300ms ease;
    }

    .pw2__stage:hover .pw2__stage-tags li {
      background: rgba(164, 122, 82, 0.08);
      border-color: rgba(164, 122, 82, 0.25);
    }

    /* ── CTA ── */
    .pw2__actions {
      display: flex;
      justify-content: center;
      margin-top: 4.5rem;
    }

    .pw2__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.85rem;
      padding: 1.1rem 2.8rem;
      border: none;
      border-radius: 0.35rem;
      background: #6b4226;
      box-shadow: 0 4px 18px rgba(107, 66, 38, 0.28), 0 1px 3px rgba(0,0,0,0.12);
      font-family: Montserrat, sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #f5ede3;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 300ms ease, box-shadow 300ms ease;
    }

    .pw2__cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: #7d4f2e;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .pw2__cta:hover::before { transform: scaleX(1); }
    .pw2__cta span, .pw2__cta svg { position: relative; z-index: 1; }

    .pw2__cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(107, 66, 38, 0.38), 0 2px 6px rgba(0,0,0,0.14);
      color: #fff9f3;
    }

    .pw2__cta:active {
      transform: translateY(0);
      box-shadow: 0 2px 10px rgba(107, 66, 38, 0.25);
    }

    /* ── SWIPE HINT — mobile only ── */
    .pw2__swipe-hint { display: none; }

    /* ── TABLET ── */
    @media (max-width: 1023px) {
      .pw2__container { padding: 4rem 2rem 3.5rem; }
      .pw2__header {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3.5rem;
      }
      .pw2__timeline { display: none; }
      .pw2__stages { grid-template-columns: 1fr; gap: 1.6rem; }
      .pw2__stage--2 { margin-top: 0; }
    }

    /* ── MOBILE ── */
    @media (max-width: 640px) {
      .pw2__container { padding: 2rem 1.25rem 2rem; }

      .pw2__kicker {
        font-size: 0.52rem;
        letter-spacing: 0.28em;
        margin-bottom: 0.4rem;
      }

      .pw2__title {
        font-size: clamp(1.7rem, 9.5vw, 2.2rem);
        line-height: 1.08;
      }

      .pw2__lead { display: none; }
      .pw2__header-rule { display: none; }
      .pw2__header { margin-bottom: 1.2rem; }

      /* Horizontal snap scroll strip */
      .pw2__stages {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.6rem;
        padding-bottom: 0.75rem;
        margin: 0 -1.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        scrollbar-width: none;
      }
      .pw2__stages::-webkit-scrollbar { display: none; }

      .pw2__stage {
        flex: 0 0 62vw;
        max-width: 260px;
        height: 72vw;
        max-height: 300px;
        min-height: 240px;
        scroll-snap-align: start;
        border-radius: 0.85rem;
        display: block;
      }

      .pw2__stage--2 { margin-top: 0; }
      .pw2__stage-watermark { display: none; }

      .pw2__stage-img-wrap {
        position: absolute;
        inset: 0;
        margin: 0;
        border-radius: 0;
        aspect-ratio: unset;
      }

      .pw2__stage::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(8,5,2,0.92) 0%, rgba(8,5,2,0.4) 50%, rgba(8,5,2,0.05) 100%);
        z-index: 1;
        pointer-events: none;
      }

      .pw2__stage-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        padding: 0.75rem 0.85rem;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
      }

      .pw2__stage-meta { margin-bottom: 0.15rem; gap: 0.4rem; }
      .pw2__stage-num { font-size: 0.5rem; color: rgba(193,166,141,1); }
      .pw2__stage-divider { width: 0.8rem; background: rgba(193,166,141,0.4); }
      .pw2__stage-label { font-size: 0.48rem; color: rgba(193,166,141,0.75); }
      .pw2__stage-title { font-size: 0.9rem; line-height: 1.2; color: #f5ede3; }
      .pw2__stage-text { display: none; }
      .pw2__stage-tags { display: none; }

      .pw2__stages::after {
        content: '';
        flex: 0 0 0.5rem;
        display: block;
      }

      /* Swipe hint */
      .pw2__swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.7rem;
      }
      .pw2__swipe-hint span {
        display: block;
        width: 0.35rem;
        height: 0.35rem;
        border-radius: 50%;
        background: rgba(193,166,141,0.35);
      }
      .pw2__swipe-hint span:first-child {
        background: rgba(193,166,141,0.9);
        width: 1.2rem;
        border-radius: 1rem;
      }
      .pw2__swipe-label {
        font-size: 0.48rem;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: rgba(193,166,141,0.55);
        margin-left: 0.2rem;
      }

      .pw2__actions { margin-top: 1.1rem; }
      .pw2__cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.7rem;
        letter-spacing: 0.18em;
      }
    }

    /* ── PW2 — old class compat shim (remove later) ── */
    .restoration-pathway {
      background:
        radial-gradient(circle at top left, rgba(232, 208, 181, 0.48), transparent 34%),
        radial-gradient(circle at bottom right, rgba(208, 185, 160, 0.38), transparent 28%),
        linear-gradient(180deg, #fffaf4 0%, #f7efe5 100%);
      will-change: transform;
    }

    .restoration-pathway__backdrop {
      background: linear-gradient(180deg, rgba(183, 146, 104, 0.05), rgba(183, 146, 104, 0));
    }

    .restoration-pathway__grain {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }

    .restoration-pathway__orb {
      width: 28rem;
      height: 28rem;
      border-radius: 999px;
      filter: blur(80px);
      opacity: 0;
    }

    .restoration-pathway__orb--left {
      left: -10rem;
      top: -8rem;
      background: rgba(237, 222, 201, 0.95);
    }

    .restoration-pathway__orb--right {
      right: -8rem;
      bottom: -10rem;
      background: rgba(219, 189, 159, 0.72);
    }

    .restoration-pathway__frame {
      background: linear-gradient(90deg, transparent, rgba(171, 126, 78, 0.32), transparent);
    }

    .restoration-pathway .process-header {
      display: grid;
      gap: 2rem;
      max-width: 58rem;
      margin-bottom: 5rem;
    }

    .restoration-pathway .process-header > div:first-child {
      gap: 1.15rem !important;
      margin-bottom: 0 !important;
    }

    .restoration-pathway .process-header > div:first-child span:first-child {
      width: 3.5rem !important;
      background: rgba(185, 147, 99, 0.75) !important;
    }

    .restoration-pathway .process-header > div:first-child p {
      color: #9d7851 !important;
      font-style: normal !important;
      letter-spacing: 0.48em !important;
    }

    .restoration-pathway .process-header > div:first-child span:last-child {
      display: none !important;
    }

    .restoration-pathway .process-header h2 {
      color: #221814 !important;
    }

    .restoration-pathway .process-header h2 > span:first-child {
      color: rgba(171, 133, 96, 0.8) !important;
      letter-spacing: 0.34em !important;
      font-style: italic !important;
      margin-bottom: 1.1rem !important;
    }

    .restoration-pathway .process-header h2 > span:nth-child(2) {
      color: #221814 !important;
      line-height: 0.9 !important;
    }

    .restoration-pathway .process-header h2 > span:nth-child(2) em {
      color: #a27644 !important;
      font-style: normal !important;
    }

    .restoration-pathway .process-header h2 > span:last-child {
      color: #221814 !important;
      line-height: 0.9 !important;
    }

    .restoration-pathway .process-header [aria-hidden="true"] {
      color: rgba(201, 174, 137, 0.2) !important;
    }

    .restoration-pathway .process-header > div:last-child {
      max-width: 40rem !important;
      margin-top: 0 !important;
      padding-left: 1.5rem;
      border-left: 1px solid rgba(171, 126, 78, 0.22);
    }

    .restoration-pathway .process-header > div:last-child span {
      display: none !important;
    }

    .restoration-pathway .process-header > div:last-child p {
      color: #6d5644 !important;
      font-style: italic !important;
    }

    .restoration-pathway .process-cards {
      position: relative;
    }

    .restoration-pathway .process-cards > div:first-child {
      top: 2.5rem !important;
      background: linear-gradient(90deg, rgba(171, 126, 78, 0), rgba(171, 126, 78, 0.26), rgba(171, 126, 78, 0)) !important;
    }

    .restoration-pathway .process-cards > div:last-child {
      gap: 2rem !important;
    }

    .restoration-pathway .process-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(171, 126, 78, 0.16);
      background: linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(249, 240, 230, 0.92));
      box-shadow: 0 30px 70px rgba(92, 59, 28, 0.12);
      padding: 1.2rem;
      transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1), box-shadow 0.7s cubic-bezier(0.22,1,0.36,1);
    }

    .restoration-pathway .process-card::before {
      content: "";
      position: absolute;
      inset: 1rem;
      border: 1px solid rgba(171, 126, 78, 0.1);
      pointer-events: none;
    }

    .restoration-pathway .process-card:hover {
      transform: translateY(-10px) !important;
      box-shadow: 0 36px 80px rgba(92, 59, 28, 0.16);
    }

    .restoration-pathway .process-card > div:first-child {
      margin-bottom: 1rem !important;
      padding: 0 0.2rem;
    }

    .restoration-pathway .process-card > div:first-child > span:first-child {
      color: rgba(171, 126, 78, 0.28) !important;
    }

    .restoration-pathway .process-card > div:first-child .block:first-child {
      color: #a47a52 !important;
      font-style: normal !important;
    }

    .restoration-pathway .process-card > div:first-child .block:last-child {
      background: rgba(171, 126, 78, 0.34) !important;
    }

    .restoration-pathway .process-card > div:nth-child(2) {
      aspect-ratio: 4 / 4.8 !important;
      overflow: hidden;
      border: 1px solid rgba(171, 126, 78, 0.12);
    }

    .restoration-pathway .process-card > div:nth-child(2) > div:first-child {
      display: none !important;
    }

    .restoration-pathway .process-card > div:nth-child(2) > img {
      transform: scale(1.01);
    }

    .restoration-pathway .process-card > div:nth-child(2) > div:nth-child(3) {
      background: linear-gradient(180deg, rgba(255, 251, 246, 0) 40%, rgba(44, 27, 17, 0.24) 100%) !important;
    }

    .restoration-pathway .process-card > div:nth-child(2) > div:last-child span {
      border: 1px solid rgba(255, 247, 239, 0.48) !important;
      background: rgba(56, 37, 26, 0.36) !important;
      color: #fff9f0 !important;
      padding: 0.6rem 0.9rem !important;
      letter-spacing: 0.28em !important;
      font-style: normal !important;
    }

    .restoration-pathway .process-card > div:last-child {
      margin-top: 1.4rem !important;
      padding: 0 0.2rem 0.3rem !important;
    }

    .restoration-pathway .process-card h3 {
      color: #241914 !important;
      line-height: 0.98 !important;
    }

    .restoration-pathway .process-card p {
      color: #6f5948 !important;
      font-style: normal !important;
    }

    .restoration-pathway .process-card > div:last-child > div {
      padding-top: 1rem !important;
      border-top: 1px solid rgba(171, 126, 78, 0.16);
      gap: 0.75rem !important;
    }

    .restoration-pathway .process-card > div:last-child > div span:first-child {
      display: none !important;
    }

    .restoration-pathway .process-card > div:last-child > div span:last-child {
      color: #98724d !important;
      font-style: normal !important;
      letter-spacing: 0.28em !important;
      text-transform: uppercase;
    }

    .restoration-pathway .process-card.is-hidden {
      opacity: 0;
      transform: translateY(3rem);
    }

    .restoration-pathway .process-luxury-cta {
      border: 1px solid rgba(58, 40, 30, 0.18) !important;
      background: rgba(255, 250, 245, 0.84) !important;
      color: #2a1d16 !important;
      box-shadow: 0 18px 40px rgba(92, 59, 28, 0.08);
      padding-left: 3.2rem !important;
      padding-right: 3.2rem !important;
      font-style: normal !important;
      letter-spacing: 0.42em !important;
      transition: color 500ms ease, border-color 500ms ease, transform 500ms ease !important;
    }

    .restoration-pathway .process-luxury-cta:hover {
      transform: translateY(-3px);
      border-color: rgba(171, 126, 78, 0.4) !important;
      color: #fffaf5 !important;
    }

    .restoration-pathway .process-luxury-cta > span:first-child {
      background: linear-gradient(135deg, #b7905f 0%, #8f663f 100%) !important;
    }

    @media (max-width: 1023px) {
      .restoration-pathway .process-card {
        transform: none !important;
      }
    }

    @media (max-width: 767px) {
      .restoration-pathway {
        background: linear-gradient(180deg, #fffaf4 0%, #f5ede2 100%);
      }

      .restoration-pathway .process-card {
        padding: 0.95rem;
      }

      .restoration-pathway .process-card > div:last-child > div span:last-child,
      .restoration-pathway .process-card > div:nth-child(2) > div:last-child span,
      .restoration-pathway .process-luxury-cta {
        letter-spacing: 0.22em !important;
      }
    }

    .pathway-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) 18rem;
      gap: 3rem;
      align-items: end;
      margin-bottom: 5.5rem;
    }

    .pathway-kicker {
      margin: 0 0 1.2rem;
      font-family: Montserrat, sans-serif;
      font-size: 0.96rem;
      font-weight: 600;
      letter-spacing: 0.34em;
      text-transform: uppercase;
      color: #8b6849;
    }

    .pathway-title {
      max-width: 9.5em;
      margin: 0;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(3.5rem, 7vw, 7.8rem);
      line-height: 0.92;
      letter-spacing: -0.055em;
      color: #231814;
    }

    .pathway-title span {
      display: block;
      color: #9f764a;
      font-style: italic;
      font-weight: 400;
    }

    .pathway-lead {
      max-width: 38rem;
      margin: 1.8rem 0 0;
      padding-left: 1.4rem;
      border-left: 1px solid rgba(164, 122, 82, 0.24);
      font-family: Montserrat, sans-serif;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.9;
      color: #5f4a39;
    }

    .pathway-hero__note {
      align-self: stretch;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 19rem;
      padding: 1.6rem;
      border: none;
      border-radius: 2rem;
      background: linear-gradient(180deg, rgba(249, 241, 231, 0.96), rgba(243, 231, 218, 0.94));
      box-shadow: 0 26px 70px rgba(120, 85, 49, 0.09);
    }

    .pathway-hero__note-index {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 4.6rem;
      line-height: 0.9;
      letter-spacing: -0.08em;
      color: rgba(159, 118, 74, 0.38);
    }

    .pathway-hero__note-copy {
      margin: 0;
      font-family: Montserrat, sans-serif;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.85;
      color: #5e4938;
    }

    .pathway-stages {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.8rem;
      align-items: start;
    }

    .pathway-stage {
      position: relative;
      overflow: hidden;
      border: none;
      border-radius: 2rem;
      background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(247, 239, 231, 0.94));
      box-shadow: 0 26px 60px rgba(92, 59, 28, 0.1);
      transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .pathway-stage::before {
      content: "";
      position: absolute;
      inset: 1rem;
      border-radius: 1.4rem;
      border: 1px solid rgba(189, 158, 127, 0.12);
      pointer-events: none;
    }

    .pathway-stage::after {
      content: "";
      position: absolute;
      inset: 0;
      background: none;
      pointer-events: none;
    }

    .pathway-stage:hover {
      transform: translateY(-10px);
      box-shadow: 0 36px 80px rgba(92, 59, 28, 0.14);
    }

    .pathway-stage--featured {
      margin-top: 2.25rem;
    }

    .pathway-stage__media {
      aspect-ratio: 4 / 5;
      overflow: hidden;
      border-radius: 1.55rem 1.55rem 0 0;
    }

    .pathway-stage__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 900ms ease;
    }

    .pathway-stage:hover .pathway-stage__image {
      transform: scale(1.05);
    }

    .pathway-stage__body {
      padding: 1.6rem 1.55rem 1.75rem;
    }

    .pathway-stage__meta {
      display: flex;
      align-items: baseline;
      gap: 0.9rem;
      margin-bottom: 1rem;
    }

    .pathway-stage__number {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 3rem;
      line-height: 0.9;
      letter-spacing: -0.08em;
      color: rgba(159, 118, 74, 0.32);
    }

    .pathway-stage__label {
      font-family: Montserrat, sans-serif;
      font-size: 0.96rem;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: #8a6748;
    }

    .pathway-stage__title {
      margin: 0;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.9rem, 2vw, 2.35rem);
      line-height: 0.96;
      letter-spacing: -0.04em;
      color: #221813;
    }

    .pathway-stage__text {
      margin: 1rem 0 0;
      font-family: Montserrat, sans-serif;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.85;
      color: #5d4939;
    }

    .pathway-stage__detail {
      margin: 1.25rem 0 0;
      padding-top: 1rem;
      border-top: 1px solid rgba(183, 150, 116, 0.12);
      font-family: Montserrat, sans-serif;
      font-size: 0.96rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #76583d;
    }

    .pathway-actions {
      display: flex;
      justify-content: center;
      margin-top: 4.75rem;
    }

    .pathway-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.85rem;
      padding: 1.05rem 2.6rem;
      border: none;
      border-radius: 0.35rem;
      background: #6b4226;
      box-shadow: 0 4px 18px rgba(107, 66, 38, 0.28), 0 1px 3px rgba(0,0,0,0.12);
      font-family: Montserrat, sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #f5ede3;
      cursor: pointer;
      transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
    }

    .pathway-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(107, 66, 38, 0.38), 0 2px 6px rgba(0,0,0,0.14);
      background: #7d4f2e;
      color: #fff9f3;
    }

    .pathway-cta:active {
      transform: translateY(0);
      box-shadow: 0 2px 10px rgba(107, 66, 38, 0.25);
    }

    @media (max-width: 1023px) {
      .pathway-hero,
      .pathway-stages {
        grid-template-columns: 1fr;
      }

      .pathway-hero {
        gap: 2rem;
      }

      .pathway-hero__note {
        min-height: auto;
      }

      .pathway-stage--featured {
        margin-top: 0;
      }
    }

    @media (max-width: 767px) {
      .pathway-title {
        max-width: 8.5em;
        font-size: clamp(2.8rem, 14vw, 4.5rem);
      }

      .pathway-stage__body {
        padding: 1.25rem;
      }

      .pathway-stage,
      .pathway-hero__note {
        border-radius: 1.5rem;
      }

      .pathway-kicker,
      .pathway-stage__label,
      .pathway-stage__detail {
        letter-spacing: 0.16em;
      }

      .pathway-cta {
        width: 100%;
      }
    }

    /* ── PROCESS SECTION — MOBILE IMAGE-OVERLAY CARDS ── */
    @media (max-width: 640px) {
      /* Tight section padding — get to cards fast */
      .restoration-pathway .relative.z-10 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
      }

      /* Compact kicker */
      .pathway-kicker {
        font-size: 0.52rem !important;
        letter-spacing: 0.28em !important;
        margin-bottom: 0.4rem !important;
      }

      /* Compact heading */
      .pathway-title {
        font-size: clamp(1.7rem, 9.5vw, 2.2rem) !important;
        max-width: 100% !important;
        line-height: 1.08 !important;
        margin-bottom: 0.6rem !important;
      }

      /* Hide lead paragraph — too verbose on mobile */
      .pathway-lead {
        display: none !important;
      }

      /* Tighter hero gap */
      .pathway-hero__intro {
        gap: 0.5rem !important;
      }

      /* Horizontal snap scroll strip — bleed edge to edge */
      .pathway-stages {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 0.6rem !important;
        padding-bottom: 0.75rem !important;
        margin: 1rem -1.5rem 0 !important;
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        scrollbar-width: none !important;
      }

      .pathway-stages::-webkit-scrollbar {
        display: none !important;
      }

      /* Cards: landscape ratio, 62vw wide → ~1.6 visible at once */
      .pathway-stage {
        flex: 0 0 62vw !important;
        max-width: 260px !important;
        height: 72vw !important;
        max-height: 300px !important;
        min-height: 240px !important;
        scroll-snap-align: start !important;
        border-radius: 0.85rem !important;
        position: relative !important;
        overflow: hidden !important;
        display: block !important;
      }

      /* Image fills card */
      .pathway-stage__media {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
      }

      .pathway-stage__image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
      }

      /* Dark gradient for text readability */
      .pathway-stage::after {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(to top, rgba(8,5,2,0.92) 0%, rgba(8,5,2,0.4) 50%, rgba(8,5,2,0.05) 100%) !important;
        z-index: 1 !important;
        border-radius: 0 !important;
      }

      /* Text overlaid bottom of card */
      .pathway-stage__body {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 2 !important;
        padding: 0.75rem 0.85rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.2rem !important;
      }

      /* Step badge row */
      .pathway-stage__meta {
        display: flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        margin-bottom: 0.15rem !important;
      }

      .pathway-stage__number {
        font-size: 0.5rem !important;
        letter-spacing: 0.22em !important;
        color: rgba(193,166,141,1) !important;
        font-weight: 600 !important;
      }

      .pathway-stage__label {
        font-size: 0.48rem !important;
        letter-spacing: 0.28em !important;
        color: rgba(193,166,141,0.75) !important;
        text-transform: uppercase !important;
      }

      /* Card title */
      .pathway-stage__title {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
        color: #f5ede3 !important;
        margin: 0 !important;
        font-weight: 500 !important;
      }

      /* Detail tags — each / becomes a new line */
      .pathway-stage__text {
        display: none !important;
      }

      .pathway-stage__detail {
        font-size: 0.5rem !important;
        letter-spacing: 0.1em !important;
        color: rgba(193,166,141,0.6) !important;
        margin-top: 0.2rem !important;
        line-height: 1.6 !important;
        white-space: normal !important;
        word-break: break-word !important;
      }

      /* Trailing spacer so last card doesn't hug the edge */
      .pathway-stages::after {
        content: '' !important;
        flex: 0 0 0.5rem !important;
        display: block !important;
      }

      /* Swipe hint — dots + label */
      .pathway-swipe-hint {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin-top: 0.7rem !important;
      }

      .pathway-swipe-hint span {
        display: block !important;
        width: 0.35rem !important;
        height: 0.35rem !important;
        border-radius: 50% !important;
        background: rgba(193,166,141,0.35) !important;
      }

      .pathway-swipe-hint span:first-child {
        background: rgba(193,166,141,0.9) !important;
        width: 1.2rem !important;
        border-radius: 1rem !important;
      }

      .pathway-swipe-label {
        font-size: 0.48rem !important;
        letter-spacing: 0.28em !important;
        text-transform: uppercase !important;
        color: rgba(193,166,141,0.55) !important;
        font-family: inherit !important;
        margin-left: 0.2rem !important;
      }

      /* CTA — tight gap, full width */
      .pathway-actions {
        margin-top: 1.1rem !important;
      }

      .pathway-cta {
        width: 100% !important;
        justify-content: center !important;
        padding: 1rem 1.5rem !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.18em !important;
        border-radius: 0.35rem !important;
      }
    }


/* =====================================================================
   MOBILE RESPONSIVENESS FIXES — phones 320px–480px
   All issues audited and fixed in priority order.
   ===================================================================== */

/* ── FIX 1: NAV MENU — prevent right-panel clipping on 320px phones ── */
.tlr-mobile-menu {
  max-width: min(320px, calc(100vw - 3rem));
  width: 85%;
}

/* ── VERNISSAGE MOBILE ── */
@media (max-width: 600px) {

  /* Section: hidden not clip — lets child scroll container work */
  .vernissage {
    background: #FDFAF6;
    overflow-x: hidden;
  }

  /* Hero: stack vertically */
  .vernissage__hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    grid-template-columns: unset;
  }

  /* Left copy block */
  .vernissage__left {
    border-right: none;
    border-bottom: none;
    padding: 3.5rem 1.5rem 1.5rem;
    align-items: flex-start;
    gap: 0;
  }
  .vernissage__left::after { display: none; }

  .vernissage__tag {
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    margin-bottom: 1.2rem;
    color: #A47149;
  }
  .vernissage__tag::before { width: 1.8rem; }

  .vernissage__title {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    line-height: 0.93;
    margin-bottom: 1.4rem;
    letter-spacing: -0.03em;
  }
  .vernissage__title em {
    font-size: 1.05em;
    margin-top: 0.12em;
  }

  .vernissage__lede {
    font-size: 0.87rem;
    line-height: 1.85;
    margin-bottom: 1.6rem;
    max-width: 100%;
    padding-left: 1rem;
    border-left-color: rgba(164,113,73,0.35);
  }

  .vernissage__rating {
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    margin-bottom: 1rem;
  }
  .vernissage__rating-text { font-size: 0.7rem; letter-spacing: 0.1em; }
  .vernissage__stars svg { width: 12px !important; height: 12px !important; }

  .vernissage__meta { gap: 0.32rem; }
  .vernissage__meta-item {
    font-size: 0.57rem;
    padding: 0.35rem 0.65rem;
    letter-spacing: 0.11em;
  }

  /* Right panel — must NOT clip the scroll track */
  .vernissage__right {
    position: static;
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .vernissage__right::after { display: none; }
  .vernissage__right::before { display: none; }

  /* Track-wrap — must NOT clip */
  .vernissage__track-wrap {
    position: static;
    inset: auto;
    display: block;
    padding: 0;
    overflow: visible;
  }

  /* THE scroll container — overflow-x scroll, snap */
  .vernissage__track {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    width: 100%;
    height: auto !important;
    min-height: 0;
    gap: 1rem;
    padding: 1.25rem 1.5rem 1rem;
    overflow-x: scroll;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1.5rem;
    overscroll-behavior-x: contain;
    /* remove any justify/align-items from desktop */
    justify-content: flex-start;
  }
  .vernissage__track::-webkit-scrollbar { display: none; }

  /* Trailing spacer so last card doesn't hug edge */
  .vernissage__track::after {
    content: '';
    flex: 0 0 1rem;
    display: block;
  }

  /* Cards — reset all desktop absolute positioning */
  .vernissage__frame,
  .vernissage__frame:nth-child(1),
  .vernissage__frame:nth-child(2),
  .vernissage__frame:nth-child(3) {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: auto !important;
    flex: 0 0 76vw;
    width: 76vw;
    max-width: 290px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: none;
  }

  .vernissage__frame-inner {
    border-radius: 1rem;
    padding: 0.6rem;
    box-shadow: 0 2px 8px rgba(90,60,30,0.09), 0 10px 28px rgba(90,60,30,0.12);
  }
  .vernissage__frame-inner img {
    width: 100%;
    display: block;
    border-radius: 0.65rem;
  }

  .vernissage__caption {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    margin-top: 0.55rem;
    margin-left: 0.25rem;
  }

  /* Swipe hint */
  .vernissage__scroll-hint {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1.5rem 1.5rem;
    font-family: Montserrat, sans-serif;
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(164,113,73,0.55);
  }

  /* Stats ledger */
  .vernissage__stats { border-top: 1px solid rgba(193,166,141,0.18); }

  .vernissage__stats-intro {
    flex-direction: column;
    gap: 0.6rem;
    padding: 2.5rem 1.5rem 1.5rem;
    border-bottom-color: rgba(193,166,141,0.12);
  }
  .vernissage__stats-kicker { font-size: 0.58rem; letter-spacing: 0.26em; }
  .vernissage__stats-copy { text-align: left; font-size: 1.1rem; line-height: 1.45; }

  .vernissage__stats-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.5rem 3rem;
    gap: 0;
  }

  .vernissage__stat { padding: 1.25rem 0; }
  .vernissage__stat + .vernissage__stat {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(193,166,141,0.15);
    padding-top: 1.25rem;
  }

  .vernissage__stat-index { font-size: 0.75rem; letter-spacing: 0.3em; opacity: 0.6; }
  .vernissage__stat-num { font-size: clamp(3.5rem, 18vw, 5rem); letter-spacing: -0.06em; line-height: 0.85; }
  .vernissage__stat-label { font-size: 0.65rem; letter-spacing: 0.18em; margin-top: 0.5rem; }
  .vernissage__stat-note { font-size: 0.82rem; line-height: 1.7; margin-top: 0.5rem; max-width: 100%; }
}

/* ── FIX 4: PILLARS — remove ghost left space after num is hidden ── */
@media (max-width: 768px) {
  .pillar-card__content {
    grid-template-columns: 1fr !important;
    padding-left: clamp(1.5rem, 4vw, 2.5rem) !important;
    padding-right: clamp(1.5rem, 4vw, 2.5rem) !important;
  }
  .pillar-card__actions {
    padding-left: 0 !important;
  }
  .pillar-card {
    height: clamp(360px, 58vh, 520px);
  }
}

/* ── FIX 5: MASTERY TRACK — block horizontal overflow at all mobile sizes ── */
@media (max-width: 768px) {
  .mastery-section {
    overflow-x: hidden !important;
  }
  .mastery-scroll-shell,
  .mastery-pin-wrap {
    overflow-x: hidden;
  }
  .mastery-perspective {
    overflow-x: hidden !important;
  }
}

/* ── FIX 6: HERO — tighten line-height + letter-spacing on tiny screens ── */
@media (max-width: 480px) {
  .hero-headline__line--1,
  .hero-headline__line--2 {
    letter-spacing: -0.01em;
    line-height: 1.06;
  }
  .hero-content {
    gap: 0.9rem;
  }
}

/* ── FIX 7: TRUST STATS — wrap dividers earlier at 600px ── */
@media (max-width: 600px) {
  .trust-stats {
    flex-wrap: wrap;
    gap: 1.75rem 2rem;
  }
  .trust-stat__divider {
    display: none;
  }
  .trust-stat {
    flex: 1 1 40%;
    padding: 0;
  }
  .trust-stat__label {
    font-size: 0.94rem;
    max-width: none;
  }
  .trust-body {
    grid-template-columns: 1fr;
  }
}

/* ── FIX 8: RESTORE SECTION — stat badge won't clip off-screen ── */
@media (max-width: 480px) {
  .restore-section__image-col {
    max-width: 100%;
  }
  .restore-section__stat {
    bottom: -10px;
    right: 0.5rem;
    left: auto;
    padding: 0.85rem 1.1rem;
  }
  .restore-section__frame-accent {
    display: none;
  }
}

/* ── FIX 9: POPUP MODAL — visual panel not too short at 480px ── */
@media (max-width: 480px) {
  .popup-modal__visual {
    height: 8.5rem !important;
    min-height: 8.5rem !important;
  }
  .popup-modal__dialog {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

/* ── FIX 10: PILLAR BUTTONS — 44px min tap target + allow text wrap ── */
.pillar-card__btn-primary,
.pillar-card__btn-ghost {
  min-height: 44px;
  white-space: normal;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

/* ── FIX 11: TRUST HEADER — fix vertical writing-mode at 600px not just 900px ── */
@media (max-width: 600px) {
  .trust-header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .trust-header__tag {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.9375rem;
    letter-spacing: 0.28em;
  }
  .trust-header__sub {
    max-width: 100%;
    font-size: 0.96rem;
  }
}

/* ── FIX 12: HERO CTA — full-width buttons on 360px and below ── */
@media (max-width: 360px) {
  .hero-cta-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-btn-primary,
  .hero-btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── FIX 13: TRUST QUOTE MARK — cap at 3rem on small screens ── */
@media (max-width: 480px) {
  .trust-quote__mark {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: -0.5rem;
  }
}

/* ── FIX 14: PILLARS INTRO TAG — flatten vertical text at 600px ── */
@media (max-width: 600px) {
  .pillars-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .pillars-intro__tag {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    padding-bottom: 0;
  }
}

/* ── FIX 15: MASTERY CARDS — tighter padding so first card fully visible ── */
@media (max-width: 768px) {
  .mastery-track {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .mastery-cta-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ── FIX 16: MT2 VIDEO — 16/9 aspect ratio on portrait phone ── */
@media (max-width: 600px) {
  .mt2__video-inner {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: 0;
  }
  .mt2__video-wrap {
    padding: 0 1rem 2rem;
  }
}

/* ── BONUS: section padding tighter on 320px phones ── */
@media (max-width: 380px) {
  .section-inner {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .trust-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .pillars-cards,
  .pillars-intro {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
