/* ================================================================
   NOQUE — Luxury Braiding & Textured Hair Care
   Design system: editorial, cinematic, intentional
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Suranna&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Rosario:wght@300;400;500;600&family=Allura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20,300,0,0');

/* ── Tokens ── */
:root {
  --bg:       #F8F6F0;
  --bg-2:     #EEE9DC;
  --bg-dark:  #5D4120;
  --bg-dark2: #4A3018;
  --ink:      #2D2B2A;
  --ink-mid:  #8A6238;
  --brand:    #A68253;
  --copper:   #985E38;
  --gold:     #DCC79F;
  --muted:    #C1AA8C;
  --border:   rgba(93,65,32,0.16);
  --border2:  rgba(93,65,32,0.08);
  --radius:   6px;
  --radius-lg: 14px;
  --max:      1240px;
  --font-logo:    'Suranna', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Rosario', system-ui, sans-serif;
  --font-script:  'Allura', cursive;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul { list-style: none; }

/* ── Shared utilities ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.section-hl {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.section-hl em { font-style: italic; font-weight: 400; }
.section-p { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.8; max-width: 560px; }
.section-header { margin-bottom: 56px; }
.section-header .section-hl { margin-bottom: 16px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay  { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-dark); color: var(--bg);
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px 32px; border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  border: 1px solid var(--bg-dark);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--bg-dark2); border-color: var(--bg-dark2); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--bg-dark);
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 32px; border-radius: 999px;
  border: 1px solid var(--bg-dark);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--bg-dark); color: var(--bg); }
.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--bg);
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 32px; border-radius: 999px;
  border: 1px solid rgba(248,246,240,0.5);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-outline-light:hover { background: var(--bg); color: var(--bg-dark); border-color: var(--bg); }
.btn-outline-dark {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--bg);
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 32px; border-radius: 999px;
  border: 1px solid rgba(248,246,240,0.35);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-outline-dark:hover { background: var(--bg); color: var(--bg-dark); border-color: var(--bg); }
.btn-text {
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bg-dark); gap: 8px;
  transition: gap 0.2s;
}
.btn-text::after { content: '→'; }
.btn-text:hover { gap: 12px; }
.btn-full { width: 100%; }
.btn-lg { padding: 16px 48px; font-size: 0.75rem; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.3s, border-bottom 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(248,246,240,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  height: 72px; display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  font-family: var(--font-logo); font-size: 1.15rem; font-weight: 400;
  letter-spacing: 0.22em; color: var(--ink);
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); transition: color 0.2s; font-weight: 400;
}
.nav-links a:hover { color: var(--brand); }

/* Experience dropdown */
.nav-exp-wrap { position: relative; display: flex; align-items: center; }
.nav-exp-btn {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); font-weight: 400; font-family: var(--font-body);
  background: none; border: none; cursor: pointer; padding: 0;
  transition: color 0.2s; display: flex; align-items: center; gap: 5px;
}
.nav-exp-btn::after { content: ''; display: inline-block; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.2s; }
.nav-exp-wrap.open .nav-exp-btn::after { transform: rotate(-135deg) translateY(-2px); }
.nav-exp-btn:hover, .nav-exp-wrap.open .nav-exp-btn { color: var(--brand); }
.nav-exp-panel {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 200px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s, visibility 0.18s;
  z-index: 300; box-shadow: 0 8px 32px rgba(28,21,16,0.12);
}
.nav-exp-wrap.open .nav-exp-panel { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-exp-panel a {
  display: block; padding: 13px 20px;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--border2);
  transition: background 0.15s, color 0.15s;
}
.nav-exp-panel a:last-child { border-bottom: none; }
.nav-exp-panel a:hover { background: var(--bg-2); color: var(--brand); }
.nav-book {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--bg-dark); color: var(--bg);
  padding: 10px 22px; border-radius: 999px;
  border: 1px solid var(--bg-dark);
  transition: background 0.2s; flex-shrink: 0;
}
.nav-book:hover { background: var(--bg-dark2); border-color: var(--bg-dark2); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px; margin-left: auto; flex-shrink: 0;
}
.nav-toggle span { display: block; height: 1px; background: var(--ink); transition: transform 0.25s, opacity 0.25s; }
.nav-toggle.open span:first-child { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:last-child  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; top: 72px; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 40px; z-index: 90;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
}
.drawer.open { transform: translateX(0); }
.drawer nav { display: flex; flex-direction: column; gap: 28px; }
.drawer nav a {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 400;
  color: var(--ink); letter-spacing: 0.02em;
  transition: color 0.15s;
}
.drawer nav a:hover { color: var(--brand); }
.drawer-book {
  margin-top: 24px; align-self: flex-start;
}
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 89;
  background: rgba(28,21,16,0.4); opacity: 0;
  pointer-events: none; transition: opacity 0.3s;
}
.drawer-backdrop.visible { opacity: 1; pointer-events: all; }

/* ── HERO ── */
.hero {
  min-height: 100svh; display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg); padding-top: 72px;
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 40px; max-width: 600px;
  margin-left: auto;
}
.hero-loc {
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 28px; font-weight: 400;
}
.hero-hl {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  font-weight: 400; line-height: 1.05;
  letter-spacing: 0.01em; color: var(--ink);
  margin-bottom: 24px;
}
.hero-hl em { font-style: italic; }
.hero-sub {
  font-size: 0.88rem; color: var(--ink-mid); line-height: 1.8;
  max-width: 400px; margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stat {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--border); padding-top: 24px;
}
.hero-stat-n {
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 400; color: var(--brand); line-height: 1.2;
}
.hero-stat-l {
  font-size: 0.72rem; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted); line-height: 1.5; font-weight: 400;
}
.hero-visual {
  position: relative; overflow: hidden; background: var(--bg-2);
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.1s ease; z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide > img,
.hero-slide > picture,
.hero-slide > picture img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* ── MARQUEE ── */
.marquee {
  background: var(--ink); overflow: hidden;
  padding: 14px 0; border-top: 1px solid rgba(248,245,240,0.08);
}
.marquee-track {
  display: flex; gap: 48px; align-items: center;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-body); font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(248,245,240,0.7); font-weight: 400; flex-shrink: 0;
}
.marquee-track .dot { color: var(--gold); font-size: 0.5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ── CONCEPT ── */
.concept {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 700px; background: var(--bg-2);
}
.concept-image { overflow: hidden; }
.concept-image img { width: 100%; height: 100%; object-fit: cover; }
.concept-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 80px 80px 64px;
}
.concept-copy .section-hl { margin-bottom: 24px; }
.concept-copy p { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 16px; }
.concept-copy .btn-primary { margin-top: 16px; align-self: flex-start; }

/* ── SERVICE CATEGORY TILES ── */
.cats-section { background: var(--bg); padding: 100px 0; }
.cats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.cat-tile {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  display: block; cursor: pointer;
}
.cat-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cat-tile:hover img { transform: scale(1.05); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,21,16,0.85) 0%, rgba(28,21,16,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 24px; color: var(--bg);
  transition: background 0.3s;
}
.cat-tile:hover .cat-overlay {
  background: linear-gradient(to top, rgba(28,21,16,0.9) 0%, rgba(28,21,16,0.3) 60%, transparent 100%);
}
.cat-overlay h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  letter-spacing: 0.02em; margin-bottom: 6px;
}
.cat-overlay p { font-size: 0.7rem; letter-spacing: 0.10em; color: rgba(248,245,240,0.7); margin-bottom: 14px; }
.cat-arrow {
  font-size: 0.62rem; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}
.cat-tile:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* ── MENU SECTION ── */
.menu-section { background: var(--bg); padding: 100px 0; }

.menu-block { margin-bottom: 60px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.menu-cat-label {
  padding: 10px 28px; background: var(--bg-2);
  font-size: 0.62rem; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--brand); border-bottom: 1px solid var(--border);
}
/* Per-category row hues */
.cat-stitch .menu-row  { background: #F8F6F0; }
.cat-stitch .menu-row:hover { background: #EEE9DC; }
.cat-ponytail .menu-row { background: #F7F3EE; }
.cat-ponytail .menu-row:hover { background: #EDE8E0; }
.cat-braids .menu-row  { background: #F6F2EC; }
.cat-braids .menu-row:hover { background: #ECE6DC; }
.cat-mens .menu-row    { background: #F5F4F1; }
.cat-mens .menu-row:hover { background: #EBE9E4; }

.menu-row {
  display: grid; grid-template-columns: 1fr 80px 64px 60px;
  align-items: center; padding: 16px 28px;
  border-bottom: 1px solid var(--border2);
  transition: background 0.15s;
}
.menu-row:last-child { border-bottom: none; }
.mr-name {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--ink); letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 10px;
}
.mr-icon {
  font-family: 'Material Symbols Outlined';
  font-size: 1rem; font-weight: 300;
  font-style: normal; line-height: 1;
  letter-spacing: normal; text-transform: none;
  white-space: nowrap; word-wrap: normal;
  direction: ltr; -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased;
  color: var(--brand); opacity: 0.75; flex-shrink: 0;
}
.cat-stitch .mr-icon  { color: #A68253; }
.cat-ponytail .mr-icon { color: #985E38; }
.cat-braids .mr-icon  { color: #8A6238; }
.cat-mens .mr-icon    { color: #7A8A78; }
.mr-dur { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; }
.mr-price {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--copper); font-weight: 400;
}
.mr-book {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand); text-align: right;
  cursor: pointer; transition: color 0.15s;
}
.mr-book:hover { color: var(--ink); }

/* Add-ons strip */
.addons-strip { margin-bottom: 48px; }
.addons-strip .label { margin-bottom: 20px; }
.addons-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.addon-item {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 16px;
  padding: 18px 24px; border: 1px solid var(--border);
  background: var(--bg); border-radius: var(--radius);
  transition: background 0.15s;
}
.addon-item:hover { background: var(--bg-2); }
.addon-name { font-size: 0.85rem; color: var(--ink); font-family: var(--font-display); }
.addon-price { font-family: var(--font-display); font-size: 1rem; color: var(--copper); }
.addon-add {
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; transition: color 0.15s;
}
.addon-add:hover { color: var(--ink); }

/* Consultation strip */
.consult-strip {
  background: var(--bg-dark); border-radius: var(--radius); padding: 40px 48px; margin-bottom: 48px;
  position: relative;
}
.consult-wave-border {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible; pointer-events: none; z-index: 2;
}
.wave-track {
  stroke: rgba(220,199,159,0.07); stroke-width: 1.5;
}
.wave-glow {
  stroke: rgba(220,199,159,0.65); stroke-width: 1.5;
  stroke-dasharray: 260 2420; stroke-dashoffset: 0;
  animation: wave-clockwise 9s linear infinite;
}
@keyframes wave-clockwise {
  to { stroke-dashoffset: -2680; }
}
.consult-strip-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.consult-hl { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--bg); margin-bottom: 6px; }
.consult-p { font-size: 0.82rem; color: rgba(248,245,240,0.6); }

/* Hair prep grid */
.prep-note .label { margin-bottom: 20px; }
.prep-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.prep-item { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); }
.prep-icon { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); margin-bottom: 12px; font-weight: 400; }
.prep-item p { font-size: 0.8rem; color: var(--ink-mid); line-height: 1.75; }

/* ── PACKAGES ── */
.packages-section { background: var(--bg-2); padding: 100px 0; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pkg-card {
  border: 1px solid var(--border); background: var(--bg);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(28,21,16,0.10); }
.pkg-card--hero {
  background: var(--bg-dark); border-color: var(--bg-dark);
  transform: translateY(-12px);
}
.pkg-card--hero:hover { transform: translateY(-20px); }
.pkg-bg {
  position: absolute; inset: -6px;
  background-size: cover; background-position: center top;
  filter: blur(12px) saturate(0.8);
  opacity: 0.11; z-index: 0;
  pointer-events: none;
}
.pkg-inner { padding: 36px 32px; position: relative; z-index: 1; }
.pkg-tag {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); padding: 4px 10px; border: 1px solid rgba(139,98,64,0.25);
  border-radius: 40px; margin-bottom: 20px;
}
.pkg-card--hero .pkg-tag { color: var(--gold); border-color: rgba(184,148,106,0.3); }
.pkg-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 4px 10px; border-radius: 40px;
}
.pkg-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.pkg-card--hero .pkg-name { color: var(--bg); }
.pkg-desc { font-size: 0.82rem; color: var(--muted); font-style: italic; margin-bottom: 24px; }
.pkg-card--hero .pkg-desc { color: rgba(248,245,240,0.6); }
.pkg-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.pkg-list li {
  font-size: 0.82rem; color: var(--ink-mid);
  padding-left: 14px; position: relative; line-height: 1.5;
}
.pkg-list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 4px; height: 1px; background: var(--brand); }
.pkg-card--hero .pkg-list li { color: rgba(248,245,240,0.75); }
.pkg-card--hero .pkg-list li::before { background: var(--gold); }
.pkg-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--border); }
.pkg-card--hero .pkg-foot { border-top-color: rgba(248,245,240,0.1); }
.pkg-price { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--copper); }
.pkg-card--hero .pkg-price { color: var(--bg); }

/* ── NOQUE CLUB ── */
.club-section { background: var(--bg-dark); padding: 100px 0; position: relative; overflow: hidden; }
.club-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.02;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.club-inner { position: relative; z-index: 1; }
.club-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.club-hl {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400; color: var(--bg); line-height: 1;
  letter-spacing: 0.04em; margin-bottom: 20px;
}
.club-sub { font-size: 0.88rem; color: rgba(248,245,240,0.6); line-height: 1.8; margin-bottom: 36px; }
.club-price-wrap { display: flex; align-items: baseline; gap: 10px; margin-bottom: 32px; }
.club-price { font-family: var(--font-display); font-size: 3.5rem; font-weight: 400; color: var(--bg); line-height: 1; }
.club-interval { font-size: 0.8rem; letter-spacing: 0.08em; color: var(--gold); }
.club-join-btn { margin-bottom: 14px; background: var(--bg); color: var(--ink); border-color: var(--bg); }
.club-join-btn:hover { background: var(--bg-2); border-color: var(--bg-2); }
.club-note { font-size: 0.72rem; color: rgba(248,245,240,0.4); letter-spacing: 0.06em; }
.club-benefits-hl {
  font-family: var(--font-display); font-size: 1rem; font-weight: 400;
  color: var(--bg); letter-spacing: 0.06em;
  padding-bottom: 16px; border-bottom: 1px solid rgba(248,245,240,0.1); margin-bottom: 24px;
}
.club-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.club-list li {
  font-size: 0.88rem; color: rgba(248,245,240,0.85);
  display: flex; align-items: flex-start; gap: 12px;
}
.club-list li span[aria-hidden] { color: var(--gold); flex-shrink: 0; font-size: 0.7rem; margin-top: 5px; }
.club-styles { margin-bottom: 32px; }
.club-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.club-tags span {
  font-size: 0.68rem; letter-spacing: 0.08em;
  color: rgba(248,245,240,0.7); border: 1px solid rgba(248,245,240,0.15);
  padding: 5px 12px; border-radius: 40px;
}
.club-cycle { }
.cycle-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.cycle-step { background: rgba(248,245,240,0.06); border-radius: var(--radius); padding: 12px 16px; text-align: center; min-width: 90px; }
.cycle-wk { display: block; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.cycle-step span:last-child { font-size: 0.78rem; color: rgba(248,245,240,0.8); }
.cycle-sep { font-size: 0.7rem; color: var(--gold); }

/* ── BRIDAL ── */
.bridal-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 90vh; background: var(--bg);
}
.bridal-image { overflow: hidden; position: relative; }
.bridal-image > img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.bridal-img-pair { display: grid; grid-template-columns: 1fr 1fr; height: 100%; gap: 4px; }
.bridal-img-pair img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bridal-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px; }
.bridal-hl {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 400; line-height: 1.05; color: var(--ink);
  letter-spacing: 0.02em; margin-bottom: 20px;
}
.bridal-hl em { font-style: italic; }
.bridal-sub { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.8; margin-bottom: 32px; }
.bridal-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.bridal-list li {
  font-size: 0.85rem; color: var(--ink-mid); padding-left: 16px; position: relative;
}
.bridal-list li::before { content: ''; position: absolute; left: 0; top: 0.58em; width: 5px; height: 1px; background: var(--brand); }
.bridal-note {
  font-size: 0.78rem; color: var(--brand);
  border-left: 2px solid var(--brand); padding: 10px 16px;
  background: rgba(139,98,64,0.05); margin-bottom: 32px; border-radius: 0 2px 2px 0;
}
.bridal-foot { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.bridal-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; color: var(--copper); }

/* ── THE SPACE ── */
.space-section { background: var(--bg-2); padding: 100px 0; }
.space-header { text-align: center; margin-bottom: 56px; padding: 0 40px; }
.space-header .section-hl { margin-bottom: 16px; }
.space-header .section-p { margin: 0 auto; text-align: center; }
.space-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
  padding: 0 40px;
}
.space-img { overflow: hidden; }
.space-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.space-img:hover img { transform: scale(1.04); }
.space-img--main { grid-row: span 2; }

/* ── FOUNDER ── */
.founder-section {
  display: grid; grid-template-columns: 5fr 7fr;
  background: var(--bg); padding: 100px 0;
  max-width: var(--max); margin: 0 auto; gap: 80px; padding-left: 40px; padding-right: 40px;
  align-items: center;
}
.founder-image { overflow: hidden; border-radius: var(--radius); }
.founder-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.founder-copy { }
.founder-quote {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 400;
  font-style: italic; color: var(--ink-mid); line-height: 1.85;
  border-left: 2px solid var(--brand); padding-left: 32px;
  margin: 24px 0 24px;
}
.founder-sig {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); font-weight: 400;
  padding-left: 32px;
}

/* ── GALLERY ── */
.gallery-section { background: var(--bg-2); padding: 100px 0; }
.gallery-section .container { margin-bottom: 48px; }
.gallery-section .section-header { margin-bottom: 0; }
.strip-advance-row {
  position: relative; height: 0; overflow: visible; z-index: 10;
}
.strip-advance-row .strip-advance-btn {
  position: absolute; top: 8px; right: 16px; z-index: 10;
}
.strip-advance-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid rgba(93,65,32,0.35); background: transparent;
  color: var(--brand); cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.strip-advance-btn:hover { background: var(--bg-dark); border-color: var(--bg-dark); color: var(--bg); }
.strip-advance-btn:active { transform: scale(0.92); }
.gallery-cta { text-align: center; padding-top: 48px; }

/* ── Image strip ── */
@keyframes stripScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.strip-vp {
  overflow: hidden;
}
.strip-trk {
  display: flex; gap: 10px;
  width: max-content;
  animation: stripScroll 240s linear infinite;
  -webkit-transform: translateZ(0); transform: translateZ(0);
}
.strip-trk:hover { animation-play-state: paused; }
.s-img {
  width: 220px; height: 290px; flex-shrink: 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}
.s-img:hover { transform: scale(1.03); }
.s-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
@media (max-width: 560px) { .s-img { width: 160px; height: 210px; } }

/* ── FAQs ── */
.faqs-section { background: var(--bg); padding: 100px 0; }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-header { position: sticky; top: 100px; }
.faq-header .section-hl { margin-bottom: 0; }

/* ── POLICIES ── */
.policies-section { background: var(--bg-2); padding: 100px 0; }
.policy-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.policy-header { position: sticky; top: 100px; }

/* Shared accordion */
.acc-item { border-bottom: 1px solid var(--border); }
.acc-btn {
  width: 100%; text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 400;
  color: var(--ink); letter-spacing: 0.01em; cursor: pointer;
  transition: color 0.15s;
}
.acc-btn::after { content: '+'; font-family: var(--font-body); font-size: 1.1rem; color: var(--muted); flex-shrink: 0; transition: transform 0.2s; }
.acc-btn[aria-expanded="true"]::after { transform: rotate(45deg); color: var(--brand); }
.acc-btn:hover { color: var(--brand); }
.acc-body { padding: 0 0 20px; }
.acc-body p { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.8; }

/* ── CONTACT ── */
/* ── SUBPAGE HERO ── */
.subpage-hero {
  position: relative; width: 100%; height: 60vh; min-height: 340px;
  overflow: hidden; background: var(--bg-dark); margin-top: 72px;
}
.subpage-hero img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  opacity: 0.55;
}
.subpage-hero--bridal img { object-position: center center; }
.subpage-hero-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 48px 64px;
  background: linear-gradient(to top, rgba(28,21,16,0.7) 0%, transparent 60%);
}
.subpage-hero-overlay .label { color: var(--gold); margin-bottom: 10px; }
.subpage-hero-hl {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400; color: var(--bg); line-height: 1.05; margin-bottom: 12px;
}
.subpage-hero-hl em { font-style: italic; }
.subpage-hero-p { font-size: 0.88rem; color: rgba(248,245,240,0.7); max-width: 480px; }

/* ── NOQUE ON SET ── */
.on-set-section { background: var(--bg); padding: 100px 0; }
.on-set-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.on-set-p { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.8; margin-bottom: 28px; max-width: 420px; }
.on-set-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.on-set-list li { font-size: 0.82rem; color: var(--ink-mid); padding-left: 16px; position: relative; }
.on-set-list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 1px; background: var(--brand); }
.on-set-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(4, 150px);
  gap: 5px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
/* Grid placement */
.osc-1  { grid-column: 1 / 3; grid-row: 1; }
.osc-2  { grid-column: 3;     grid-row: 1; }
.osc-3  { grid-column: 1;     grid-row: 2; }
.osc-4  { grid-column: 2 / 4; grid-row: 2; }
.osc-5  { grid-column: 1 / 3; grid-row: 3; }
.osc-6  { grid-column: 3;     grid-row: 3; }
.osc-7  { grid-column: 1;     grid-row: 4; }
.osc-8  { grid-column: 2;     grid-row: 4; }
.osc-9  { grid-column: 3;     grid-row: 4; }
.osc-10 { display: none; }
.osc-11 { display: none; }
.osc-12 { display: none; }
/* Cell hover */
.osc-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--bg-dark);
}
.osc-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(248,245,240,0.08);
  opacity: 0; transition: opacity 0.25s;
}
.osc-item:hover::after { opacity: 1; }
.osc-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.45s var(--ease);
}
.osc-item:hover img { transform: scale(0.88); object-fit: contain; }

/* On-set lightbox */
.osc-lightbox {
  position: fixed; inset: 0; z-index: 600;
  display: flex; align-items: center; justify-content: center;
}
.osc-lightbox[hidden] { display: none; }
.osc-lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(28,21,16,0.92);
  backdrop-filter: blur(14px);
}
.osc-lb-img {
  position: relative; z-index: 1;
  max-width: 88vw; max-height: 86vh;
  object-fit: contain; border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.osc-lb-close {
  position: absolute; top: 20px; right: 24px; z-index: 2;
  font-size: 2rem; line-height: 1; color: rgba(248,245,240,0.75);
  background: none; border: none; cursor: pointer;
  transition: color 0.15s;
}
.osc-lb-close:hover { color: #fff; }
.osc-lb-prev, .osc-lb-next {
  position: absolute; top: 50%; z-index: 2;
  transform: translateY(-50%);
  font-size: 2.8rem; line-height: 1;
  color: rgba(248,245,240,0.7);
  background: rgba(248,245,240,0.08);
  border: none; cursor: pointer;
  padding: 10px 18px; border-radius: var(--radius);
  backdrop-filter: blur(4px);
  transition: background 0.15s, color 0.15s;
}
.osc-lb-prev:hover, .osc-lb-next:hover {
  background: rgba(248,245,240,0.18); color: #fff;
}
.osc-lb-prev { left: 20px; }
.osc-lb-next { right: 20px; }

/* ── CONTACT MAP ── */
.contact-map {
  margin-top: 28px; height: 290px;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(248,245,240,0.12);
  position: relative;
}
#noque-map { position: absolute; inset: 0; width: 100%; height: 100%; }
#noque-map .leaflet-tile-pane {
  filter: saturate(0.88) brightness(1.05) sepia(0.12);
}
#noque-map .leaflet-control-attribution { display: none; }
#noque-map .leaflet-control-zoom a {
  background: rgba(93,65,32,0.85); color: var(--gold);
  border-color: rgba(220,199,159,0.3); font-size: 0.9rem;
}
#noque-map .leaflet-control-zoom a:hover { background: var(--bg-dark); }
.noque-map-pin {
  position: relative; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.noque-map-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(166,130,83,0) 0deg, rgba(166,130,83,0.5) 90deg,
    rgba(166,130,83,0) 180deg, rgba(166,130,83,0) 360deg);
  animation: mapRingSpin 6s linear infinite;
  box-shadow: none;
}
@keyframes mapRingSpin { to { transform: rotate(360deg); } }
.noque-map-core {
  position: absolute; inset: 5px; border-radius: 50%;
  background: var(--bg); border: 1px solid rgba(166,130,83,0.6);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-logo); font-size: 0.5rem; letter-spacing: 0.06em;
  color: var(--brand); box-shadow: 0 2px 8px rgba(28,21,16,0.25);
}

.contact-section { background: var(--bg-dark); position: relative; overflow: hidden; }
.enquiry-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.02;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; position: relative; z-index: 1; }
.contact-info { padding: 80px 64px 80px 40px; max-width: calc(var(--max)/2); margin-left: auto; }
.contact-info .section-hl { color: var(--bg); margin-bottom: 40px; }
.contact-info .label { color: var(--gold); }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; margin-bottom: 32px; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; }
.cd-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(248,245,240,0.4); }
.cd-val { font-size: 0.88rem; color: var(--bg); transition: color 0.15s; }
a.cd-val:hover { color: var(--gold); }
.contact-socials { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(248,245,240,0.6); transition: color 0.15s;
}
.social-link:hover { color: var(--bg); }
.contact-review { }
.contact-form-wrap {
  background: var(--bg-dark2); padding: 80px 64px 80px 40px;
}
.contact-form-wrap .label { color: var(--gold); }

/* Forms */
.modal-form, .contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand); font-weight: 400;
}
.contact-form-wrap .form-field label { color: var(--gold); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 0.88rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px; outline: none;
  transition: border-color 0.18s;
  -webkit-appearance: none; appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--brand);
}
.contact-form-wrap .form-field input,
.contact-form-wrap .form-field select,
.contact-form-wrap .form-field textarea {
  background: rgba(248,245,240,0.05); border-color: rgba(248,245,240,0.12);
  color: var(--bg);
}
.contact-form-wrap .form-field input:focus,
.contact-form-wrap .form-field select:focus,
.contact-form-wrap .form-field textarea:focus {
  border-color: var(--gold);
}
.contact-form-wrap .form-field input::placeholder,
.contact-form-wrap .form-field textarea::placeholder { color: rgba(248,245,240,0.3); }
.contact-form-wrap .form-field select option { background: var(--bg-dark); color: var(--bg); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-status { font-size: 0.78rem; text-align: center; color: var(--brand); min-height: 20px; }

/* ── FINAL CTA ── */
.cta-section {
  background: var(--bg-2); padding: 120px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: 'NOQUE';
  position: absolute; font-family: var(--font-display);
  font-size: 22vw; font-weight: 400; letter-spacing: 0.1em;
  color: rgba(28,21,16,0.04); top: 50%; left: 50%;
  transform: translate(-50%, -50%); pointer-events: none; white-space: nowrap;
}
.cta-wave-border {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible; pointer-events: none; z-index: 1;
}
.cta-wave-track {
  stroke: rgba(166,130,83,0.08); stroke-width: 1.5;
}
.cta-wave-glow {
  stroke: rgba(166,130,83,0.6); stroke-width: 1.5;
  stroke-dasharray: 260 2420; stroke-dashoffset: 0;
  animation: wave-clockwise 9s linear infinite;
}
.cta-inner { position: relative; z-index: 2; }
.cta-script {
  font-family: var(--font-script); font-size: 2.4rem;
  color: var(--brand); display: block; margin-bottom: 10px;
}
.cta-hl {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400; color: var(--ink); margin-bottom: 20px; letter-spacing: 0.02em;
}
.cta-p { font-size: 0.88rem; color: var(--ink-mid); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(28,21,16,0.8); backdrop-filter: blur(4px);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
}
.modal-overlay[hidden] { display: none; }
@media (min-width: 560px) { .modal-overlay { align-items: center; padding: 24px; } }
.modal {
  background: var(--bg); width: 100%; max-width: 480px;
  padding: 40px 36px 44px; position: relative;
  border-radius: 20px 20px 0 0; max-height: 92svh; overflow-y: auto;
}
@media (min-width: 560px) { .modal { border-radius: 20px; } }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  font-size: 1.4rem; color: var(--muted); padding: 4px 8px;
  transition: color 0.15s; line-height: 1;
}
.modal-close:hover { color: var(--ink); }
.modal-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--ink); margin: 8px 0 8px; }
.modal-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 28px; }

/* ── FOOTER ── */
.footer { background: var(--bg-dark); padding: 80px 40px 0; }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(248,245,240,0.08);
}
.footer-logo {
  display: block; font-family: var(--font-logo); font-size: 1.15rem; font-weight: 400;
  letter-spacing: 0.22em; color: rgba(248,246,240,0.9); margin-bottom: 12px;
}
.footer-tagline { display: block; font-size: 0.75rem; color: rgba(248,245,240,0.4); letter-spacing: 0.06em; margin-bottom: 24px; }
.footer-contact-mini { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-mini a, .footer-contact-mini span {
  font-size: 0.78rem; color: rgba(248,245,240,0.5); transition: color 0.15s;
}
.footer-contact-mini a:hover { color: var(--bg); }
.footer-col-hl { display: block; font-size: 0.62rem; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.8rem; color: rgba(248,245,240,0.5); transition: color 0.15s; }
.footer-nav a:hover { color: var(--bg); }
.footer-socials { display: flex; flex-direction: column; gap: 14px; }
.footer-social { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: rgba(248,245,240,0.5); transition: color 0.15s; }
.footer-social:hover { color: var(--bg); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding: 20px 0; display: flex; justify-content: space-between;
  font-size: 0.68rem; color: rgba(248,245,240,0.25); letter-spacing: 0.06em;
}

/* ================================================================
   LIGHTBOX
================================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(28, 21, 16, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: lbIn 0.25s var(--ease);
}
.lightbox[hidden] { display: none; }
@keyframes lbIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-img-wrap {
  max-width: min(90vw, 800px);
  max-height: 90svh;
  display: flex; align-items: center; justify-content: center;
  animation: lbImgIn 0.3s var(--ease);
}
@keyframes lbImgIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lightbox-img {
  max-width: 100%; max-height: 90svh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  display: block;
}
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  font-size: 2rem; line-height: 1; color: rgba(248,246,240,0.8);
  background: none; border: none; cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  z-index: 501;
}
.lightbox-close:hover { color: #fff; transform: scale(1.15); }

/* Make strip images show pointer */
.s-img { cursor: zoom-in; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding: 80px 40px 80px 24px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; gap: 16px; }
  .pkg-card--hero { transform: none; }
  .pkg-card--hero:hover { transform: translateY(-6px); }
  .prep-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-book { display: none; }
  .nav-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 48px 24px 40px; max-width: 100%; margin: 0; order: 2; }
  .hero-visual { height: 70vw; max-height: 480px; order: 1; }
  .hero-pill { display: none; }
  .hero-hl { font-size: clamp(2.4rem, 8vw, 3.6rem); }

  .concept { grid-template-columns: 1fr; }
  .concept-image { height: 380px; }
  .concept-copy { padding: 56px 24px; }

  .cats-section { padding: 72px 0; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }

  .bridal-section { grid-template-columns: 1fr; }
  .bridal-image { height: 60vw; max-height: 420px; }
  .bridal-img-pair { gap: 2px; }
  .bridal-copy { padding: 56px 24px; }

  .space-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; padding: 0 24px; }
  .space-img--main { grid-column: 1 / -1; grid-row: auto; }

  .founder-section { grid-template-columns: 1fr; padding: 72px 24px; gap: 40px; }
  .founder-image img { aspect-ratio: 4/3; }

  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-header { position: static; }
  .policy-layout { grid-template-columns: 1fr; gap: 36px; }
  .policy-header { position: static; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { padding: 60px 24px; margin: 0; max-width: 100%; }
  .contact-form-wrap { padding: 60px 24px; }
  .contact-map { height: 180px; }
  .contact-details { grid-template-columns: 1fr 1fr; gap: 16px 20px; }

  .on-set-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .on-set-collage { grid-template-rows: repeat(4, 100px); }
  .on-set-section { padding: 72px 0; }

  .club-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }


  .container { padding: 0 24px; }
  .menu-section { padding: 72px 0; }
  .packages-section { padding: 72px 0; }
  .club-section { padding: 72px 0; }
  .faqs-section { padding: 72px 0; }
  .policies-section { padding: 72px 0; }
  .cta-section { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .menu-row { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 2px 8px; padding: 14px 16px; }
  .mr-name { grid-column: 1; grid-row: 1; }
  .mr-dur  { grid-column: 1; grid-row: 2; font-size: 0.68rem; }
  .mr-price { grid-column: 2; grid-row: 1; text-align: right; }
  .mr-book  { grid-column: 2; grid-row: 2; text-align: right; }
  .addons-row { grid-template-columns: 1fr; }
  .addon-item { grid-template-columns: 1fr auto auto; }
  .consult-strip-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .consult-strip { padding: 32px 24px; }
  .prep-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: 1fr; }
  .cats-section .container { padding: 0; }
  .cat-tile { aspect-ratio: 16/10; }
  .bridal-foot { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cycle-row { gap: 8px; }
  .club-benefits { padding: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
}
