/* ============================================================
   LuxeWraps — Dark Luxury Editorial
   Direction: cinematic dark hero, warm gold, editorial type,
   scroll-reveal, atmospheric gradients. No generic defaults.
   ============================================================ */

/* Fonts loaded via <link> in HTML head for non-blocking delivery */

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

:root {
  --dark:     #0d0c0b;
  --dark-2:   #181614;
  --dark-3:   #242018;
  --cream:    #f5f0e8;
  --cream-2:  #ede8df;
  --white:    #ffffff;
  --gold:     #c4a167;
  --gold-lt:  #d6b984;
  --gold-dk:  #a0813e;
  --muted:    #7a7570;
  --muted-lt: #b0aa9f;
  --border-dark: rgba(255,255,255,0.08);
  --border-lt:   rgba(0,0,0,0.09);

  --font-display: 'Cormorant', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --section-pad: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Type Scale ── */
.display {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; color: var(--gold); }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.body-lg { font-size: 1.05rem; line-height: 1.75; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }

/* ── Scroll Reveal System ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-delay="5"] { transition-delay: 0.40s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(0,0,0,0.2);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); }

.btn-arrow::after {
  content: '→';
  font-size: 0.9em;
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.3s, border-color 0.3s;
}
.nav.dark-bg {
  background: rgba(13,12,11,0);
  border-bottom: 1px solid transparent;
}
.nav.scrolled-dark {
  background: rgba(13,12,11,0.92);
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(12px);
}
.nav.light-bg {
  background: rgba(245,240,232,0);
  border-bottom: 1px solid transparent;
}
.nav.scrolled-light {
  background: rgba(245,240,232,0.95);
  border-bottom: 1px solid var(--border-lt);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.nav.dark-bg .nav-logo,
.nav.scrolled-dark .nav-logo { color: var(--white); }
.nav.light-bg .nav-logo,
.nav.scrolled-light .nav-logo { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s, opacity 0.2s;
}
.nav.dark-bg .nav-links a,
.nav.scrolled-dark .nav-links a { color: rgba(255,255,255,0.65); }
.nav.dark-bg .nav-links a:hover,
.nav.scrolled-dark .nav-links a:hover,
.nav.dark-bg .nav-links a.active,
.nav.scrolled-dark .nav-links a.active { color: var(--white); }

.nav.light-bg .nav-links a,
.nav.scrolled-light .nav-links a { color: var(--muted); }
.nav.light-bg .nav-links a:hover,
.nav.scrolled-light .nav-links a:hover,
.nav.light-bg .nav-links a.active,
.nav.scrolled-light .nav-links a.active { color: var(--dark); }

.nav-cta-link { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  transition: all 0.3s;
}
.nav.dark-bg .nav-toggle span,
.nav.scrolled-dark .nav-toggle span { background: var(--white); }
.nav.light-bg .nav-toggle span,
.nav.scrolled-light .nav-toggle span { background: var(--dark); }

/* ── Hero (packages/inner dark hero) ── */
.hero {
  min-height: 80svh;
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse 70% 60% at 15% 55%, rgba(196,161,103,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(196,161,103,0.06) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.hero-text h1 { color: var(--white); }
.hero-text p { color: var(--muted-lt); }
.hero-badge {
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  padding: 36px 40px;
  text-align: center;
  flex-shrink: 0;
}
.hero-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
}
.hero-badge-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-lt);
  margin-top: 10px;
}

/* ── Hero (Dark) ── */
.hero-dark {
  min-height: 100svh;
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse 70% 60% at 15% 55%, rgba(196,161,103,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(196,161,103,0.06) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

/* subtle grain overlay */
.hero-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 1;
}

.hero-dark .container { position: relative; z-index: 2; }

/* Hero entrance animation */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-eyebrow {
  animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline {
  color: var(--white);
  animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.22s both;
  max-width: 900px;
  margin-bottom: 36px;
}
.hero-headline em { color: var(--gold); }

.hero-sub {
  color: var(--muted-lt);
  max-width: 480px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.34s both;
  margin-bottom: 44px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.46s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: heroFadeIn 1s ease 1.2s both;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.35));
}

/* ── Marquee ── */
.marquee-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin-bottom: 16px;
}

.marquee-track {
  display: flex;
  gap: 16px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

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

.marquee-item {
  width: 120px;
  height: 120px;
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.marquee-item:hover { border-color: rgba(196,161,103,0.4); }
.marquee-item img { width: 100%; height: 100%; object-fit: contain; filter: invert(1) opacity(0.7); }
.marquee-item:hover img { filter: invert(1) opacity(0.9); }

/* ── Statement Section ── */
.statement {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.statement-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: end;
}
.statement-label {
  padding-bottom: 8px;
}
.statement-label .eyebrow { margin-bottom: 20px; }
.statement-label p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.statement-text h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  font-style: italic;
  font-weight: 300;
}
.statement-text h2 strong { font-style: normal; font-weight: 600; }
.statement-rule {
  width: 100%;
  height: 1px;
  background: var(--border-lt);
  margin-bottom: 36px;
}

/* ── Services Section ── */
.services {
  background: var(--dark);
  padding: var(--section-pad) 0;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-dark);
}
.services-header h2 { color: var(--white); }
.services-header .eyebrow { margin-bottom: 16px; }
.services-header-right { text-align: right; }
.services-header-right p { color: var(--muted-lt); font-size: 0.875rem; max-width: 320px; line-height: 1.65; }

.services-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.2s;
  cursor: pointer;
}
.service-row:hover { background: rgba(255,255,255,0.02); }

.service-row-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.service-row-body h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 8px;
}
.service-row-body p { color: var(--muted-lt); font-size: 0.875rem; max-width: 500px; }
.service-row-action {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.service-row:hover .service-row-action { color: var(--gold); gap: 14px; }

/* ── Gallery (product pages) ── */
.gallery-section { padding: var(--section-pad) 0; }

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.gallery-header h1 { max-width: 560px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.gallery-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
}
.gallery-card:hover img { transform: scale(1.04); opacity: 0.85; }

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,12,11,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

/* Welcome board portrait grid */
.gallery-grid.portrait {
  grid-template-columns: repeat(5, 1fr);
}
.gallery-grid.portrait .gallery-card {
  aspect-ratio: 2/3;
}
.gallery-grid.portrait .gallery-card img { padding: 12px; }

/* ── How It Works ── */
.process-section {
  background: var(--cream-2);
  padding: var(--section-pad) 0;
}
.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.process-header h2 { font-style: italic; font-weight: 300; }
.process-header p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.process-step {
  background: var(--white);
  padding: 40px 32px;
}
.process-step-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--cream-2);
  line-height: 1;
}
.process-step-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }
.process-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.85rem; line-height: 1.7; }

/* ── Area Section ── */
.area-section {
  background: var(--dark);
  padding: 80px 0;
  overflow: hidden;
}
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.area-text .eyebrow { margin-bottom: 16px; }
.area-text h2 { color: var(--white); margin-bottom: 20px; }
.area-text p { color: var(--muted-lt); font-size: 0.9rem; line-height: 1.7; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 40px;
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
}
.area-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-lt);
  border: 1px solid var(--border-dark);
  padding: 8px 16px;
  transition: all 0.2s;
}
.area-tag:hover { border-color: var(--gold); color: var(--gold); }
.area-tag.primary { border-color: rgba(196,161,103,0.4); color: var(--gold); }

/* ── CTA Section ── */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  padding: 72px 0;
}
.cta-inner h2 { font-style: italic; font-weight: 300; }
.cta-inner h2 strong { font-style: normal; font-weight: 600; }
.cta-inner p { color: var(--muted); margin-top: 12px; font-size: 0.9rem; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

/* ── Page Hero (inner pages, light) ── */
.page-hero-light {
  padding: 140px 0 72px;
  background: var(--cream);
  border-bottom: 1px solid var(--border-lt);
}
.page-hero-light .eyebrow { margin-bottom: 20px; }
.page-hero-light h1 { max-width: 700px; margin-bottom: 24px; }
.page-hero-light p { color: var(--muted); font-size: 1rem; max-width: 560px; line-height: 1.75; margin-bottom: 36px; }
.page-hero-light .hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-meta-item::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

/* ── Page Hero (inner pages, dark) ── */
.page-hero-dark {
  padding: 140px 0 80px;
  background: var(--dark);
  background-image:
    radial-gradient(ellipse 60% 50% at 10% 60%, rgba(196,161,103,0.09) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}
.page-hero-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}
.page-hero-dark .container { position: relative; z-index: 1; }
.page-hero-dark .eyebrow { margin-bottom: 20px; }
.page-hero-dark h1 { color: var(--white); max-width: 700px; margin-bottom: 24px; }
.page-hero-dark p { color: var(--muted-lt); font-size: 1rem; max-width: 520px; line-height: 1.75; margin-bottom: 36px; }

/* ── Custom Process (large steps) ── */
.custom-process { padding: var(--section-pad) 0; }
.process-list-lg { display: flex; flex-direction: column; }
.process-item-lg {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 48px;
  padding: 52px 0;
  border-bottom: 1px solid var(--border-lt);
  align-items: start;
}
.process-item-lg:last-child { border-bottom: none; }
.process-item-lg-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--cream-2);
  line-height: 0.9;
  user-select: none;
}
.process-item-lg h3 { font-size: 1.6rem; margin-bottom: 12px; }
.process-item-lg p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; max-width: 560px; }

/* ── FAQ (Accordion) ── */
.faq-section { padding: var(--section-pad) 0; background: var(--dark); }
.faq-header { margin-bottom: 56px; }
.faq-header h2 { color: var(--white); margin-top: 16px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-dark); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
}
.faq-question-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.faq-icon svg { width: 12px; height: 12px; stroke: var(--muted-lt); fill: none; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-icon svg { stroke: var(--dark); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 0 28px 0; }
.faq-answer-inner p { color: var(--muted-lt); font-size: 0.9rem; line-height: 1.75; max-width: 640px; }

/* ── FAQ light variant (.faq-q / .faq-a — packages & location pages) ── */
.faq-q {
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid var(--border-lt);
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
}
.faq-q .faq-icon {
  border-color: var(--border-lt);
  flex-shrink: 0;
  position: relative;
}
.faq-q .faq-icon::before,
.faq-q .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  transition: transform 0.3s, opacity 0.3s;
}
.faq-q .faq-icon::before { width: 10px; height: 1.5px; }
.faq-q .faq-icon::after  { width: 1.5px; height: 10px; }
.faq-item.open .faq-q .faq-icon { border-color: var(--gold); background: var(--gold); }
.faq-item.open .faq-q .faq-icon::before,
.faq-item.open .faq-q .faq-icon::after { background: var(--dark); transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  padding-bottom: 24px;
  max-width: 640px;
}

/* ── Location page service rows (light background) ── */
.loc-services {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.loc-services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.loc-services-header h2 { color: var(--cream); margin-top: 16px; }
.loc-services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-dark);
}
.loc-service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-dark);
  text-decoration: none;
  transition: background 0.2s;
}
.loc-service-row:hover { background: rgba(255,255,255,0.02); }
.loc-service-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.loc-service-body h3 { color: var(--white); font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 6px; }
.loc-service-body p  { color: var(--muted-lt); font-size: 0.875rem; max-width: 500px; line-height: 1.6; }
.loc-service-action {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}
.loc-service-row:hover .loc-service-action { color: var(--gold); }

/* ── Location venue list ── */
.loc-venue-list { display: flex; flex-direction: column; }
.loc-venue-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-dark);
  color: var(--cream-2);
  font-size: 0.9rem;
}
.loc-venue-item:last-child { border-bottom: none; }

/* ── Location pricing cards ── */
.loc-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.loc-price-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--border-lt);
  text-align: left;
}
.loc-price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
}
.loc-price-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.loc-price-desc {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ── Contact Page ── */
.contact-section { padding: 140px 0 var(--section-pad); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
  align-items: start;
}
.contact-info .eyebrow { margin-bottom: 20px; }
.contact-info h1 { margin-bottom: 24px; }
.contact-info > p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 48px; }

.contact-detail { display: flex; flex-direction: column; gap: 28px; margin-bottom: 48px; }
.contact-detail-item { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail-value { font-size: 0.95rem; }
.contact-detail-value a:hover { color: var(--gold); }

.contact-checklist {
  background: var(--dark);
  padding: 28px 32px;
}
.contact-checklist h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-checklist ul { display: flex; flex-direction: column; gap: 10px; }
.contact-checklist li {
  font-size: 0.85rem;
  color: var(--muted-lt);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.contact-checklist li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ── Form ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  padding: 52px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 7px; }

label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  border: 1px solid var(--border-lt);
  padding: 13px 16px;
  width: 100%;
  appearance: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
input.error, select.error, textarea.error { border-color: #c0392b; }

.field-error {
  font-size: 0.72rem;
  color: #c0392b;
  display: none;
}
.form-group.has-error .field-error { display: block; }

textarea { resize: vertical; min-height: 120px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7570' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-submit {
  margin-top: 12px;
  width: 100%;
  padding: 18px;
  font-size: 0.72rem;
}
.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

/* ── Blog Page ── */
.blog-section { padding: var(--section-pad) 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
.blog-card { display: flex; flex-direction: column; gap: 14px; }
.blog-card-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card h3 { font-size: 1.4rem; line-height: 1.3; }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }
.blog-card-link {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  border-bottom: 1px solid var(--border-lt);
  padding-bottom: 3px;
  transition: border-color 0.2s, color 0.2s;
}
.blog-card-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── Thank You ── */
.thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: var(--cream);
}
.thankyou-check {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.thankyou-check svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted-lt);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-nap {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
}
.footer-nap a { color: var(--muted); transition: color 0.2s; }
.footer-nap a:hover { color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 0.84rem;
  color: var(--muted-lt);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid.portrait { grid-template-columns: repeat(4, 1fr); }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .statement-inner { grid-template-columns: 1fr; gap: 32px; }
  .process-header { grid-template-columns: 1fr; gap: 24px; }
  .area-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 56px; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-actions { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; padding: 24px 32px; gap: 20px; border-bottom: 1px solid; }
  .nav.dark-bg .nav-links, .nav.scrolled-dark .nav-links { background: var(--dark-2); border-color: var(--border-dark); }
  .nav.light-bg .nav-links, .nav.scrolled-light .nav-links { background: var(--cream); border-color: var(--border-lt); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav { position: fixed; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.portrait { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .service-row { grid-template-columns: 48px 1fr; }
  .service-row-action { display: none; }
  .hero-scroll-hint { display: none; }
  .marquee-item { width: 88px; height: 88px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-btns { flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .process-item-lg { grid-template-columns: 1fr; gap: 16px; }
  .process-item-lg-num { font-size: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
