@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --color-satin: #F4F4F5;
  --color-graphite: #18181B;
  --color-lead: #E4E4E7;
  --color-steel: #71717A;
  --color-neon: #FFFFFF;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  
  --shadow-sm: 0 2px 8px rgba(24, 24, 27, 0.08);
  --shadow-md: 0 4px 16px rgba(24, 24, 27, 0.12);
  --shadow-lg: 0 8px 32px rgba(24, 24, 27, 0.16);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-graphite);
  background: var(--color-satin);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

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

.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(244, 244, 245, 0.95);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform var(--transition-luxury), background var(--transition-smooth);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  max-width: 75rem;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform var(--transition-smooth);
}

.logo:hover {
  transform: scale(1.02);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-graphite);
  margin: 0.375rem 0;
  transition: all var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-graphite);
  transition: width var(--transition-luxury);
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 50rem;
  transform: translateY(2rem);
  animation: fadeInUp var(--transition-luxury) forwards;
  animation-delay: 0.3s;
}

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

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-steel);
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  transition: all var(--transition-luxury);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width var(--transition-luxury), height var(--transition-luxury);
}

.btn:hover::before {
  width: 300%;
  height: 300%;
}

.btn-primary {
  background: var(--color-neon);
  color: var(--color-graphite);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-graphite);
  border: 1px solid var(--color-graphite);
}

.btn-secondary:hover {
  background: var(--color-graphite);
  color: var(--color-neon);
}

.section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  text-align: center;
  color: var(--color-steel);
  max-width: 40rem;
  margin: 0 auto var(--space-lg);
  font-size: 1rem;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.card {
  background: var(--color-neon);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-luxury);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(24, 24, 27, 0.02) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
  background: var(--color-lead);
}

.card:hover::before {
  opacity: 1;
}

.card-image {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.card-text {
  color: var(--color-steel);
  font-size: 0.875rem;
  line-height: 1.6;
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.asymmetric-content {
  transform: translateX(-2rem);
  transition: all var(--transition-luxury);
}

.asymmetric-content.visible {
  transform: translateX(0);
  opacity: 1;
}

.asymmetric-image {
  position: relative;
  transform: rotate(-2deg) translateY(2rem);
  transition: all var(--transition-luxury);
}

.asymmetric-image.visible {
  transform: rotate(0deg) translateY(0);
  opacity: 1;
}

.asymmetric-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.overlap-section {
  position: relative;
  margin: var(--space-xl) 0;
}

.overlap-bg {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 40%;
  height: 80%;
  background: var(--color-lead);
  border-radius: var(--radius-lg);
  z-index: 0;
  transform: rotate(3deg);
}

.overlap-content {
  position: relative;
  z-index: 1;
  background: var(--color-neon);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 60%;
}

.price-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  margin: var(--space-sm) 0;
}

.price-features {
  list-style: none;
  margin: var(--space-md) 0;
  text-align: left;
}

.price-features li {
  padding: var(--space-xs) 0;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.price-features li::before {
  content: '✓';
  color: var(--color-graphite);
  font-weight: 600;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem var(--space-sm);
  border: 1px solid var(--color-lead);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: var(--color-neon);
  transition: all var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-graphite);
  box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.8125rem;
  color: var(--color-steel);
}

.form-checkbox input {
  margin-top: 0.25rem;
}

.contact-section {
  background: var(--color-neon);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  max-width: 50rem;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--color-satin);
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
}

.contact-item:hover {
  background: var(--color-lead);
  transform: translateX(0.5rem);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--color-graphite);
}

.map-container {
  width: 100%;
  height: 20rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: var(--color-graphite);
  color: var(--color-satin);
  padding: var(--space-md);
  text-align: center;
  font-size: 0.8125rem;
}

.footer-content {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-steel);
  font-size: 0.8125rem;
  transition: color var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-neon);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 27, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--color-neon);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  max-width: 35rem;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-luxury);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-steel);
  transition: color var(--transition-smooth);
}

.modal-close:hover {
  color: var(--color-graphite);
}

.modal-title {
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
}

.modal-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-steel);
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.thank-you-content {
  max-width: 40rem;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-graphite);
  margin-bottom: var(--space-md);
  animation: scaleIn var(--transition-luxury);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.error-content {
  max-width: 40rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--color-graphite) 0%, var(--color-steel) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: all var(--transition-luxury);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: all var(--transition-luxury);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(3rem);
  transition: all var(--transition-luxury);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-luxury);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 48rem) {
  .asymmetric-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 48rem) {
  .nav-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-neon);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-luxury);
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav a {
    font-size: 1.125rem;
    padding: var(--space-sm);
  }
  
  .overlap-content {
    max-width: 100%;
  }
  
  .overlap-bg {
    width: 60%;
    height: 60%;
  }
}

@media (max-width: 30rem) {
  :root {
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  .hero {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .card {
    padding: var(--space-sm);
  }
  
  .contact-section {
    padding: var(--space-md);
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
  }
}

/* ==========================================================
   LUXURY HERO REDESIGN
   ========================================================== */

/* ── Base luxury hero ── */
.hero-luxury {
  --lx-bg: #0C0C0E;
  --lx-gold: #C9A96E;
  --lx-gold-glow: rgba(201, 169, 110, 0.10);
  --lx-ivory: #F5F0E8;
  --lx-ivory-dim: rgba(245, 240, 232, 0.50);

  background: var(--lx-bg);
  color: var(--lx-ivory);
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

/* Kill the inherited hero-content entrance animation */
.hero-luxury .hero-content {
  margin-top: 60px;
  text-align: center;
  max-width: 56rem;
  transform: none;
  animation: none;
  opacity: 1;
}

/* ── Background: subtle grid lines ── */
.lx-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lx-grid::before,
.lx-grid::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(201, 169, 110, 0.07) 25%,
    rgba(201, 169, 110, 0.07) 75%,
    transparent 100%);
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  animation: lxGridReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lx-grid::before { left: 22%; animation-delay: 0.5s; }
.lx-grid::after  { right: 22%; animation-delay: 0.7s; }

@keyframes lxGridReveal {
  to { transform: scaleY(1); opacity: 1; }
}

/* ── Background: ambient glow orbs ── */
.lx-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: lxOrbDrift 12s ease-in-out infinite;
}

.lx-orb-a {
  width: clamp(28rem, 50vw, 48rem);
  height: clamp(28rem, 50vw, 48rem);
  top: -20%;
  right: -12%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.07) 0%, transparent 65%);
  animation-delay: 0s;
}

.lx-orb-b {
  width: clamp(22rem, 40vw, 38rem);
  height: clamp(22rem, 40vw, 38rem);
  bottom: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 65%);
  animation-delay: 5s;
}

@keyframes lxOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(1.5%, -2%) scale(1.04); }
  70%       { transform: translate(-1%, 1.5%) scale(0.97); }
}

/* ── Corner bracket accents ── */
.lx-corner {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

.lx-corner-tl {
  top: 1.75rem;
  left: 1.75rem;
  width: 3.5rem;
  height: 3.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.35);
  border-left: 1px solid rgba(201, 169, 110, 0.35);
  animation: lxCornerIn 0.7s ease 0.9s forwards;
}

.lx-corner-br {
  bottom: 1.75rem;
  right: 1.75rem;
  width: 3.5rem;
  height: 3.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
  border-right: 1px solid rgba(201, 169, 110, 0.35);
  animation: lxCornerIn 0.7s ease 1.1s forwards;
}

@keyframes lxCornerIn {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Eyebrow label ── */
.lx-label {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: lxFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.lx-label-center { justify-content: center; }

.lx-label-line {
  display: block;
  height: 1px;
  width: 2.25rem;
  background: var(--lx-gold);
  transform: scaleX(0);
  animation: lxLineGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.lx-label-center .lx-label-line:first-child { transform-origin: right; }
.lx-label-center .lx-label-line:last-child  { transform-origin: left; }
.lx-label:not(.lx-label-center) .lx-label-line { transform-origin: left; }

@keyframes lxLineGrow {
  to { transform: scaleX(1); }
}

.lx-label-text {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lx-gold);
}

/* ── Headline words ── */
.lx-headline {
  margin-bottom: var(--space-md);
  overflow: visible;
}

.lx-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.5rem);
  color: var(--lx-ivory);
  margin-right: 0.25em;
  animation: lxWordUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lx-word:last-child { margin-right: 0; }
.lx-word:nth-child(1) { animation-delay: 0.50s; }
.lx-word:nth-child(2) { animation-delay: 0.65s; }
.lx-word:nth-child(3) { animation-delay: 0.80s; }
.lx-word:nth-child(4) { animation-delay: 0.95s; }

.lx-word-gold {
  color: var(--lx-gold);
  font-style: italic;
}

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

/* ── Subtitle ── */
.lx-sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--lx-ivory-dim);
  font-weight: 300;
  line-height: 1.75;
  max-width: 38rem;
  margin: 0 auto var(--space-lg);
  opacity: 0;
  animation: lxFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
}

/* ── CTA actions ── */
.lx-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: lxFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.lx-actions-center { justify-content: center; }

.btn-lx-gold {
  background: var(--lx-gold);
  color: #0C0C0E;
  font-weight: 600;
}

.btn-lx-gold:hover {
  background: #DDB97E;
  transform: translateY(-0.2rem);
  box-shadow: 0 10px 36px rgba(201, 169, 110, 0.35);
  color: #0C0C0E;
}

.btn-lx-ghost {
  background: transparent;
  color: var(--lx-ivory);
  border: 1px solid rgba(245, 240, 232, 0.25);
}

.btn-lx-ghost:hover {
  background: rgba(245, 240, 232, 0.08);
  border-color: rgba(245, 240, 232, 0.55);
  color: var(--lx-ivory);
}

/* ── Horizontal gold rule (wardrobe) ── */
.lx-rule {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--lx-gold), transparent);
  margin: 1.5rem 0;
  animation: lxRuleGrow 1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

@keyframes lxRuleGrow {
  to { width: 7rem; }
}

/* ── Marquee bar (home) ── */
.lx-marquee-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(201, 169, 110, 0.10);
  padding: 1.125rem 0;
  overflow: hidden;
  z-index: 3;
  background: rgba(12, 12, 14, 0.6);
  backdrop-filter: blur(6px);
}

.lx-marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: lxMarquee 38s linear infinite;
}

.lx-marquee-track span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.28);
  white-space: nowrap;
  font-style: italic;
}

.lx-marquee-track .lx-dot {
  color: rgba(201, 169, 110, 0.45) !important;
  font-style: normal !important;
}

@keyframes lxMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Scroll cue (home) ── */
.lx-scroll-cue {
  position: absolute;
  right: 2.25rem;
  bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  z-index: 4;
  opacity: 0;
  animation: lxFadeIn 1s ease 1.6s forwards;
}

.lx-scroll-cue-label {
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.28);
  writing-mode: vertical-rl;
}

.lx-scroll-cue-bar {
  width: 1px;
  height: 3.5rem;
  background: rgba(245, 240, 232, 0.10);
  position: relative;
  overflow: hidden;
}

.lx-scroll-cue-bar::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--lx-gold));
  animation: lxScrollBar 2.4s ease-in-out 2s infinite;
}

@keyframes lxScrollBar {
  0%   { top: -100%; opacity: 1; }
  100% { top: 100%;  opacity: 0; }
}

/* ═══════════════════════════════════════════════
   HOME PAGE HERO
   ═══════════════════════════════════════════════ */
/* .hero-home inherits full 100vh from .hero base class */

/* ═══════════════════════════════════════════════
   WARDROBE PAGE HERO
   ═══════════════════════════════════════════════ */
.hero-wardrobe-pg {
  min-height: 72vh;
  align-items: flex-end;
  padding-bottom: 5rem;
}

.hero-wardrobe-pg .hero-content {
  text-align: left;
  max-width: 100%;
  width: 100%;
  padding: 0 max(2rem, 6vw);
}

.hero-wardrobe-pg .lx-sub {
  margin-left: 0;
  text-align: left;
}

.hero-wardrobe-pg .lx-actions {
  justify-content: flex-start;
}

/* Diagonal background panel */
.lx-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(145deg,
    rgba(201, 169, 110, 0.04) 0%,
    rgba(201, 169, 110, 0.01) 100%);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
  animation: lxDiagonalIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

@keyframes lxDiagonalIn {
  from { clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%); opacity: 0; }
  to   { clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);   opacity: 1; }
}

/* Oversized decorative letter */
.lx-bg-letter {
  position: absolute;
  right: 2%;
  bottom: -2%;
  font-family: var(--font-display);
  font-size: clamp(14rem, 24vw, 28rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(201, 169, 110, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0;
  animation: lxLetterIn 2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes lxLetterIn {
  from { opacity: 0; transform: translateY(4%) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ═══════════════════════════════════════════════
   CASES PAGE HERO
   ═══════════════════════════════════════════════ */
.hero-cases-pg {
  min-height: 72vh;
}

/* Stats row */
.lx-stats {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
  opacity: 0;
  animation: lxFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.lx-stat {
  text-align: center;
  padding: 0 3.5rem;
  position: relative;
}

.lx-stat + .lx-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(201, 169, 110, 0.18);
}

.lx-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300;
  color: var(--lx-gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.lx-stat-label {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 0.625rem;
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE HERO
   ═══════════════════════════════════════════════ */
.hero-contact-pg {
  min-height: 65vh;
}

/* Concentric rings */
.lx-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.lx-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.09);
  animation: lxRingPulse 5.5s ease-out infinite;
}

.lx-ring:nth-child(1) { width: 16rem; height: 16rem; animation-delay: 0.0s; }
.lx-ring:nth-child(2) { width: 30rem; height: 30rem; animation-delay: 1.0s; }
.lx-ring:nth-child(3) { width: 46rem; height: 46rem; animation-delay: 2.0s; }
.lx-ring:nth-child(4) { width: 62rem; height: 62rem; animation-delay: 3.0s; }

@keyframes lxRingPulse {
  0%   { opacity: 0; transform: scale(0.82); }
  20%  { opacity: 0.9; }
  100% { opacity: 0; transform: scale(1.08); }
}

/* Floating gold particles */
.lx-float-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--lx-gold);
  pointer-events: none;
  z-index: 0;
  animation: lxDotAscend linear infinite;
  opacity: 0;
}

@keyframes lxDotAscend {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.45; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-105vh) rotate(360deg); opacity: 0; }
}

/* ── Shared utility keyframes ── */
@keyframes lxFadeUp {
  from { opacity: 0; transform: translateY(1.25rem); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lxFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 48rem) {
  .hero-wardrobe-pg {
    align-items: center;
    padding-bottom: var(--space-xl);
  }

  .hero-wardrobe-pg .hero-content {
    text-align: center;
    padding: 0 var(--space-md);
  }

  .hero-wardrobe-pg .lx-sub {
    text-align: center;
    margin-left: auto;
  }

  .hero-wardrobe-pg .lx-actions {
    justify-content: center;
  }

  .lx-scroll-cue { display: none; }

  .lx-bg-letter {
    font-size: 10rem;
    right: -5%;
    opacity: 0.6;
  }

  .lx-stats { gap: 0; }

  .lx-stat { padding: 0 1.75rem; }

  .lx-corner-tl,
  .lx-corner-br {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 30rem) {
  .lx-marquee-bar { display: none; }

  .lx-scroll-cue { display: none; }

  .lx-stats {
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
  }

  .lx-stat { width: 40%; padding: 0; }

  .lx-stat + .lx-stat::before { display: none; }

  .lx-corner-tl,
  .lx-corner-br { display: none; }
}

/* ==========================================================
   320 px  —  minimum viewport  (iPhone SE gen-1, Galaxy A series…)
   ========================================================== */
@media (max-width: 20rem) {

  /* ── Design tokens ── */
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.625rem;
    --space-md: 0.875rem;
    --space-lg: 1.5rem;
    --space-xl: 2.25rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
  }

  /* ── Base typography ── */
  h1 { font-size: 1.875rem; letter-spacing: -0.01em; }
  h2 { font-size: 1.625rem; }
  h3 { font-size: 1.25rem;  }
  h4 { font-size: 1.0625rem; }
  p  { font-size: 0.875rem;  line-height: 1.6; }

  /* ── Header ── */
  .header-inner {
    padding: 0.75rem var(--space-sm);
  }

  .logo {
    font-size: 1.125rem;
    letter-spacing: 0;
    /* prevent logo from pushing hamburger off screen */
    max-width: calc(100% - 3rem);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  /* Mobile nav panel */
  .nav {
    width: 90%;
  }

  .nav a {
    font-size: 0.9375rem;
    padding: 0.625rem 0;
  }

  /* ── General hero ── */
  .hero {
    padding: var(--space-lg) var(--space-sm);
  }

  /* ── Sections & containers ── */
  .section {
    padding: var(--space-lg) var(--space-sm);
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section-title  { font-size: 1.625rem; margin-bottom: var(--space-md); }
  .section-subtitle {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
  }

  /* ── Cards ── */
  .card {
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
  }

  .card-image {
    height: 9rem;
  }

  .card-title { font-size: 1.1875rem; }
  .card-text  { font-size: 0.8125rem; }

  /* ── Buttons — full-width stack ── */
  .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8125rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }

  /* Prevent double-stacking inside flex CTA pairs */
  .hero-content .btn + .btn,
  .contact-section .btn,
  .overlap-content .btn {
    margin-top: var(--space-xs);
  }

  /* ── Pricing ── */
  .price-card {
    padding: var(--space-md) var(--space-sm);
  }

  .price {
    font-size: 2.25rem;
  }

  .price-features li {
    font-size: 0.8125rem;
  }

  /* ── Asymmetric sections ── */
  .asymmetric-section { gap: var(--space-md); }

  /* ── Overlap section ── */
  .overlap-content {
    max-width: 100%;
    padding: var(--space-md);
  }

  .overlap-bg { display: none; }

  /* ── Contact page ── */
  .contact-section {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .contact-item {
    padding: var(--space-xs) var(--space-sm);
    gap: var(--space-xs);
  }

  .contact-item i  { font-size: 1.125rem; }
  .contact-item h4 { font-size: 0.9375rem; }
  .contact-item p,
  .contact-item a  { font-size: 0.8125rem; }

  /* ── Forms  (keep font-size ≥ 1rem to stop iOS auto-zoom) ── */
  .form-label {
    font-size: 0.8125rem;
  }

  .form-input,
  .form-textarea {
    font-size: 1rem;          /* ≥ 16px — prevents iOS keyboard zoom */
    padding: 0.75rem var(--space-sm);
  }

  .form-textarea {
    min-height: 6.5rem;
  }

  .form-checkbox { font-size: 0.75rem; }

  .form-group { margin-bottom: var(--space-sm); }

  /* ── Map ── */
  .map-container { height: 13rem; }

  /* ── Footer ── */
  .footer {
    padding: var(--space-md) var(--space-sm);
    font-size: 0.75rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
  }

  /* ── Modal ── */
  .modal-content {
    padding: var(--space-md);
    width: 95%;
  }

  .modal-title { font-size: 1.375rem; }
  .modal-text  { font-size: 0.8125rem; }

  /* ── Error / Thank-you pages ── */
  .error-code   { font-size: 5rem; }
  .thank-you-icon { font-size: 3rem; }

  /* ────────────────────────────────────────────
     LUXURY HERO — 320 px overrides
  ──────────────────────────────────────────── */

  /* Base luxury hero padding */
  .hero-luxury {
    padding: var(--space-xl) var(--space-sm);
  }

  .hero-luxury .hero-content {
    max-width: 100%;
  }

  /* Eyebrow label */
  .lx-label {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .lx-label-text {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
  }

  .lx-label-line { width: 1rem; }

  /* Headline — override clamp via h1 rule above */
  .lx-headline { margin-bottom: 0.875rem; }

  /* Subtitle */
  .lx-sub {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 100%;
  }

  /* CTA actions — stack vertically, full-width */
  .lx-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
  }

  .lx-actions .btn {
    font-size: 0.75rem;
    padding: 0.8125rem 1rem;
  }

  /* Scroll cue & marquee — hide */
  .lx-scroll-cue  { display: none; }
  .lx-marquee-bar { display: none; }

  /* Corner accents — hide */
  .lx-corner-tl,
  .lx-corner-br { display: none; }

  /* Grid lines — reduce to one */
  .lx-grid::after { display: none; }
  .lx-grid::before { left: 50%; }

  /* Wardrobe: bg letter */
  .lx-bg-letter {
    font-size: 6rem;
    right: -8%;
    bottom: 0;
    opacity: 0.5;
  }

  /* Wardrobe: gold rule */
  .lx-rule { animation: lxRuleGrow320 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards; }

  @keyframes lxRuleGrow320 {
    to { width: 4rem; }
  }

  /* Cases: stat counters — single column */
  .lx-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
  }

  .lx-stat { width: 100%; padding: 0; }
  .lx-stat + .lx-stat::before { display: none; }
  .lx-stat-num   { font-size: 2.125rem; }
  .lx-stat-label { font-size: 0.5625rem; }

  /* Contact: scale rings down */
  .lx-ring:nth-child(1) { width:  9rem; height:  9rem; }
  .lx-ring:nth-child(2) { width: 17rem; height: 17rem; }
  .lx-ring:nth-child(3) { width: 26rem; height: 26rem; }
  .lx-ring:nth-child(4) { width: 35rem; height: 35rem; }

  /* Reduce floating dot count impact */
  .lx-float-dot { opacity: 0.3; }
}

/* ==========================================================
   MODERN CONTENT SECTIONS
   ========================================================== */

/* ── Section colour variants ── */
.section-cream { background: #FAF8F5; }

.section-dark {
  background: var(--color-graphite);
  color: var(--color-satin);
}

.section-dark h2,
.section-dark h3 { color: #F5F0E8; }

.section-dark .section-subtitle,
.section-dark p { color: rgba(245, 240, 232, 0.58); }

/* ── Section header / tag ── */
.section-header { margin-bottom: var(--space-lg); }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 1rem;
}

.section-dark .section-tag { color: #C9A96E; }

/* ── Bento service cards ── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bento-item {
  background: #fff;
  border: 1px solid var(--color-lead);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-luxury), transform var(--transition-luxury), box-shadow var(--transition-luxury);
}

.bento-item:hover {
  border-color: #C9A96E;
  transform: translateY(-0.35rem);
  box-shadow: 0 12px 40px rgba(24, 24, 27, 0.09);
}

.bento-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(201, 169, 110, 0.14);
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  user-select: none;
}

.bento-icon {
  font-size: 1.625rem;
  color: #C9A96E;
  margin-bottom: 1.125rem;
  display: block;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-graphite);
}

.bento-text {
  font-size: 0.875rem;
  color: var(--color-steel);
  line-height: 1.65;
  margin: 0;
}

/* ── Feature split (image + text) ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 58vh;
}

.feature-split-rev { direction: rtl; }
.feature-split-rev > * { direction: ltr; }

.feature-split-content {
  padding: clamp(3rem, 6vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.section-cream .feature-split-content { background: #FAF8F5; }

.feature-split-content h2 { margin-bottom: 1.25rem; }
.feature-split-content p  { color: var(--color-steel); margin-bottom: 1rem; }
.feature-split-content p:last-of-type { margin-bottom: 2rem; }

.feature-split-media {
  position: relative;
  overflow: hidden;
  background: var(--color-lead);
  min-height: 30rem;
}

.feature-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-split:hover .feature-split-media img { transform: scale(1.03); }

/* ── Process steps ── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--color-lead);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-lg);
}

.process-step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--color-lead);
  background: #fff;
  transition: background var(--transition-luxury);
}

.process-step:last-child { border-right: none; }
.process-step:hover { background: #FAF8F5; }

.process-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: #C9A96E;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.process-title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 0.5rem;
}

.process-text {
  font-size: 0.8125rem;
  color: var(--color-steel);
  line-height: 1.6;
  margin: 0;
}

/* ── Dark quote band ── */
.quote-band {
  background: var(--color-graphite);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.quote-band-inner {
  max-width: 46rem;
  margin: 0 auto;
}

.quote-band-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.6;
  color: rgba(201, 169, 110, 0.35);
  display: block;
  margin-bottom: 1.5rem;
  user-select: none;
}

.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  color: #F5F0E8;
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 1.5rem;
}

.quote-band cite {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  font-style: normal;
  margin-bottom: 2.5rem;
}

/* ── Modern pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card-new {
  border: 1px solid var(--color-lead);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  background: #fff;
  transition: all var(--transition-luxury);
  position: relative;
}

.pricing-card-new:hover:not(.pricing-featured) {
  border-color: #C9A96E;
  transform: translateY(-0.4rem);
  box-shadow: 0 16px 48px rgba(24, 24, 27, 0.1);
}

.pricing-featured {
  border-color: #C9A96E;
  background: var(--color-graphite);
  color: #F5F0E8;
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 60px rgba(24, 24, 27, 0.2);
}

.pricing-featured-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: #C9A96E;
  color: #0C0C0E;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-tier {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A96E;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-graphite);
  display: block;
  margin-bottom: 0.25rem;
}

.pricing-featured .pricing-amount { color: #F5F0E8; }

.pricing-period {
  font-size: 0.75rem;
  color: var(--color-steel);
  display: block;
  margin-bottom: 1.75rem;
}

.pricing-featured .pricing-period { color: rgba(245, 240, 232, 0.5); }

.pricing-divider {
  border: none;
  border-top: 1px solid var(--color-lead);
  margin: 1.5rem 0;
}

.pricing-featured .pricing-divider { border-color: rgba(245, 240, 232, 0.15); }

.pricing-features-new {
  list-style: none;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features-new li {
  font-size: 0.875rem;
  color: var(--color-steel);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.5;
}

.pricing-featured .pricing-features-new li { color: rgba(245, 240, 232, 0.7); }

.pricing-check {
  color: #C9A96E;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.75rem;
}

/* ── CTA banner ── */
.cta-banner {
  background: var(--color-graphite);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.cta-banner h2 {
  color: #F5F0E8;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ── Stats strip ── */
.stats-strip {
  background: var(--color-graphite);
  padding: var(--space-xl) var(--space-md);
}

.stats-strip-inner {
  max-width: 75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-block {
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid rgba(245, 240, 232, 0.08);
}

.stat-block:last-child { border-right: none; }

.stat-block-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: #C9A96E;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-block-label {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  display: block;
  margin-top: 0.625rem;
}

/* ── Testimonial cards ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-lead);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color var(--transition-luxury), box-shadow var(--transition-luxury);
}

.testimonial-card:hover {
  border-color: #C9A96E;
  box-shadow: 0 8px 32px rgba(24, 24, 27, 0.08);
}

.testimonial-card-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.7;
  color: rgba(201, 169, 110, 0.3);
  display: block;
  margin-bottom: 1rem;
  user-select: none;
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--color-graphite);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 1.5rem;
}

.testimonial-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-lead);
}

.testimonial-card-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card-dot i { font-size: 0.75rem; color: #C9A96E; }

.testimonial-card-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-graphite);
  display: block;
}

.testimonial-card-role {
  font-size: 0.75rem;
  color: var(--color-steel);
  display: block;
}

/* ── Case timeline entries ── */
.case-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.case-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 28rem;
  border-bottom: 1px solid var(--color-lead);
}

.case-entry:last-child { border-bottom: none; }

.case-entry-rev { direction: rtl; }
.case-entry-rev > * { direction: ltr; }

.case-entry-media {
  position: relative;
  overflow: hidden;
  background: var(--color-lead);
}

.case-entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-entry:hover .case-entry-media img { transform: scale(1.04); }

.case-entry-body {
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.case-entry-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.case-tag {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: #C9A96E;
  border-radius: 999px;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.case-entry-body h2 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); margin-bottom: 0.5rem; }
.case-entry-body p  { font-size: 0.875rem; color: var(--color-steel); line-height: 1.7; margin-bottom: 0.875rem; }
.case-entry-body p:last-of-type { margin-bottom: 0; }

/* ── FAQ accordion ── */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-lead);
}

.faq-item {
  border-bottom: 1px solid var(--color-lead);
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.375rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-graphite);
  transition: color var(--transition-smooth);
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #C9A96E; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #C9A96E;
  transition: transform var(--transition-smooth), content var(--transition-smooth);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after { content: '−'; }

.faq-body {
  padding: 0 0 1.5rem;
  color: var(--color-steel);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ── Modern contact layout ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: 0; }

.contact-detail {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-lead);
}

.contact-detail:first-child { padding-top: 0; }

.contact-detail-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A96E;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-steel);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--color-graphite);
  display: block;
  line-height: 1.5;
}

.contact-detail-value a { color: var(--color-graphite); }
.contact-detail-value a:hover { color: #C9A96E; }

/* Modern underline form */
.form-underline .form-group { margin-bottom: 1.5rem; }

.form-underline .form-label {
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-steel);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-underline .form-input,
.form-underline .form-textarea {
  border: none;
  border-bottom: 1px solid var(--color-lead);
  border-radius: 0;
  padding: 0.625rem 0;
  background: transparent;
  font-size: 0.9375rem;
}

.form-underline .form-input:focus,
.form-underline .form-textarea:focus {
  border-bottom-color: #C9A96E;
  box-shadow: none;
}

.form-underline .form-textarea { min-height: 7rem; }

/* ── Feature icon list ── */
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-lead);
  transition: background var(--transition-smooth);
}

.feature-row:first-child { padding-top: 0; }
.feature-row:last-child { border-bottom: none; }

.feature-row-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A96E;
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: background var(--transition-smooth);
}

.feature-row:hover .feature-row-icon { background: rgba(201, 169, 110, 0.2); }

.feature-row-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 0.25rem;
}

.feature-row-text {
  font-size: 0.875rem;
  color: var(--color-steel);
  line-height: 1.6;
  margin: 0;
}

/* ── Digital resources dark strip ── */
.resources-strip {
  background: var(--color-graphite);
  padding: var(--space-xl) var(--space-md);
}

.resources-strip-inner {
  max-width: 75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: center;
}

.resources-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resources-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.5;
}

.resources-list li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #C9A96E;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ── Outcomes grid ── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-lead);
  border: 1px solid var(--color-lead);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.outcome-item {
  background: #fff;
  padding: 2rem;
  transition: background var(--transition-smooth);
}

.outcome-item:hover { background: #FAF8F5; }

.outcome-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.3);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.outcome-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 0.5rem;
}

.outcome-text {
  font-size: 0.875rem;
  color: var(--color-steel);
  line-height: 1.6;
  margin: 0;
}

/* ── Two-col content split (text + list) ── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* ── Horizontal pill tags ── */
.tag-pill {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  background: rgba(201, 169, 110, 0.1);
  color: #C9A96E;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* ── Modern map wrapper ── */
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/5;
}

.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Responsive: new sections ── */
@media (max-width: 64rem) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1),
  .process-step:nth-child(2) { border-bottom: 1px solid var(--color-lead); }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(1),
  .stat-block:nth-child(2) { padding-bottom: 3rem; border-bottom: 1px solid rgba(245, 240, 232, 0.08); }
  .resources-strip-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcomes-grid { border-radius: var(--radius-md); }
}

@media (max-width: 48rem) {
  .bento { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; min-height: auto; }
  .feature-split-rev { direction: ltr; }
  .feature-split-media { min-height: 22rem; order: -1; }
  .feature-split-content { padding: 2.5rem var(--space-md); }
  .process { grid-template-columns: 1fr; border: none; border-top: 1px solid var(--color-lead); border-radius: 0; }
  .process-step { border-right: none; border-bottom: 1px solid var(--color-lead); }
  .process-step:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .case-entry,
  .case-entry-rev { grid-template-columns: 1fr; direction: ltr; }
  .case-entry-media { min-height: 18rem; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-split { grid-template-columns: 1fr; gap: var(--space-lg); }
  .content-split { grid-template-columns: 1fr; }
}

@media (max-width: 30rem) {
  .stats-strip-inner { grid-template-columns: 1fr; }
  .stat-block { border-right: none; padding: 1.5rem 0; border-bottom: 1px solid rgba(245, 240, 232, 0.08); }
  .stat-block:last-child { border-bottom: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .bento-num { font-size: 3.5rem; }
}

@media (max-width: 20rem) {
  /* Case timeline */
  .case-entry-media { min-height: 14rem; }
  .case-entry-body { padding: 1.5rem var(--space-sm); }
  .case-entry-num { font-size: 3.5rem; }
  .case-tag { font-size: 0.5625rem; padding: 0.2rem 0.625rem; }

  /* Feature split */
  .feature-split-content { padding: 2rem var(--space-sm); }

  /* Bento */
  .bento-item { padding: 1.25rem var(--space-sm); }
  .bento-num { font-size: 3rem; top: -0.5rem; right: 0.5rem; }
  .bento-icon { font-size: 1.25rem; }
  .bento-title { font-size: 1.25rem; }
  .bento-text { font-size: 0.8125rem; }

  /* Process steps */
  .process-step { padding: 1.25rem var(--space-sm); }
  .process-num { font-size: 2.25rem; }
  .process-title { font-size: 0.875rem; }
  .process-text { font-size: 0.75rem; }

  /* Quote band */
  .quote-band { padding: var(--space-lg) var(--space-sm); }
  .quote-band-mark { font-size: 4rem; }
  .quote-band blockquote { font-size: 1.0625rem; }
  .quote-band cite { font-size: 0.625rem; }

  /* CTA banner */
  .cta-banner { padding: var(--space-lg) var(--space-sm); }
  .cta-banner-inner h2 { font-size: 1.5rem; }
  .cta-banner-inner p { margin-bottom: 1.5rem; }

  /* Stats strip */
  .stats-strip { padding: var(--space-lg) var(--space-sm); }
  .stat-block { padding: 1rem 0; }
  .stat-block-num { font-size: 2rem; }
  .stat-block-label { font-size: 0.5625rem; }

  /* Testimonials */
  .testimonial-card { padding: 1.25rem var(--space-sm); }
  .testimonial-card-mark { font-size: 3rem; }
  .testimonial-card blockquote { font-size: 0.875rem; }
  .testimonial-card-name { font-size: 0.75rem; }
  .testimonial-card-role { font-size: 0.6875rem; }

  /* Pricing */
  .pricing-card-new { padding: 1.75rem 1.25rem; }
  .pricing-amount { font-size: 2.75rem; }
  .pricing-features-new li { font-size: 0.8125rem; }

  /* Contact split */
  .contact-split { gap: var(--space-md); }
  .contact-detail { padding: 1rem 0; grid-template-columns: 2.25rem 1fr; gap: 0.75rem; }
  .contact-detail-icon { width: 2.25rem; height: 2.25rem; font-size: 0.75rem; }
  .contact-detail-value { font-size: 0.8125rem; }

  /* Form underline */
  .form-underline .form-input,
  .form-underline .form-textarea { font-size: 1rem; }
  .form-underline .form-group { margin-bottom: 1.25rem; }

  /* Map */
  .map-frame { aspect-ratio: 4/3; }

  /* Resources strip */
  .resources-strip { padding: var(--space-lg) var(--space-sm); }
  .resources-strip-inner h2 { font-size: 1.5rem; }
  .resources-list li { font-size: 0.8125rem; }

  /* Feature rows */
  .feature-row { padding: 1rem 0; grid-template-columns: 2.5rem 1fr; gap: 0.875rem; }
  .feature-row-icon { width: 2.5rem; height: 2.5rem; font-size: 0.9375rem; }
  .feature-row-title { font-size: 0.9375rem; }
  .feature-row-text { font-size: 0.8125rem; }

  /* Outcomes grid */
  .outcome-item { padding: 1.25rem var(--space-sm); }
  .outcome-num { font-size: 2rem; }
  .outcome-title { font-size: 0.9375rem; }
  .outcome-text { font-size: 0.8125rem; }

  /* Section header */
  .section-header h2 { font-size: 1.5rem; }
  .section-tag { font-size: 0.5rem; letter-spacing: 0.12em; }

  /* FAQ */
  .faq-item summary { font-size: 0.875rem; padding: 1rem 0; }
  .faq-body { padding: 0 0 1.25rem; font-size: 0.875rem; }

  /* Lux buttons in full-width context */
  .btn-lx-gold,
  .btn-lx-ghost { width: 100%; }
}

/* ==========================================================
   POLICY PAGES  (terms / privacy / cookies / return)
   ========================================================== */

/* ── Page hero ── */
.policy-hero {
  padding: calc(var(--space-xl) + 4rem) var(--space-md) var(--space-xl);
  background: var(--color-satin);
  border-bottom: 1px solid var(--color-lead);
  position: relative;
  overflow: hidden;
}

.policy-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #C9A96E 0%, transparent 60%);
}

.policy-hero-inner {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-steel);
  letter-spacing: 0.04em;
}

.policy-breadcrumb a {
  color: var(--color-steel);
  transition: color var(--transition-smooth);
}

.policy-breadcrumb a:hover { color: #C9A96E; }

.policy-breadcrumb-sep {
  color: var(--color-lead);
  font-size: 0.625rem;
}

.policy-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-graphite);
  margin: 0;
}

.policy-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.policy-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A96E;
  background: rgba(201, 169, 110, 0.1);
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
}

.policy-meta-date {
  font-size: 0.8125rem;
  color: var(--color-steel);
}

/* ── Two-column document layout ── */
.policy-body {
  max-width: 75rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* ── Sticky TOC sidebar ── */
.policy-toc {
  position: sticky;
  top: 5.5rem;
  background: #fff;
  border: 1px solid var(--color-lead);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  overflow: hidden;
}

.policy-toc::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(to right, #C9A96E, transparent);
  margin: -1.5rem -1.5rem 1.25rem;
}

.policy-toc-title {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: 1rem;
}

.policy-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.policy-toc-list li a {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-steel);
  padding: 0.4rem 0.625rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  line-height: 1.4;
}

.policy-toc-list li a:hover {
  color: #C9A96E;
  background: rgba(201, 169, 110, 0.07);
  padding-left: 0.875rem;
}

.policy-toc-list li a.active {
  color: #C9A96E;
  background: rgba(201, 169, 110, 0.1);
  font-weight: 500;
}

/* ── Article content ── */
.policy-article {
  min-width: 0;
}

.policy-section {
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-lead);
  scroll-margin-top: 5.5rem;
}

.policy-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.policy-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.policy-section-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #C9A96E;
  margin-top: 0.2rem;
}

.policy-section h2 {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 600;
  margin: 0;
  color: var(--color-graphite);
}

.policy-section p {
  font-size: 0.9375rem;
  color: var(--color-steel);
  line-height: 1.8;
  margin-bottom: 0.875rem;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-section a {
  color: #C9A96E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-section a:hover { color: var(--color-graphite); }

/* ── Contact info block inside policy ── */
.policy-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  background: var(--color-satin);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
}

.policy-contact-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.875rem;
  color: var(--color-graphite);
}

.policy-contact-row i {
  width: 1.25rem;
  text-align: center;
  color: #C9A96E;
  flex-shrink: 0;
}

.policy-contact-row a {
  color: var(--color-graphite);
  text-decoration: none;
}

.policy-contact-row a:hover { color: #C9A96E; }

/* ── Highlight box ── */
.policy-highlight {
  background: rgba(201, 169, 110, 0.06);
  border-left: 3px solid #C9A96E;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
}

.policy-highlight p {
  margin: 0;
  color: var(--color-graphite);
  font-size: 0.9375rem;
}

/* ── Cookie type table ── */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.cookie-table th {
  background: var(--color-graphite);
  color: #F5F0E8;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.cookie-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.cookie-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }

.cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-lead);
  color: var(--color-steel);
  vertical-align: top;
  line-height: 1.6;
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: #FAF8F5; }

.cookie-badge {
  display: inline-block;
  padding: 0.15rem 0.625rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-badge-required { background: rgba(201, 169, 110, 0.15); color: #C9A96E; }
.cookie-badge-optional { background: var(--color-lead); color: var(--color-steel); }

/* ── Responsive policy layout ── */
@media (max-width: 56rem) {
  .policy-body {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-md);
  }

  .policy-toc {
    position: static;
    max-height: none;
  }
}

@media (max-width: 30rem) {
  .policy-hero {
    padding: calc(var(--space-lg) + 4rem) var(--space-sm) var(--space-lg);
  }

  .policy-body {
    padding: var(--space-md) var(--space-sm);
  }

  .policy-section-header {
    gap: 0.875rem;
  }

  .policy-section-num {
    width: 2rem;
    height: 2rem;
    font-size: 0.8125rem;
  }

  .cookie-table th,
  .cookie-table td { padding: 0.625rem 0.75rem; }
}

@media (max-width: 20rem) {
  .policy-hero h1 { font-size: 1.625rem; }
  .policy-toc { padding: 1rem; }
  .policy-toc-list li a { font-size: 0.75rem; }
  .policy-section h2 { font-size: 1.125rem; }
  .policy-section p { font-size: 0.875rem; }
  .cookie-table { font-size: 0.75rem; }
  .cookie-table th,
  .cookie-table td { padding: 0.5rem; }
}

/* ==========================================================
   THANK YOU PAGE
   ========================================================== */

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-graphite);
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

/* Ambient background rings */
.thanks-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.thanks-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.07);
  transform: translate(-50%, -50%);
}

.thanks-ring:nth-child(1) { width: 20rem;  height: 20rem; }
.thanks-ring:nth-child(2) { width: 38rem;  height: 38rem; }
.thanks-ring:nth-child(3) { width: 58rem;  height: 58rem; }
.thanks-ring:nth-child(4) { width: 80rem;  height: 80rem; }

/* Central content */
.thanks-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 36rem;
  width: 100%;
  margin-top: 70px;
}

/* Check circle */
.thanks-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: thanksIconIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.thanks-icon i {
  font-size: 1.75rem;
  color: #C9A96E;
}

@keyframes thanksIconIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* Eyebrow */
.thanks-tag {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 1rem;
  opacity: 0;
  animation: lxFadeUp 0.6s ease 0.3s forwards;
}

.thanks-inner h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: #F5F0E8;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: lxFadeUp 0.6s ease 0.45s forwards;
}

.thanks-inner p {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.75;
  margin-bottom: 0;
  opacity: 0;
  animation: lxFadeUp 0.6s ease 0.6s forwards;
}

/* Gold divider */
.thanks-divider {
  width: 3rem;
  height: 1px;
  background: linear-gradient(to right, transparent, #C9A96E, transparent);
  margin: 2rem auto;
  opacity: 0;
  animation: lxFadeIn 0.6s ease 0.55s forwards;
}

/* "What happens next" steps */
.thanks-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.5rem 0;
  text-align: left;
  opacity: 0;
  animation: lxFadeUp 0.6s ease 0.75s forwards;
}

.thanks-step {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.125rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.07);
}

.thanks-step:last-child { border-bottom: none; }

.thanks-step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: #C9A96E;
  flex-shrink: 0;
}

.thanks-step-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #F5F0E8;
  margin-bottom: 0.2rem;
}

.thanks-step-text {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.55;
  margin: 0;
}

/* Actions */
.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: lxFadeUp 0.6s ease 0.9s forwards;
}

@media (max-width: 30rem) {
  .thanks-ring:nth-child(3),
  .thanks-ring:nth-child(4) { display: none; }

  .thanks-icon { width: 4rem; height: 4rem; }
  .thanks-icon i { font-size: 1.375rem; }

  .thanks-steps { margin: 1.75rem 0; }

  .thanks-actions { flex-direction: column; align-items: stretch; }
  .thanks-actions .btn { width: 100%; text-align: center; }
}

@media (max-width: 20rem) {
  .thanks-page { padding: var(--space-lg) var(--space-sm); }
  .thanks-inner h1 { font-size: 1.75rem; }
  .thanks-step { grid-template-columns: 2rem 1fr; gap: 0.75rem; }
  .thanks-step-num { width: 2rem; height: 2rem; font-size: 0.8125rem; }
}
