/* =========================================================
   NEJ Beauty — Premium PMU & Beauty Salon, Amsterdam
   Static recreation of the original Lovable design.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --radius: 0.5rem;
  --radius-sm: calc(var(--radius) - 4px); /* 4px */

  --background: oklch(0.985 0.005 80);
  --foreground: oklch(0.18 0.01 60);
  --ink: oklch(0.13 0.008 60);
  --cream: oklch(0.975 0.012 85);
  --beige: oklch(0.92 0.02 80);
  --gold: oklch(0.78 0.12 80);
  --gold-deep: oklch(0.62 0.13 70);
  --gold-soft: oklch(0.88 0.06 85);
  --card: oklch(1 0 0);
  --muted: oklch(0.95 0.01 80);
  --muted-foreground: oklch(0.45 0.01 60);
  --border: oklch(0.9 0.015 80);

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; border: 0 solid var(--border); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* The `hidden` attribute must always win over component display rules
   (service-card tab filtering and the mobile menu rely on it). */
[hidden] { display: none !important; }

img, video, iframe, svg { display: block; max-width: 100%; }
img, video { height: auto; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

::selection { background: var(--gold-soft); color: var(--ink); }

:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--cream);
  padding: 0.75rem 1.25rem; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: 80rem; /* max-w-7xl */
  margin-inline: auto;
  padding-inline: 1.5rem; /* px-6 */
  width: 100%;
}
.container.narrow { max-width: 48rem; } /* max-w-3xl */
@media (min-width: 1024px) {
  .container { padding-inline: 2.5rem; } /* lg:px-10 */
}

.center { text-align: center; }
.italic { font-style: italic; }
.muted { color: var(--muted-foreground); line-height: 1.7; }
.muted-light { color: oklch(0.975 0.012 85 / 0.7); }

/* ---------- Eyebrow / hairline ---------- */
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-deep);
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.ink { color: var(--ink); }
.eyebrow.row { display: flex; align-items: center; gap: 0.75rem; }
.hairline {
  display: inline-block; width: 48px; height: 1px;
  background: var(--gold-deep); vertical-align: middle;
}

.stars-gold { color: var(--gold); letter-spacing: 0.05em; }
.stars-gold.spread { letter-spacing: 0.15em; }
.gold { color: var(--gold); }

.gold-gradient-text {
  background: linear-gradient(135deg, oklch(0.72 0.13 75), oklch(0.88 0.09 85), oklch(0.65 0.14 70));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn-gold,
.btn-outline-ink,
.btn-outline-cream,
.btn-ghost-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  font-size: 0.78rem; padding: 0.95rem 1.8rem; border-radius: 2px;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, oklch(0.72 0.13 75), oklch(0.62 0.13 70));
  color: oklch(0.13 0.008 60);
  box-shadow: 0 6px 24px -8px oklch(0.62 0.13 70 / 0.45);
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s cubic-bezier(.4,0,.2,1), filter .4s cubic-bezier(.4,0,.2,1);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px oklch(0.62 0.13 70 / 0.6);
  filter: brightness(1.05);
}
.btn-gold.full { width: 100%; }

.btn-outline-ink {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
  transition: background .3s ease, color .3s ease;
}
.btn-outline-ink:hover { background: var(--ink); color: var(--cream); }
.btn-outline-ink svg { width: 14px; height: 14px; }

.btn-outline-cream {
  background: transparent; color: var(--cream); border: 1px solid oklch(0.975 0.012 85 / 0.4);
  transition: background .3s ease, color .3s ease;
}
.btn-outline-cream:hover { background: var(--cream); color: var(--ink); }

.btn-ghost-gold {
  width: 100%; background: transparent; color: var(--gold);
  border: 1px solid oklch(0.78 0.12 80 / 0.4); letter-spacing: 0.2em;
  padding: 0.75rem 1rem; border-radius: 8px;
  transition: background .3s ease;
}
.btn-ghost-gold:hover { background: oklch(0.78 0.12 80 / 0.1); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  background: oklch(0.13 0.008 60 / 0.85);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(1 0 0 / 0.1);
}
.nav-inner {
  height: 5rem; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand-logo { height: 3rem; width: auto; }
.footer-logo { height: 4rem; width: auto; }

.nav-desktop { display: none; align-items: center; gap: 2.5rem; }
.nav-desktop a {
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: oklch(0.975 0.012 85 / 0.8); transition: color .3s ease;
}
.nav-desktop a:hover { color: var(--gold); }
.nav-cta { display: none; }

.nav-toggle { display: inline-flex; color: var(--cream); padding: 0.25rem; }

.nav-mobile {
  background: var(--ink); border-top: 1px solid oklch(1 0 0 / 0.1);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
}
.nav-mobile > a {
  display: block; font-size: 0.875rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: oklch(0.975 0.012 85 / 0.8);
}
.nav-mobile-cta {
  padding-top: 1rem; margin-top: 0.25rem;
  border-top: 1px solid oklch(1 0 0 / 0.1);
  display: flex; flex-direction: column; gap: 0.75rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 7rem 0 4rem; /* pt-28 pb-16 */
  background: linear-gradient(to bottom, var(--cream), var(--background) 50%, var(--cream));
}
@media (min-width: 1024px) { .hero { padding: 8rem 0 5rem; } }

.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.rating-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 1px 2px oklch(0 0 0 / 0.05); margin-bottom: 2rem;
}
.rating-badge .stars-gold { color: var(--gold-deep); }
.rating-score { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em; }
.rating-count { font-size: 0.75rem; color: var(--muted-foreground); }

.hero-title {
  font-family: var(--font-display); color: var(--ink);
  font-size: 3rem; line-height: 1.05; letter-spacing: -0.02em;
}
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.hero-lead {
  margin-top: 2rem; font-size: 1.125rem; color: var(--muted-foreground);
  max-width: 36rem; line-height: 1.7;
}
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 32rem;
}
.stat-num { font-family: var(--font-display); font-size: 1.875rem; color: var(--ink); }
.hero-stats .eyebrow { margin-top: 0.25rem; }

.hero-media { position: relative; }
@media (min-width: 1024px) {
  .hero-media { transform: scale(1.1); transform-origin: right; }
}
.hero-ring {
  position: absolute; top: -1.5rem; right: -1.5rem; width: 10rem; height: 10rem;
  border: 1px solid oklch(0.78 0.12 80 / 0.4); border-radius: 9999px;
  pointer-events: none; display: none;
}
.hero-glow {
  position: absolute; bottom: -2rem; left: -2rem; width: 14rem; height: 14rem;
  background: oklch(0.88 0.06 85 / 0.4); border-radius: 9999px;
  filter: blur(64px); pointer-events: none;
}
@media (min-width: 1024px) { .hero-ring { display: block; } }

.hero-frame {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  background: var(--cream); box-shadow: 0 25px 50px -12px oklch(0 0 0 / 0.25);
}
.hero-frame > img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 26% center; }
.hero-card {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: oklch(0.13 0.008 60 / 0.8);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  color: var(--cream); padding: 1rem; border-radius: var(--radius-sm);
}
.hero-card-name { font-family: var(--font-display); font-size: 1.25rem; margin-top: 0.25rem; }
.hero-card-role { font-size: 0.75rem; color: oklch(0.975 0.012 85 / 0.7); margin-top: 0.25rem; }
@media (min-width: 640px) {
  .hero-card { bottom: 1.5rem; left: 1.5rem; right: auto; min-width: 18rem; padding: 1.25rem; }
  .hero-card-name { font-size: 1.5rem; }
}

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--ink); color: var(--cream); padding: 1.5rem 0;
  border-top: 1px solid oklch(0.78 0.12 80 / 0.2);
  border-bottom: 1px solid oklch(0.78 0.12 80 / 0.2);
}
.trustbar-inner {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.75rem 2.5rem; font-size: 0.75rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: oklch(0.975 0.012 85 / 0.8);
}
.trustbar .dot { color: oklch(0.78 0.12 80 / 0.4); display: none; }
@media (min-width: 768px) { .trustbar .dot { display: inline; } }

/* ---------- Section heads ---------- */
.section-head { max-width: 42rem; margin-inline: auto; text-align: center; }
.section-title { font-family: var(--font-display); font-size: 2.25rem; margin-top: 0.75rem; }
.section-title.light { color: var(--cream); }
.section-head .muted, .section-head .muted-light { margin-top: 1rem; }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

/* ---------- About ---------- */
.about { padding: 6rem 0; }
@media (min-width: 1024px) { .about { padding: 8rem 0; } }
.about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-media { position: relative; order: 2; }
.about-photo {
  width: 100%; border-radius: var(--radius-sm);
  box-shadow: 0 20px 25px -5px oklch(0 0 0 / 0.1), 0 8px 10px -6px oklch(0 0 0 / 0.1);
  aspect-ratio: 4 / 5; object-fit: cover;
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: var(--ink); padding: 1.5rem;
  border-radius: var(--radius-sm); box-shadow: 0 20px 25px -5px oklch(0 0 0 / 0.2);
  display: none;
}
.about-badge-num { font-family: var(--font-display); font-size: 2.25rem; }
.about-copy { order: 1; }
@media (min-width: 768px) { .about-badge { display: block; } }
@media (min-width: 1024px) {
  .about-media { order: 1; }
  .about-copy { order: 2; }
}

.about-title { font-family: var(--font-display); font-size: 2.25rem; line-height: 1.2; margin-top: 1rem; }
.about-copy .muted { margin-top: 1.5rem; }
.about-copy .muted + .muted { margin-top: 1rem; }
@media (min-width: 1024px) { .about-title { font-size: 3rem; } }

.about-points {
  margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.point { border-left: 2px solid var(--gold); padding-left: 1rem; }
.point-t { font-family: var(--font-display); font-size: 1.125rem; }
.point-s { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.about-cta { margin-top: 2.5rem; }

/* ---------- Services ---------- */
.services { padding: 6rem 0; background: var(--cream); }
@media (min-width: 1024px) { .services { padding: 8rem 0; } }

.tabs {
  margin-top: 3rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
}
.tab {
  padding: 0.625rem 1.25rem; font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; border-radius: 9999px;
  background: #fff; color: var(--ink); border: 1px solid var(--border);
  transition: background .3s ease, color .3s ease;
}
.tab:hover { background: var(--beige); }
.tab.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.cards-grid {
  margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .5s ease;
}
.card:hover { box-shadow: 0 25px 50px -12px oklch(0 0 0 / 0.25); }
.card-img { aspect-ratio: 1 / 1; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-foreground);
}
.card-meta .price { color: var(--gold-deep); font-weight: 500; }
.card-title { font-family: var(--font-display); font-size: 1.5rem; margin-top: 0.75rem; }
.card-desc { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.5rem; line-height: 1.7; flex: 1; }
.card-book {
  margin-top: 1.25rem; align-self: flex-start; display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 0.25rem;
  transition: color .3s ease;
}
.card-book:hover { color: var(--gold-deep); }
.card-more {
  margin-top: 1rem; align-self: flex-start; display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-foreground); transition: color .3s ease;
}
.card-more:hover { color: var(--ink); }
.card-more svg { transition: transform .3s ease; }
.card-more[aria-expanded="true"] svg { transform: rotate(180deg); }

.card-detail {
  overflow: hidden; max-height: 0; transition: max-height .5s ease;
  background: oklch(0.92 0.02 80 / 0.3); border-top: 1px solid var(--border);
}
.card.is-expanded .card-detail { max-height: 500px; }
.card-detail-inner { padding: 1.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* Broken-image fallback block */
.img-missing {
  display: flex; align-items: center; justify-content: center; text-align: center;
  width: 100%; height: 100%; min-height: 160px; padding: 1.25rem;
  background: linear-gradient(135deg, var(--ink), oklch(0.22 0.02 70));
  color: var(--gold); font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: 0.04em; line-height: 1.4;
}
.img-missing.logo-fallback {
  background: none; min-height: 0; padding: 0; height: 3rem;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  letter-spacing: 0.15em; color: var(--cream); white-space: nowrap;
}
.footer-logo.img-missing.logo-fallback { height: 4rem; font-size: 2rem; align-items: center; }

/* ---------- Before & After ---------- */
.results { padding: 6rem 0; }
@media (min-width: 1024px) { .results { padding: 8rem 0; } }
.ba-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }

.ba-stage {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius-sm); user-select: none; cursor: ew-resize;
  background: var(--ink); touch-action: pan-y;
}
.ba-stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-fallback {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  background: linear-gradient(135deg, var(--ink), oklch(0.22 0.02 70));
  color: var(--gold); font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.04em;
}
.ba-divider {
  position: absolute; top: 0; bottom: 0; width: 1px; background: var(--gold);
  box-shadow: 0 0 12px rgba(0,0,0,0.4); left: 50%;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: var(--gold); border: 2px solid var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); box-shadow: 0 20px 25px -5px oklch(0 0 0 / 0.3);
}
.ba-tag {
  position: absolute; top: 1rem; padding: 0.25rem 0.75rem;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.ba-tag.before { left: 1rem; background: oklch(0.13 0.008 60 / 0.7); color: var(--cream); }
.ba-tag.after { right: 1rem; background: oklch(0.78 0.12 80 / 0.9); color: var(--ink); }
.ba-label {
  margin-top: 1rem; text-align: center; font-size: 0.875rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-foreground);
}
.ba-caption { text-align: center; font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.5rem; line-height: 1.6; }

/* ---------- Reviews ---------- */
.reviews { padding: 6rem 0; background: var(--ink); color: var(--cream); }
@media (min-width: 1024px) { .reviews { padding: 8rem 0; } }
.reviews-grid {
  margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: oklch(1 0 0 / 0.05); border: 1px solid oklch(1 0 0 / 0.1);
  padding: 1.75rem; border-radius: var(--radius-sm);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: border-color .3s ease;
}
.review:hover { border-color: oklch(0.78 0.12 80 / 0.4); }
.review blockquote { margin-top: 1rem; color: oklch(0.975 0.012 85 / 0.9); line-height: 1.7; font-size: 15px; }
.review figcaption { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid oklch(1 0 0 / 0.1); }
.review-name { font-family: var(--font-display); font-size: 1.125rem; color: var(--cream); }
.review-meta { font-size: 0.75rem; color: oklch(0.975 0.012 85 / 0.5); margin-top: 0.25rem; letter-spacing: 0.05em; }
.reviews .center { margin-top: 3rem; }

/* ---------- Instagram ---------- */
.instagram { padding: 6rem 0; background: var(--cream); }
@media (min-width: 1024px) { .instagram { padding: 8rem 0; } }
.instagram-head {
  display: flex; flex-direction: column; gap: 1.5rem;
}
@media (min-width: 768px) {
  .instagram-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.instagram-grid {
  margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .instagram-grid { grid-template-columns: repeat(3, 1fr); } }
.ig-tile {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1; display: block; background: var(--ink);
}
.ig-tile video { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.ig-tile:hover video { transform: scale(1.1); }
.ig-overlay {
  position: absolute; inset: 0; padding: 1.5rem; display: flex; align-items: flex-end;
  background: linear-gradient(to top, oklch(0.13 0.008 60 / 0.8), transparent 60%);
  opacity: 0; transition: opacity .5s ease;
}
.ig-tile:hover .ig-overlay { opacity: 1; }
.ig-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); }
.ig-overlay .eyebrow { margin-top: 0.25rem; }
.ig-fallback {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  background: linear-gradient(135deg, var(--ink), oklch(0.22 0.02 70));
  color: var(--gold); font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.04em;
}

/* ---------- FAQ ---------- */
.faq { padding: 6rem 0; }
@media (min-width: 1024px) { .faq { padding: 8rem 0; } }
.faq-list {
  margin-top: 3rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  width: 100%; text-align: left; padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.faq-q span:first-child { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); transition: color .3s ease; }
.faq-q:hover span:first-child { color: var(--gold-deep); }
.faq-plus { color: var(--gold-deep); font-size: 1.5rem; transition: transform .3s ease; line-height: 1; }
.faq-item.is-open .faq-plus { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .5s ease; }
.faq-item.is-open .faq-a { max-height: 24rem; padding-bottom: 1.5rem; }
.faq-a p { color: var(--muted-foreground); line-height: 1.7; }

/* ---------- Visit / Book ---------- */
.visit { background: var(--ink); color: var(--cream); }
.visit-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .visit-grid { grid-template-columns: repeat(2, 1fr); } }

.visit-book { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .visit-book { padding: 5rem; } }
.visit-book .section-title { margin-top: 0.75rem; }
.visit-lead { margin-top: 1.5rem; max-width: 28rem; line-height: 1.7; }
.visit-actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .visit-actions { flex-direction: row; } }

.hours {
  margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid oklch(1 0 0 / 0.1);
  display: grid; grid-template-columns: auto 1fr; gap: 0.75rem 1.5rem;
  font-size: 0.875rem; max-width: 20rem;
}
.hours-day { color: oklch(0.975 0.012 85 / 0.6); }

.visit-media { position: relative; min-height: 400px; }
@media (min-width: 1024px) { .visit-media { min-height: 700px; } }
.visit-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.visit-address { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 2.5rem; }
.visit-address-card {
  background: var(--cream); color: var(--ink); padding: 1.5rem;
  border-radius: var(--radius-sm); box-shadow: 0 25px 50px -12px oklch(0 0 0 / 0.25); max-width: 24rem;
}
.visit-address-street { font-family: var(--font-display); font-size: 1.5rem; margin-top: 0.5rem; }
.visit-address-card .muted { font-size: 0.875rem; }
.visit-address-cta {
  margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-deep);
}
.visit-map { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: oklch(0.975 0.012 85 / 0.8);
  padding: 5rem 0 2.5rem; border-top: 1px solid oklch(1 0 0 / 0.1);
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { grid-column: auto; }
@media (min-width: 768px) { .footer-brand { grid-column: span 2; } }
.footer-about { margin-top: 1.25rem; font-size: 0.875rem; color: oklch(0.975 0.012 85 / 0.6); max-width: 24rem; line-height: 1.7; }
.footer-list { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-list a { transition: color .3s ease; }
.footer-list a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid oklch(1 0 0 / 0.1);
  display: flex; flex-direction: column; gap: 1rem;
  font-size: 0.75rem; color: oklch(0.975 0.012 85 / 0.5);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.footer-legal a { transition: color .3s ease; }
.footer-legal a:hover { color: var(--gold); }

/* ---------- WhatsApp FAB ---------- */
.wa-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; display: block; }
.wa-ping {
  position: absolute; inset: 0; border-radius: 9999px; background: #25D366;
  opacity: 0.3; animation: wa-ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.wa-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 9999px; background: #25D366; color: #fff;
  box-shadow: 0 25px 50px -12px oklch(0 0 0 / 0.25); transition: transform .3s ease;
}
.wa-fab:hover .wa-btn { transform: scale(1.1); }
.wa-btn svg { width: 1.75rem; height: 1.75rem; }

/* ---------- Animations ---------- */
@keyframes float-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes wa-ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.anim-fade-up { animation: fade-up 0.9s cubic-bezier(0.2,0.8,0.2,1) both; }
.hero-ring { animation: float-slow 6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
