/* ================================================================
   ANGEL HAIR BRAIDS — Design System
   Beverly Hills Luxury Atelier · Since 1980
================================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500;600&family=Cormorant:ital@1&display=swap');

/* --- Design Tokens --- */
:root {
  --ivory:    #FAFAF5;
  --cream:    #F5EDE0;
  --sand:     #EDE0CE;
  --gold:     #C4975A;
  --gold-lt:  #D9B07A;
  --gold-dk:  #A07840;
  --deep:     #1A1207;
  --mid:      #4A3728;
  --soft:     #7A6655;
  --muted:    #B5A99A;
  --divider:  #E8DDD0;
  --white:    #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --nav-h:   76px;
  --sp-xs:   clamp(24px, 3vw, 40px);
  --sp-sm:   clamp(40px, 5vw, 64px);
  --sp-md:   clamp(64px, 8vw, 100px);
  --sp-lg:   clamp(100px, 12vw, 160px);
  --max-w:   1280px;
  --gutter:  clamp(20px, 5vw, 60px);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  background: var(--ivory);
  color: var(--deep);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  /* Inner pages: always show light background */
  background: rgba(250, 250, 245, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  transition: background 0.4s var(--ease-in-out), backdrop-filter 0.4s, border-color 0.4s;
}
.nav.scrolled {
  background: rgba(250, 250, 245, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--divider);
}

/* ---- Hero-page nav: transparent at top, white text ---- */
.nav.nav-hero {
  background: transparent;
  border-bottom-color: transparent;
}
.nav.nav-hero.scrolled {
  background: rgba(250, 250, 245, 0.97);
  border-bottom-color: var(--divider);
}
/* White links when hero nav is at top */
.nav.nav-hero:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.88);
  opacity: 1;
}
.nav.nav-hero:not(.scrolled) .nav-links a:hover,
.nav.nav-hero:not(.scrolled) .nav-links a.active {
  color: var(--gold-lt);
  opacity: 1;
}
.nav.nav-hero:not(.scrolled) .btn-book {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}
.nav.nav-hero:not(.scrolled) .btn-book:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
}
.nav.nav-hero:not(.scrolled) .nav-toggle span {
  background: var(--white);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--gold-dk); }

.btn-book {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--deep);
  padding: 11px 24px;
  border: 1px solid var(--deep);
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-book:hover { background: var(--gold-dk); border-color: var(--gold-dk); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--deep);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ivory);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-mobile.open { opacity: 1; pointer-events: all; display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  color: var(--deep);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav-mobile a:hover { opacity: 1; color: var(--gold-dk); }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Top-down gradient: darkens behind the nav */
    linear-gradient(to bottom, rgba(26, 18, 7, 0.55) 0%, rgba(26, 18, 7, 0.1) 25%, transparent 45%),
    /* Bottom-up gradient: darkens behind the hero text */
    linear-gradient(to top, rgba(26, 18, 7, 0.75) 0%, rgba(26, 18, 7, 0.35) 45%, transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.3s var(--ease-out-expo) forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(68px, 11vw, 160px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s 0.5s var(--ease-out-expo) forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-lt);
}
.hero-cta {
  opacity: 0;
  animation: fadeUp 1s 0.8s var(--ease-out-expo) forwards;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s 1.2s var(--ease-out-expo) forwards;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--gold-lt);
  animation: scrollLine 2s 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ================================================================
   BUTTONS
================================================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 15px 36px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-primary:hover { background: var(--gold-dk); border-color: var(--gold-dk); }

.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep);
  background: transparent;
  border: 1px solid var(--deep);
  padding: 14px 32px;
  transition: background 0.25s, color 0.25s;
}
.btn-secondary:hover { background: var(--deep); color: var(--white); }

.btn-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold-dk);
  border: 1px solid var(--gold-dk);
  padding: 15px 36px;
  transition: background 0.25s, color 0.25s;
}
.btn-gold:hover { background: var(--deep); border-color: var(--deep); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s, gap 0.2s;
}
.btn-link:hover { color: var(--deep); gap: 16px; }
.btn-link::after { content: '→'; font-size: 14px; letter-spacing: 0; }

/* ================================================================
   SECTION — Shared
================================================================ */
.section { padding: var(--sp-lg) 0; }
.section-sm { padding: var(--sp-md) 0; }
.section-xs { padding: var(--sp-sm) 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--deep);
}
.section-title em { font-style: italic; }

.section-body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--soft);
  max-width: 560px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--divider);
}
.divider-gold {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* ================================================================
   MARQUEE / TICKER
================================================================ */
.marquee-wrap {
  background: var(--deep);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  padding: 0 clamp(20px, 3vw, 40px);
  flex-shrink: 0;
}
.marquee-item span {
  color: var(--gold-lt);
  font-style: normal;
  margin: 0 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   STATS BAR
================================================================ */
.stats-bar {
  background: var(--cream);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
}
.stat-item {
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--divider);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 300;
  color: var(--deep);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

/* ================================================================
   INTRO / PULLQUOTE
================================================================ */
.intro-section {
  background: var(--ivory);
}
.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--deep);
  letter-spacing: 0.01em;
}
.pullquote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
  font-style: normal;
  margin-top: 28px;
}

/* ================================================================
   SERVICES
================================================================ */
.services-section { background: var(--ivory); }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(48px, 7vw, 80px);
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--cream);
  overflow: hidden;
  position: relative;
  cursor: default;
}
.service-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body {
  padding: clamp(24px, 3vw, 36px);
}
.service-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold-dk);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.service-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 14px;
}
.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.service-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft);
  background: var(--sand);
  padding: 5px 12px;
  border-radius: 1px;
}

/* ================================================================
   FEATURED SPLIT
================================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.split-content {
  background: var(--cream);
  padding: clamp(48px, 8vw, 100px) clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ================================================================
   GALLERY PREVIEW
================================================================ */
.gallery-preview { background: var(--ivory); }
.gallery-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 5vw, 56px);
  flex-wrap: wrap;
}
.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}
.gallery-preview-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-preview-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 7, 0);
  transition: background 0.4s;
}
.gallery-preview-item:hover::after { background: rgba(26, 18, 7, 0.25); }
.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
  display: block;
}
.gallery-preview-item:hover img { transform: scale(1.06); }

/* Grid layout */
.gp-1 { grid-column: span 5; aspect-ratio: 4/5; }
.gp-2 { grid-column: span 4; aspect-ratio: 3/4; }
.gp-3 { grid-column: span 3; aspect-ratio: 2/3; }
.gp-4 { grid-column: span 3; aspect-ratio: 3/4; }
.gp-5 { grid-column: span 4; aspect-ratio: 3/4; }
.gp-6 { grid-column: span 5; aspect-ratio: 4/5; }

/* ================================================================
   FULL GALLERY PAGE
================================================================ */
.gallery-masonry {
  columns: 3 280px;
  column-gap: 12px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,18,7,0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-masonry-item:hover::after { background: rgba(26,18,7,0.2); }
.gallery-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease-out-expo);
}
.gallery-masonry-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 18, 7, 0.96);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 32px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 20px;
  transition: color 0.2s;
  user-select: none;
}
.lightbox-nav:hover { color: var(--white); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-section { background: var(--deep); }
.testimonials-section .section-label { color: var(--gold-lt); }
.testimonials-section .section-title { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(40px, 6vw, 72px);
}
.testimonial-card {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars span {
  color: var(--gold-lt);
  font-size: 14px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.testimonial-source {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* ================================================================
   HAIR CARE TIPS / BLOG
================================================================ */
.tips-section { background: var(--ivory); }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(40px, 6vw, 72px);
}
.tip-card {
  border-top: 2px solid var(--divider);
  padding-top: 28px;
  cursor: default;
  transition: border-color 0.25s;
}
.tip-card:hover { border-top-color: var(--gold); }
.tip-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold-dk);
  display: block;
  margin-bottom: 16px;
}
.tip-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.25;
  margin-bottom: 14px;
}
.tip-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
}

/* ================================================================
   FAQ
================================================================ */
.faq-section { background: var(--cream); }
.faq-list {
  max-width: 780px;
  margin: clamp(40px, 6vw, 72px) auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: clamp(20px, 2.5vw, 28px) 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--deep);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-dk); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--divider);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  color: var(--white);
}
.faq-answer {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 300;
  color: var(--soft);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 28px;
}

/* ================================================================
   BOOK / CTA
================================================================ */
.cta-section {
  position: relative;
  background: var(--deep);
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196, 151, 90, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: block;
  margin-bottom: 20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: var(--gold-lt); }
.cta-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 440px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-cta-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--gold-lt);
  padding: 17px 44px;
  transition: background 0.25s;
}
.btn-cta-primary:hover { background: var(--gold-dk); color: var(--white); }
.btn-cta-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 16px 36px;
  transition: border-color 0.25s, color 0.25s;
}
.btn-cta-outline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ================================================================
   CONTACT
================================================================ */
.contact-section { background: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.contact-info-item {
  border-top: 1px solid var(--divider);
  padding: 24px 0;
}
.contact-info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: block;
  margin-bottom: 8px;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.4;
}
.contact-info-value a { transition: color 0.2s; }
.contact-info-value a:hover { color: var(--gold-dk); }

/* Contact Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--deep);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--divider);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--gold-dk); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

/* ================================================================
   OUR STORY PAGE
================================================================ */
.story-hero {
  background: var(--cream);
  padding-top: calc(var(--nav-h) + clamp(60px, 8vw, 100px));
  padding-bottom: clamp(60px, 8vw, 100px);
}
.story-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.story-content-section {
  background: var(--ivory);
}
.story-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.story-img-wrap {
  position: relative;
}
.story-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px -16px auto auto;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}
.story-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
  background: var(--cream);
  padding-top: calc(var(--nav-h) + clamp(60px, 8vw, 100px));
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  border: 1px solid var(--divider);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 300;
  line-height: 1;
  color: var(--deep);
  letter-spacing: -0.02em;
}
.page-hero-title em { font-style: italic; color: var(--gold-dk); }
.page-hero-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 300;
  color: var(--soft);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 24px;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 40px;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-dk); }
.breadcrumb span { opacity: 0.4; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--deep);
  color: rgba(255,255,255,0.5);
}
.footer-top {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.footer-brand-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 18px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 260px;
}
.footer-heading {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
  display: block;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-contact-item {
  margin-bottom: 12px;
}
.footer-contact-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  display: block;
  margin-bottom: 4px;
}
.footer-contact-value {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}
.footer-contact-value a { transition: color 0.2s; }
.footer-contact-value a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold-lt); }

/* ================================================================
   MAP / LOCATION
================================================================ */
.location-section { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
}

/* ================================================================
   SERVICES PAGE
================================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.service-full-card {
  background: var(--cream);
  overflow: hidden;
}
.service-full-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.service-full-card:hover .service-full-img img { transform: scale(1.06); }
.service-full-body {
  padding: clamp(32px, 4vw, 48px);
}
.service-full-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 16px;
  line-height: 1.1;
}
.service-full-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 300;
  color: var(--soft);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-full-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-full-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--soft);
  padding-left: 20px;
  position: relative;
}
.service-full-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dk);
  font-size: 12px;
}

/* ================================================================
   ABOUT / OUR STORY
================================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(40px, 6vw, 72px);
}
.value-card {
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 36px);
  background: var(--cream);
  border-top: 2px solid var(--gold);
}
.value-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  color: var(--gold-dk);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}
.value-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 14px;
}
.value-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
}

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

  .hero-title { font-size: clamp(52px, 12vw, 80px); }

  .services-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-img { aspect-ratio: 4/3; }
  .split-img img { height: 100%; }
  .gallery-grid-preview { grid-template-columns: repeat(2, 1fr); }
  .gp-1, .gp-2, .gp-3, .gp-4, .gp-5, .gp-6 {
    grid-column: span 1;
    aspect-ratio: 3/4;
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .story-hero-grid { grid-template-columns: 1fr; }
  .story-content-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--divider); }
}
