/* ============================================================
   IKORA HAIR · Refined Beauty
   Palette drawn from the studio: espresso, cream, mushroom
   taupe and brushed gold. Type: Cormorant Garamond + Jost.
   ============================================================ */

:root {
  --cream:        #f6efe0;   /* page base            */
  --cream-soft:   #faf5ea;   /* raised panels        */
  --ivory:        #fffdf8;   /* cards                */
  --white:        #ffffff;   /* elevated cards       */
  --paper:        #fffdf9;   /* light sections       */
  --shadow:       0 26px 64px -38px rgba(58, 42, 32, 0.38);
  --shadow-sm:    0 14px 40px -30px rgba(58, 42, 32, 0.30);
  --espresso:     #3a2a20;   /* primary text / brand */
  --espresso-2:   #5b4636;   /* secondary text       */
  --taupe:        #9c8a76;   /* muted text           */
  --taupe-line:   rgba(58, 42, 32, 0.14);
  --taupe-line-2: rgba(58, 42, 32, 0.08);
  --gold:         #b48a54;   /* accent               */
  --gold-soft:    #cdae83;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(4.5rem, 11vw, 9rem); }

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: 0.005em; }

h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  color: var(--espresso);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold); opacity: 0.65;
}
/* centered labels get a hairline on both sides */
.hero .eyebrow::after,
.reviews .eyebrow::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold); opacity: 0.65;
}

.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--espresso-2); }

.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { margin-bottom: 1.25rem; }
.section-intro { color: var(--espresso-2); max-width: 40rem; }

/* ---------- brand wordmark ---------- */
.brand { display: inline-flex; align-items: baseline; gap: 0.5rem; line-height: 1; }
.brand-mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: 0.28em;
  color: var(--espresso);
  padding-left: 0.28em; /* optical balance for tracking */
}
.brand-sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: background .5s var(--ease), color .5s var(--ease),
              border-color .5s var(--ease), transform .5s var(--ease);
}
.btn-solid { background: var(--espresso); color: var(--cream); }
.btn-solid:hover { background: var(--gold); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--espresso); border-color: var(--taupe-line); }
.btn-line:hover { border-color: var(--espresso); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--espresso); border-color: var(--taupe-line); padding: 0.68rem 1.6rem; }
.btn-ghost:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
  padding-block: 1.4rem;
}
.site-header.scrolled {
  background: rgba(246, 239, 224, 0.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--taupe-line-2);
  padding-block: 0.9rem;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav { display: flex; gap: 2.4rem; margin-left: auto; }
.nav a {
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--espresso-2); position: relative; padding-block: 0.3rem;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav a:hover { color: var(--espresso); }
.nav a:hover::after { width: 100%; }
.header-book { margin-left: 2.2rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--espresso); transition: transform .4s var(--ease), opacity .3s; }

/* mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav nav { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; }
.mobile-nav a { font-family: var(--font-display); font-size: 2rem; color: var(--espresso); }
.mobile-nav .btn { font-family: var(--font-sans); font-size: 0.8rem; margin-top: 1rem; }
.mobile-nav .btn-solid { color: var(--cream); }
.mobile-nav .btn-solid:hover { color: var(--espresso); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, #fbf6ec 0%, var(--cream) 55%),
    var(--cream);
}
.hero-glow {
  position: absolute; width: 60vmax; height: 60vmax; border-radius: 50%;
  left: 50%; top: 46%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(205, 174, 131, 0.28), rgba(205,174,131,0) 62%);
  filter: blur(20px); pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--taupe); }

.hero-title { margin: 0.4rem 0 1.4rem; }
.hero-word {
  display: block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(4.5rem, 20vw, 15rem);
  letter-spacing: 0.14em;
  line-height: 0.92;
  color: var(--espresso);
  padding-left: 0.14em;
}

/* ---- hero load-in animation ---- */
.hero-word span { display: inline-block; }
.hero-word span {
  opacity: 0; transform: translateY(0.5em); filter: blur(9px);
  animation: letterIn 1.1s var(--ease) forwards;
  animation-delay: calc(0.3s + var(--i) * 0.1s);
}
@keyframes letterIn { to { opacity: 1; transform: none; filter: blur(0); } }
.hero-in {
  opacity: 0;
  animation: heroFadeUp 1s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-word span, .hero-in { opacity: 1 !important; transform: none !important; filter: none !important; }
}
.hero-word-sub {
  display: block;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.9rem, 2.4vw, 1.3rem);
  letter-spacing: 0.85em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.6rem;
  padding-left: 0.85em;
}
.hero-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); color: var(--gold);
  margin-bottom: 0.4rem;
}
.hero-services {
  font-size: 0.82rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--espresso-2); margin-bottom: 2.6rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-line {
  background: var(--white); color: var(--espresso);
  border-color: var(--white); box-shadow: var(--shadow-sm);
}
.hero-actions .btn-line:hover {
  background: var(--gold-soft); border-color: var(--gold-soft);
  color: var(--espresso); transform: translateY(-2px);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper); position: relative; overflow: hidden; }

.about-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

/* small "light defines colour, light shapes form" motif,
   sitting above the philosophy heading */
.light-fx {
  position: relative; display: block;
  width: 84px; height: 84px;
  margin-bottom: 1.8rem;
  pointer-events: none;
}
.light-glow {
  position: absolute; inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 246, 224, 0.8), rgba(255, 246, 224, 0) 70%);
  filter: blur(14px); will-change: opacity, transform;
  animation: lglow 6s var(--ease) infinite alternate;
}
@keyframes lglow { from { opacity: 0.35; transform: scale(0.94); } to { opacity: 0.7; transform: scale(1.08); } }

/* the "form": concentric outlines with light tracing around them */
.light-form { position: absolute; inset: 0; width: 100%; height: 100%; }
.lf-base  { stroke: var(--gold); stroke-width: 1;   opacity: 0.22; vector-effect: non-scaling-stroke; }
.lf-trace { stroke: var(--gold); stroke-width: 1.5; opacity: 0.75; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.lf-trace   { stroke-dasharray: 34 205; animation: trace1 6s linear infinite; }
.lf-trace-2 { stroke-dasharray: 22 129; animation: trace2 8s linear infinite; }
@keyframes trace1 { to { stroke-dashoffset: -239; } }
@keyframes trace2 { to { stroke-dashoffset: 151; } }
.about-copy p + p { margin-top: 1.3rem; }

.pillars { display: flex; flex-direction: column; gap: 0; }
.pillar { padding: 1.9rem 0; border-top: 1px solid var(--taupe-line); position: relative; }
.pillar:last-child { border-bottom: 1px solid var(--taupe-line); }
.pillar-icon {
  display: block; color: var(--gold); margin-bottom: 0.95rem;
}
.pillar-icon svg { width: 30px; height: 30px; display: block; }
.pillar h3 { font-size: 1.9rem; margin-bottom: 0.4rem; color: var(--espresso); }
.pillar p { color: var(--espresso-2); font-size: 0.98rem; max-width: 30rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }

/* elevated white "menu card" for strong contrast */
.menu {
  background: var(--white);
  border-radius: 18px;
  padding: clamp(1.6rem, 4vw, 3.4rem);
  box-shadow: var(--shadow);
  position: relative;
}

.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  padding-bottom: 2.5rem; margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--taupe-line);
}
.menu-tab {
  font-family: var(--font-sans); font-size: 0.76rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--espresso-2); background: transparent;
  border: 1px solid var(--taupe-line); border-radius: 100px;
  padding: 0.7rem 1.4rem; cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.menu-tab:hover { border-color: var(--espresso); color: var(--espresso); }
.menu-tab.is-active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

/* progressive enhancement: with JS, show one panel; without, show all */
.menu.tabs-enabled .menu-panel { display: none; }
.menu.tabs-enabled .menu-panel.is-active { display: block; animation: fadePanel .5s var(--ease); }
@keyframes fadePanel { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.menu:not(.tabs-enabled) .menu-panel { margin-bottom: 3rem; }

.panel-note {
  color: var(--espresso-2); font-size: 1.02rem; max-width: 42rem;
  margin-bottom: 2rem;
}

.price-list { list-style: none; }
.price-list li {
  display: flex; align-items: baseline; gap: 1.5rem;
  padding: 1.35rem 0; border-bottom: 1px solid var(--taupe-line-2);
}
.price-list li:first-child { border-top: 1px solid var(--taupe-line-2); }
.pl-main { flex: 1; display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 1rem; row-gap: 0.15rem; }
.pl-name {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--espresso);
  line-height: 1.2;
}
.pl-name em { font-style: italic; font-size: 0.95rem; color: var(--taupe); }
.pl-dur {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--taupe);
}
.pl-desc {
  flex-basis: 100%; font-size: 0.92rem; color: var(--espresso-2);
  letter-spacing: 0.01em; margin-top: 0.1rem;
}
.pl-price {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--gold);
  white-space: nowrap; font-weight: 500;
}

.services-cta { margin-top: 3.5rem; text-align: center; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--paper); }
.gallery-viewport { position: relative; }
/* editorial masonry: mixed orientations flow without cropping */
.gallery-grid { column-count: 3; column-gap: 1.1rem; }

/* carousel arrows (mobile only) */
.g-arrow { display: none; }
.g-arrow svg { width: 20px; height: 20px; }
.g-item {
  break-inside: avoid; margin-bottom: 1.1rem;
  position: relative; overflow: hidden; border-radius: 12px;
  box-shadow: var(--shadow-sm); display: block;
  background: linear-gradient(135deg, #e7dcc8, #d8c7ab);
}
.g-item img {
  width: 100%; height: auto; display: block;
  transition: transform 1.1s var(--ease);
}
.g-item:hover img { transform: scale(1.04); }
.g-item figcaption {
  position: absolute; left: 1.2rem; bottom: 1.1rem; z-index: 2;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.g-item::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(transparent 55%, rgba(58,42,32,0.5));
  opacity: 0; transition: opacity .5s var(--ease);
}
.g-item:hover figcaption { opacity: 1; transform: none; }
.g-item:hover::after { opacity: 1; }

/* ============================================================
   FEATURE BAND (full-bleed image)
   ============================================================ */
.feature {
  position: relative; overflow: hidden;
  min-height: clamp(440px, 72vh, 660px);
  display: flex; align-items: center;
}
.feature-media { position: absolute; inset: 0; z-index: 0; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.feature::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(42,30,22,0.78) 0%, rgba(42,30,22,0.45) 46%, rgba(42,30,22,0.05) 78%);
}
.feature-overlay { position: relative; z-index: 2; width: 100%; color: var(--cream); }
.feature .eyebrow { color: var(--gold-soft); }
.feature .eyebrow::before { background: var(--gold-soft); }
.feature h2 { color: var(--cream); font-size: clamp(2.2rem, 4.6vw, 3.7rem); margin-bottom: 1.7rem; }
.feature .btn-solid { background: var(--cream); color: var(--espresso); }
.feature .btn-solid:hover { background: var(--gold-soft); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--cream); text-align: center; }
.reviews .section-head { margin-inline: auto; }
.rating { display: flex; align-items: baseline; justify-content: center; gap: 0.6rem; margin-top: 0.5rem; }
.stars { color: var(--gold); letter-spacing: 0.15em; font-size: 1.1rem; }
.rating-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--espresso); }
.rating-count { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--taupe); text-transform: uppercase; }

/* horizontal auto-scrolling carousel */
.review-carousel {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.review-track {
  display: flex;
  width: max-content;
  padding-block: 1.3rem;
  animation: marquee 90s linear infinite;
}
.review-carousel:hover .review-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.review {
  flex: 0 0 auto;
  width: 350px;
  min-height: 250px;
  margin-right: 1.4rem;
  display: flex; flex-direction: column;
  text-align: left;
  background: var(--white); border: 1px solid var(--taupe-line-2);
  border-radius: 14px; padding: 2.2rem 2.3rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review::before {
  content: "\201C";
  position: absolute; top: 0.7rem; right: 1.6rem;
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: var(--gold); opacity: 0.18;
}
.review .stars { font-size: 0.95rem; display: block; margin-bottom: 1.1rem; }
.review-text {
  font-family: var(--font-display); font-size: 1.22rem; line-height: 1.45;
  color: var(--espresso); margin-bottom: 1.4rem;
  flex: 1;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.review footer { margin-top: auto; }
.review cite {
  font-style: normal; font-size: 0.74rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--taupe);
}

@media (prefers-reduced-motion: reduce) {
  .review-track { animation: none; }
  .review-carousel { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: var(--cream); }
.visit-inner {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.visit-details { list-style: none; margin: 2.5rem 0; }
.visit-details li { padding: 1.4rem 0; border-top: 1px solid var(--taupe-line); }
.vd-label {
  display: block; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.55rem;
}
.vd-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--espresso); line-height: 1.35; transition: color .3s; }
a.vd-value:hover { color: var(--gold); }
.vd-hours { display: flex; flex-direction: column; gap: 0.15rem; font-size: 1.2rem; }
.vd-hours span { display: flex; }
.vd-hours em { font-style: normal; display: inline-block; min-width: 8.5rem; color: var(--espresso-2); }
.vd-hours .closed { color: var(--taupe); }
.vd-hours .closed em { color: var(--taupe); }

.amenities {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.75rem 1.6rem; margin-bottom: 2.5rem;
}
.amenities li {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--espresso-2);
  display: flex; align-items: center; gap: 0.7rem;
}
.amenities li::before {
  content: ""; flex: 0 0 auto;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}

.visit-map {
  border-radius: 4px; overflow: hidden; border: 1px solid var(--taupe-line);
  min-height: 440px; height: 100%; background: var(--cream-soft);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; filter: grayscale(0.35) sepia(0.12); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--espresso); color: var(--cream); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(246,239,224,0.14);
  align-items: start;
}
.footer-brand .brand-mark { color: var(--cream); }
.footer-brand .brand-sub { color: var(--gold-soft); }
.footer-tag { margin-top: 0.8rem; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(246,239,224,0.55); }
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(246,239,224,0.75); transition: color .3s; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-contact { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-contact a { font-size: 0.95rem; color: rgba(246,239,224,0.8); transition: color .3s; }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-block: 1.8rem; font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(246,239,224,0.5);
}
.footer-credit { color: var(--gold-soft); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper); }
.faq-inner {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.faq .section-head { margin-bottom: 0; }
.faq-item { border-top: 1px solid var(--taupe-line); }
.faq-item:last-child { border-bottom: 1px solid var(--taupe-line); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 1.45rem 2.5rem 1.45rem 0;
  font-family: var(--font-display); font-size: 1.35rem; color: var(--espresso);
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 1.45rem;
  font-family: var(--font-sans); font-size: 1.5rem; color: var(--gold);
  line-height: 1.2; transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { padding: 0 0 1.6rem; color: var(--espresso-2); max-width: 46rem; }

/* ============================================================
   MOBILE STICKY BOOK
   ============================================================ */
.mobile-book {
  display: none;
  transition: background .45s var(--ease), color .45s var(--ease),
              box-shadow .45s var(--ease), opacity .45s var(--ease), transform .45s var(--ease);
}
/* when the button scrolls over a dark section, flip to white */
.mobile-book.on-dark {
  background: var(--white);
  color: var(--espresso);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.5);
}

/* active nav link (scroll-spy) */
.nav a.active { color: var(--espresso); }
.nav a.active::after { width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav, .header-book { display: none; }
  .nav-toggle { display: flex; }
  .about-inner, .visit-inner, .faq-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { column-count: 2; }
  .feature { min-height: clamp(420px, 78vh, 560px); }
  .feature::after { background: linear-gradient(180deg, rgba(42,30,22,0.5), rgba(42,30,22,0.62)); }
  .faq .section-head { margin-bottom: 2rem; }
}

@media (max-width: 760px) {
  .mobile-book {
    display: flex; align-items: center; justify-content: center;
    position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
    padding: 1rem; border-radius: 100px;
    background: var(--espresso); color: var(--cream);
    font-family: var(--font-sans); font-size: 0.78rem;
    letter-spacing: 0.22em; text-transform: uppercase;
    box-shadow: 0 12px 32px -12px rgba(58, 42, 32, 0.55);
    /* hidden until the user scrolls down a little */
    opacity: 0; transform: translateY(150%); pointer-events: none;
  }
  .mobile-book.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
}

@media (max-width: 560px) {
  /* gallery becomes a swipeable, snapping carousel on phones */
  .gallery-grid {
    column-count: initial;
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .g-item {
    flex: 0 0 84%;
    margin-bottom: 0;
    scroll-snap-align: center;
    height: clamp(320px, 94vw, 460px);
  }
  .g-item img { height: 100%; object-fit: cover; }
  .g-item figcaption { opacity: 1; transform: none; }
  .g-item::after { opacity: 0.6; }

  .g-arrow {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: calc(50% - 0.25rem); transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255, 253, 249, 0.86); color: var(--espresso);
    border: 1px solid var(--taupe-line-2); box-shadow: var(--shadow-sm);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    cursor: pointer; z-index: 3;
    transition: background .3s var(--ease), transform .3s var(--ease);
  }
  .g-arrow:active { transform: translateY(-50%) scale(0.92); }
  .g-prev { left: 10px; }
  .g-next { right: 10px; }

  .pl-name, .pl-price { font-size: 1.2rem; }
  .price-list li { gap: 1rem; }
  .btn { padding: 0.9rem 1.6rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}

/* open-menu icon state */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
