/* =====================================================
   NAILS SPA BY ROSE — v2 with real photos
   Palette: #1a1a1a / #d4af37 / #ffffff / #f8f4f6 / #2c2c2c
   Fonts: Playfair Display + Inter
   ===================================================== */

:root {
  --black: #1a1a1a;
  --charcoal: #2c2c2c;
  --gold: #d4af37;
  --gold-soft: #e6c869;
  --gold-deep: #b8932c;
  --white: #ffffff;
  --nude: #f8f4f6;
  --nude-deep: #efe6e9;
  --line: rgba(212, 175, 55, 0.25);
  --shadow-sm: 0 4px 12px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 26, 26, 0.12);
  --shadow-lg: 0 24px 60px rgba(26, 26, 26, 0.18);
  --radius: 6px;
  --radius-lg: 14px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --header-h: 78px;
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--black); margin: 0 0 .6em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-family: var(--sans); font-weight: 600; }
p  { margin: 0 0 1em; }

/* Make [hidden] always win */
[hidden] { display: none !important; }

/* ---------- Layout helpers ---------- */
.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 80px); }
.section-head p { color: #6b6b6b; font-size: 1.05rem; max-width: 56ch; margin: 0 auto; }
.section-head h2 em { font-style: italic; color: var(--gold-deep); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--gold);
}
.eyebrow-dark { color: var(--gold-deep); }
.eyebrow-dark::before { background: var(--gold-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 72px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(212,175,55,.28);
}
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,175,55,.4); }
.btn-ghost {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-ghost-dark {
  background: transparent; color: var(--black); border-color: var(--black);
}
.btn-ghost-dark:hover { background: var(--black); color: var(--gold); }
.btn-sm { padding: 11px 22px; font-size: .78rem; }

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: var(--black);
  color: var(--nude);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 0;
  text-align: center;
  font-weight: 300;
}
.announcement-bar .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
/* Announcement rotator — messages cycle in one at a time */
.announcement-rotator {
  position: relative;
  min-height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ann-msg {
  position: absolute;
  left: 0; right: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
}
.ann-msg.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}
/* Header is full-width so the logo sits at the very left of the viewport (not the centered 1200px container) */
.site-header .nav-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(20px, 3vw, 60px);
}
/* When the header has only the nav (logo lives below the header), push the menu right */
.nav-wrap:has(.main-nav-only) { justify-content: flex-end; }

/* Logo banner between the header and the hero
   The logo image is pulled UP with a negative margin and a z-index above
   the header so its top edge visually overlays the sticky header.
   No bottom padding/border so the hero begins immediately under the logo. */
.logo-banner {
  position: relative;
  background: var(--white);
  padding: 0;
  border-bottom: none;
}
.logo-banner a {
  display: inline-block;
  margin-left: clamp(16px, 4vw, 60px);
  margin-top: -50px; /* overlap the header by ~50px */
  position: relative;
  z-index: 101; /* above .site-header (z-index 100) */
}
.logo-banner img {
  width: clamp(140px, 18vw, 200px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 22px rgba(26,26,26,.25));
  transition: transform .4s var(--ease);
}
.logo-banner a:hover img { transform: scale(1.04); }
.brand {
  display: flex; align-items: center; gap: 14px;
}
.brand-mark { width: 48px; height: 48px; flex: 0 0 auto; object-fit: contain; }

/* Oversized brand logo inside the header — overflows downward into the hero */
.brand-oversized {
  position: relative;
  z-index: 102;            /* sit above the header (100) and hero content */
  align-self: center;
}
.brand-oversized .brand-mark {
  width: clamp(120px, 12vw, 240px);
  height: clamp(120px, 12vw, 240px);
  margin-bottom: calc(-1 * (clamp(120px, 12vw, 240px) - 48px));
  /* The negative bottom margin equals (logoHeight - normalRowHeight) so the header
     stays ~78px tall while the logo overflows below into the hero. */
  filter: drop-shadow(0 8px 22px rgba(26,26,26,.25));
  transition: transform .4s var(--ease);
}
.brand-oversized:hover .brand-mark { transform: scale(1.04); }
.site-header { overflow: visible; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.3rem; color: var(--black); letter-spacing: .03em; }
.brand-sub  { font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--gold); margin-top: 2px; letter-spacing: .04em; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: .88rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--charcoal);
  position: relative; padding: 6px 0;
}
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transform: translateX(-50%); transition: width .3s var(--ease);
}
.main-nav a:not(.btn):hover::after { width: 100%; }
.main-nav a:not(.btn):hover { color: var(--gold-deep); }

/* Header Book Online button — match the nav link sizing */
.main-nav .btn {
  padding: 6px 14px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  border-radius: 4px;
}
/* Header Call button — ghost style with phone icon, sits next to Book Online */
.main-nav .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.main-nav .btn-call:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}
.main-nav .btn-call svg { flex: 0 0 auto; }

/* Menu toggle — small uppercase text ("menu" / "close" when open) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  transition: color .25s var(--ease);
}
.menu-toggle::after { content: "menu"; }
.menu-toggle.active::after { content: "close"; }
.menu-toggle:hover { color: var(--gold-deep); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--white); flex-direction: column;
    align-items: stretch; gap: 0; padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .4s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { max-height: 460px; padding: 16px 0; }
  .main-nav a { padding: 16px 24px; border-bottom: 1px solid var(--nude-deep); }
  .main-nav .btn { margin: 16px 24px; }
  .menu-toggle { display: flex; }
}

/* ---------- Hero with real photo ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 38px);
  display: flex; align-items: flex-start;
  color: var(--white);
  overflow: visible;
  isolation: isolate;
}
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 18% 78%;
  transform: scale(1.00);
  filter: brightness(1.18) saturate(1.08);
}
/* Mobile: re-center the photo so both hands and all 10 nails are visible */
@media (max-width: 700px) {
  .hero-photo img {
    object-position: 75% 50%;
  }
  /* Darker overlay on phone so text stays readable over the hand subject */
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.55) 100%);
  }
  /* Bold text-shadows on all hero text so the cursive lines stand out */
  .hero-title,
  .hero-title em,
  .hero-line-1,
  .hero-eyebrow {
    text-shadow: 0 2px 14px rgba(0,0,0,.7), 0 1px 3px rgba(0,0,0,.9);
  }
  .hero-trust .trust-text strong,
  .hero-trust .trust-text span {
    text-shadow: 0 1px 8px rgba(0,0,0,.75);
  }
  /* Center the title + divider + Google review block horizontally on phone.
     Add a soft dark rounded panel behind everything for readability over the hand photo. */
  .hero-content {
    text-align: center;
    margin: -75px 30px 0 !important;
    background: rgba(0, 0, 0, 0.42);
    border-radius: 20px;
    padding: 32px 18px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  /* Title: no extra top margin on phone so the panel is balanced top/bottom */
  .hero-title { margin-top: 0 !important; margin-bottom: 0 !important; }
  /* Hide LUXURY NAIL eyebrow on phone (cleaner hero) */
  .hero-eyebrow { display: none !important; }
  /* Make the header bar thinner on phone */
  .nav-wrap { min-height: 56px !important; }
  /* Smaller logo so it doesn't dominate the thinner header */
  .brand-oversized .brand-mark {
    width: 96px !important;
    height: 96px !important;
    margin-bottom: -56px !important;  /* 96 - 40 layout height */
  }
  /* Adjust menu padding-top to match new logo overflow */
  /* (using base mobile values from above; no extra top padding) */
  .hero .hero-content > *:not(.eyebrow) {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-title {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-divider {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  /* Google review block sits BELOW the title on phone (like desktop), centered then shifted 50px left */
  .hero .hero-content > .hero-trust {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
  }
  .hero-trust .trust-item-google {
    transform: translateX(-50px);
  }
  /* In-hero BOOK ONLINE + CALL buttons, phone only */
  .hero-ctas-mobile {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 24px auto 32px !important;
    max-width: 320px;
  }
  .hero-ctas-mobile .btn {
    width: 100%;
    padding: 14px 32px;
  }
  /* Phone-only animation sequence (overrides desktop timing):
     0s   → 1.1s : "We care"
     1.1s → 2.2s : "for your nails."
     2.2s → 3.2s : BOOK ONLINE + CALL buttons fade in
     Phone: ALL hero animations disabled — everything appears instantly */
  .hero-line-1,
  .hero-title em,
  .hero-divider,
  .hero-ctas-mobile,
  .hero .hero-content > .hero-trust {
    animation: none !important;
  }
}
/* Hide the in-hero buttons on desktop (they're handled differently there) */
@media (min-width: 701px) {
  .hero-ctas-mobile { display: none !important; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(110deg, rgba(15,15,15,.5) 0%, rgba(15,15,15,.18) 45%, rgba(15,15,15,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, transparent 25%, rgba(0,0,0,.15) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: clamp(200px, 18vw, 320px) 0 100px;
  width: 100%;
}
/* Desktop + iPad only: reduce top padding so the title + reviews sit higher in the hero */
@media (min-width: 701px) {
  .hero-inner {
    padding-top: clamp(60px, 7vw, 140px) !important;
  }
}
/* "Luxury Nail" eyebrow — direct child of .hero so absolute positioning
   anchors to .hero's top edge (= header bottom). Always 0.5cm below. */
.hero .hero-eyebrow {
  position: absolute;
  top: 0.5cm;
  left: calc(clamp(20px, 3vw, 60px) + clamp(120px, 12vw, 240px) + 36px);
  font-size: clamp(.72rem, .85vw, 1.1rem);
  margin: 0;
  z-index: 103;
}
/* On very narrow screens (under 600px) the logo + eyebrow combo is tight —
   the logo stays anchored top-left and the eyebrow sits just to its right
   with a smaller font + tighter padding so it still fits the row. */
@media (max-width: 600px) {
  .hero .eyebrow {
    font-size: .66rem;
    padding-left: 24px;
    letter-spacing: .22em;
  }
  .hero .eyebrow::before { width: 16px; }
}
.hero-content { max-width: clamp(520px, 42vw, 880px); }
.hero-title {
  font-size: clamp(2.6rem, 6.2vw, 6.4rem);
  color: var(--white);
  margin: 0 0 clamp(20px, 1.8vw, 36px);
  font-weight: 500;
  line-height: 1.05;
}
.hero-title em {
  font-style: italic; color: var(--gold); font-weight: 400;
}
/* "We care / for your nails." rendered in elegant cursive (lettres attachées) */
.hero-title {
  font-family: 'Great Vibes', 'Allura', cursive;
  text-transform: none;
  font-weight: 400;
  line-height: 1.05;
}
.hero-title em {
  font-family: 'Great Vibes', 'Allura', cursive;
  font-style: normal;
}
/* "We Care" slides in from the left on page load */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-110vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-line-1 {
  display: inline-block;
  animation: slideInFromLeft 1.1s cubic-bezier(.2,.7,.2,1) both;
}
/* Gold divider between title and Google Reviews. Both fade in at t=2.2s
   (right after "for your nails." finishes) and align under the title. */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-divider {
  height: 1px;
  width: clamp(220px, 28vw, 380px);
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: -20px 0 4px 3cm;
  animation: slideInFromLeft 1.1s cubic-bezier(.2,.7,.2,1) 1.1s both;
}
.hero-trust {
  justify-content: flex-start;
  padding-top: 0 !important;
  margin-top: -1px;
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) 2.2s both;
}
.hero .hero-content > .hero-trust { margin-left: 2.5cm !important; }
/* Google logo (in a white circle) + rating + count laid out horizontally.
   The whole block is a clickable link to our Google listing. */
.trust-item-google {
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, opacity .3s ease;
}
.trust-item-google:hover {
  transform: translateY(-2px);
  opacity: .9;
}
.trust-item-google:hover .google-icon {
  box-shadow: 0 4px 14px rgba(212,175,55,.4);
}
.trust-item-google .google-icon {
  width: clamp(40px, 3.8vw, 56px);
  height: clamp(40px, 3.8vw, 56px);
  flex: 0 0 auto;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.18);
  padding: clamp(8px, 0.8vw, 12px);
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  transform: translateY(1.5mm);
}
.trust-item-google .trust-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}
.trust-item-google .trust-text > strong,
.trust-item-google .trust-text > span {
  display: block;
  margin: 0;
  padding-left: 0;
}
/* "for your nails." slides in immediately after "We care" finishes (no pause). */
.hero-title em {
  display: inline-block;
  animation: slideInFromLeft 1.1s cubic-bezier(.2,.7,.2,1) 1.1s both;
}
@media (prefers-reduced-motion: reduce) {
  .hero-line-1,
  .hero-title em { animation: none; }
}
/* Indent hero content (except the "Luxury Nail" eyebrow) by 0.5cm */
.hero .hero-content > *:not(.eyebrow) {
  margin-left: 0.5cm;
}
/* Push the hero title an extra 1cm to the right (so total ~1.5cm indent) */
.hero-title {
  margin-left: 1.5cm !important;
}
/* Desktop/iPad: shift title + divider + reviews to the right and down.
   Use viewport-relative units (vw) so the layout scales smoothly from a small
   tablet (~701px) up to large desktops (1920px+). Locked-in at desktop "perfect"
   when calibrated against 11.5cm @ 1920px = ~22.6vw. */
@media (min-width: 701px) {
  .hero-content {
    max-width: none !important;
  }
  .hero-title {
    margin-left: clamp(160px, 22vw, 11.5cm) !important;
    /* Top offset scales with viewport HEIGHT (not width) so the title sits at
       the same vertical "zone" of the hero image regardless of how tall/short
       the browser window is. */
    margin-top: clamp(50px, 9vh, 2cm) !important;
    white-space: nowrap;
  }
  .hero-title .hero-line-1,
  .hero-title em {
    white-space: nowrap;
  }
  .hero-divider {
    margin-left: clamp(160px, 22vw, 11.5cm) !important;
  }
  .hero .hero-content > .hero-trust {
    margin-left: clamp(180px, 24vw, 12.5cm) !important;
  }
}
.hero-lede {
  font-size: clamp(1rem, 1.15vw, 1.35rem);
  color: rgba(255,255,255,.88);
  max-width: calc(56ch - 1cm); line-height: 1.7;
  margin-bottom: clamp(32px, 3vw, 56px);
}
.hero-ctas {
  display: flex;
  gap: clamp(12px, 1.2vw, 22px);
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 4.5vw, 80px);
}
/* Hero buttons scale fluidly with the viewport */
.hero-ctas .btn {
  padding: clamp(14px, 1.3vw, 24px) clamp(40px, 5vw, 88px);
  font-size: clamp(.82rem, .95vw, 1.1rem);
}
.hero-trust {
  display: flex; gap: clamp(24px, 4vw, 80px);
  padding-top: clamp(24px, 2.5vw, 44px);
  max-width: clamp(540px, 50vw, 820px);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item strong {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 1.8vw, 2.4rem);
  color: var(--gold); font-weight: 500; line-height: 1;
}
.trust-item span {
  font-size: clamp(.72rem, .85vw, 1rem);
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  width: 22px; height: 38px; border: 1px solid rgba(212,175,55,.6);
  border-radius: 11px;
}
.scroll-cue span {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scrollCue 1.8s var(--ease) infinite;
}
@keyframes scrollCue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 16px); }
  100% { opacity: 0; }
}

/* ---------- About intro with photo ---------- */
.about-intro {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-image-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
}
.about-image-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-deco {
  position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 1;
}
.about-content .lead {
  font-size: 1rem; line-height: 1.7; color: var(--charcoal);
  margin-bottom: 22px; font-weight: 400;
}
.about-content p {
  font-size: 1rem; line-height: 1.7;
}
.credentials {
  display: flex; gap: 36px; margin: 36px 0;
  padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.credential { display: flex; flex-direction: column; }
.cred-num {
  font-family: var(--serif); font-size: 2.2rem; color: var(--gold-deep); font-weight: 500; line-height: 1;
}
.cred-label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #6b6b6b; margin-top: 4px; }

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-photo { max-width: 420px; margin: 0 auto; }
}

/* ---------- Services highlight cards (with images) ---------- */
.services-highlights { background: var(--nude); }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26,26,26,.06);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.highlight-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.highlight-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.highlight-card:hover .highlight-image img { transform: scale(1.05); }
.highlight-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
}
.highlight-content { padding: 32px 28px 36px; flex: 1; display: flex; flex-direction: column; }
.highlight-content h3 { color: var(--black); margin-bottom: 14px; font-size: 1.65rem; }
.highlight-content p { color: #555; flex: 1; margin-bottom: 20px; }
.link-gold {
  color: var(--gold-deep);
  font-weight: 600; font-size: .92rem;
  border-bottom: 1px solid var(--gold-deep);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.link-gold:hover { color: var(--black); border-color: var(--black); }

/* ---------- Services — icon card grid (no prices) ---------- */
.services {
  background:
    linear-gradient(rgba(248,244,246,.78), rgba(248,244,246,.78)),
    url('images/iStock-1355636222.jpg') center/cover no-repeat;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 44px 32px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26,26,26,.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card-feature {
  background: linear-gradient(170deg, #1a1a1a 0%, #2c2c2c 100%);
  color: var(--white);
}
.service-card-feature h3 { color: var(--white); }
.service-card-feature .service-list li {
  color: rgba(255,255,255,.85);
  border-color: rgba(212,175,55,.2);
}

.ribbon {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--black);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; font-weight: 600;
}
/* Vegan Available badge — small pill, top-right of each service card */
.vegan-badge {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 125, 50, .12);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, .35);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  font-weight: 600;
}
.vegan-badge svg { flex: 0 0 auto; }
/* On the featured (Most Popular) card, push the vegan badge to top-LEFT so it
   doesn't collide with the gold ribbon on top-right. Lighter colors for dark bg. */
.vegan-badge-feature {
  right: auto;
  left: 16px;
  background: rgba(165, 214, 167, .15);
  color: #a5d6a7;
  border-color: rgba(165, 214, 167, .4);
}
.service-icon {
  display: none;
}
.service-card-feature .service-icon { background: rgba(212,175,55,.15); }
.service-icon svg { width: 30px; height: 30px; }

.service-list { list-style: none; padding: 0; margin: 18px 0 0; }
.service-list li {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(26,26,26,.1);
  font-size: .95rem;
}
.service-list li:last-child { border-bottom: 0; }

.services-note {
  text-align: center; color: #6b6b6b; font-size: .92rem;
  margin: 50px auto 0; max-width: 600px;
}
.services-note a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-deep); }

/* ---------- Gallery with photos ---------- */
.gallery-section { background: var(--white); }
.gallery-grid-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.gallery-item-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--nude-deep);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  padding: 0;
}
.gallery-item-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-item-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-item-photo:hover img { transform: scale(1.06); }
.gallery-item-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.gallery-item-photo:hover::after { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 50px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--nude); }
.reviews-rating {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  margin-top: 16px; font-size: .92rem; color: #6b6b6b;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  margin: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid rgba(26,26,26,.04);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-mark {
  position: absolute; top: 14px; right: 22px;
  font-family: var(--serif); font-size: 5rem; line-height: 1;
  color: var(--gold); opacity: .25;
}
.testimonial blockquote {
  font-family: var(--serif); font-size: 1.08rem; line-height: 1.6;
  color: var(--charcoal); margin: 0 0 22px; font-style: italic;
}
.testimonial figcaption { font-size: .88rem; display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.t-name { font-weight: 600; color: var(--black); }
.t-meta { color: #888; font-size: .8rem; letter-spacing: .04em; }

/* ---------- Booking CTA banner with bg image ---------- */
.booking-banner {
  position: relative;
  padding: 0;
  background: var(--black);
  overflow: hidden;
}
.booking-banner .container {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  z-index: 2;
}
.banner-bg {
  position: absolute; inset: 0; z-index: 0;
}
.banner-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.45) saturate(.9);
}
.banner-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,15,15,.7) 0%, rgba(15,15,15,.3) 100%);
}
.banner-content {
  position: relative; z-index: 2;
  color: var(--white);
  text-align: center;
  max-width: 720px; margin: 0 auto;
}
.banner-content h2 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.4rem); }
.banner-content p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px; }
.banner-content .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact { background: var(--white); padding-bottom: clamp(48px, 6vw, 90px); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: stretch;
}
.contact-info h2 { margin-bottom: 32px; }
.contact-block { margin-bottom: 28px; }
.contact-block h3 {
  font-family: var(--sans);
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 10px; font-weight: 600;
}
.contact-block p { color: var(--charcoal); }
.contact-block a:hover { color: var(--gold-deep); }
.hours { border-collapse: collapse; }
.hours td { padding: 6px 0; }
.hours td:first-child { padding-right: 40px; color: #6b6b6b; }
.hours td:last-child  { font-weight: 500; }
.hours-note {
  margin-top: 10px;
  margin-bottom: 24px;
  font-size: .8rem;
  font-style: italic;
  color: var(--gold-deep);
  letter-spacing: .03em;
}

.socials { display: flex; gap: 14px; }
.socials a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--black);
  color: var(--black);
  border-radius: 50%;
  transition: all .3s var(--ease);
  background: var(--white);
}
.socials a:hover { background: var(--black); transform: translateY(-2px); }
.socials a img { width: 22px; height: 22px; }
.socials a svg { width: 22px; height: 22px; }
.socials .social-google:hover { background: var(--white); }

.contact-map {
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--nude-deep);
  box-shadow: var(--shadow-sm);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; min-height: 280px; }

@media (max-width: 800px) {
  /* Flatten .contact-info into a flex container so we can re-order
     individual items, then slot the map between "Find Us" and "Address". */
  .contact-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .contact-info { display: contents; }
  .contact-info .eyebrow      { order: 1; }
  .contact-info h2            { order: 2; margin-bottom: 24px; }
  .contact-map                { order: 3; margin-bottom: 28px; }
  .contact-info .contact-block { order: 4; }
  .contact-map { min-height: 220px; }
  .contact-map iframe { min-height: 220px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-mark { filter: drop-shadow(0 0 8px rgba(212,175,55,.3)); }
.footer-tag { margin: 18px 0 24px; max-width: 36ch; line-height: 1.6; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(212,175,55,.4);
  color: var(--gold-soft);
  border-radius: 100px;
}
.footer-col h4 { color: var(--gold); margin-bottom: 18px; }
.footer-col a {
  display: block; padding: 6px 0;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-col p { color: rgba(255,255,255,.7); line-height: 1.7; }

.footer-bottom {
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  /* Phone-only: compact footer */
  .site-footer { padding: 32px 0 0; font-size: .9rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 22px;
  }
  .footer-tag { margin: 10px 0 14px; line-height: 1.5; }
  .trust-badges { gap: 6px; }
  .badge { font-size: .64rem; padding: 4px 10px; letter-spacing: .12em; }
  .footer-col h4 { margin-bottom: 10px; }
  .footer-col a { padding: 3px 0; font-size: .9rem; }
  .footer-col p { line-height: 1.5; margin-bottom: 4px; }
  .footer-bottom { padding: 12px 0; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,15,15,.96);
  display: flex; align-items: center; justify-content: center;
  padding: 5vw;
  animation: fadeIn .3s var(--ease);
}
.lb-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 2.4rem; color: var(--white); line-height: 1;
}
.lb-close:hover { color: var(--gold); }
.lb-content {
  max-width: 80vmin; aspect-ratio: 1 / 1; width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  color: var(--white); font-family: var(--serif); font-style: italic; font-size: 1.2rem;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

/* ---------- Floating CTA (mobile only) ---------- */
.floating-cta {
  display: none;
  position: fixed; bottom: calc(32px + 0.5cm); right: 20px; z-index: 90;
  background: var(--gold); color: var(--black);
  padding: 14px 22px; border-radius: 100px;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  font-size: .85rem;
  /* Shadow extends UP and OUT so it never gets clipped by viewport edge */
  box-shadow: 0 -2px 12px rgba(212,175,55,.35), 0 4px 16px rgba(212,175,55,.45);
  align-items: center;
  gap: 8px;
}
/* White Call button — sits ABOVE the gold Book button */
.floating-cta-call {
  bottom: calc(92px + 0.5cm);
  background: #ffffff;
  color: var(--black);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 -2px 10px rgba(0,0,0,.12), 0 4px 14px rgba(0,0,0,.2);
}
.floating-cta-call:hover {
  background: var(--black);
  color: var(--gold);
}
@media (max-width: 700px) {
  /* Floating buttons start hidden; JS adds .show-floating-cta to body
     once the About section enters the viewport. They stay visible afterwards. */
  .floating-cta {
    display: inline-flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px);
    transition: opacity .45s ease, transform .45s ease;
  }
  body.show-floating-cta .floating-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* ---------- Scroll reveal ---------- */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   PHONE: horizontal swipe scroll for Menu, Gallery, Reviews
   Each card is partially visible on the side so users know to swipe.
   Snap behavior is mandatory so cards center themselves.
   ============================================================ */
@media (max-width: 700px) {
  /* Common swipe-row behavior */
  .services-grid,
  .gallery-grid-photos,
  .testimonial-grid {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 8px 12vw 24px 4vw;
    margin: 0 -4vw;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE/Edge */
  }
  .services-grid::-webkit-scrollbar,
  .gallery-grid-photos::-webkit-scrollbar,
  .testimonial-grid::-webkit-scrollbar {
    display: none;               /* WebKit */
  }
  .services-grid > .service-card,
  .gallery-grid-photos > .gallery-item-photo,
  .testimonial-grid > .testimonial {
    flex: 0 0 82%;               /* each card fills 82% of viewport; ~18% peeking next */
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  /* Testimonials on phone: cards size to their content (different heights are OK),
     and the name + stars sit just under the review text, not at the bottom. */
  .testimonial-grid { align-items: flex-start; }
  .testimonial { align-self: flex-start; }
  .testimonial figcaption { margin-top: 14px !important; }
}
