/* =========================================================
   LYDIA'S BRAIDING — design tokens
   Palette: warm clay + antique gold + deep plum, on ivory
   Type: Fraunces (display) / Work Sans (body) / Space Grotesk (labels)
   Signature: a woven "braid" divider used between sections
   ========================================================= */

:root {
  --ink: #241812;
  --cream: #FAF3E7;
  --cream-2: #F1E6D3;
  --clay: #8C3B23;
  --clay-dark: #6B2C19;
  --gold: #C89B3C;
  --gold-light: #E4C878;
  --plum: #4A2138;
  --white: #FFFFFF;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", -apple-system, sans-serif;
  --font-label: "Space Grotesk", monospace;

  --radius: 2px;
  --container: 1180px;
}

* { box-sizing: border-box; }

/* ---------- icon system (inline SVG, replaces all emoji) ---------- */
.icon {
  width: 1em; height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
}
.icon-sm { width: .92em; height: .92em; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .4em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--clay);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 500;
  padding: .95em 1.7em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--clay); color: var(--cream); }
.btn-primary:hover { background: var(--clay-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-sm { padding: .55em 1.1em; font-size: .68rem; }

/* ---------- top utility bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream-2);
  font-family: var(--font-label);
  font-size: .78rem;
  letter-spacing: .03em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { opacity: .9; display: inline-flex; align-items: center; gap: .4em; }
.topbar a:hover { color: var(--gold-light); }
.topbar .sep { opacity: .4; margin: 0 .6em; }
.topbar .wrap > div:last-child { display: inline-flex; align-items: center; gap: .4em; }

/* ---------- header / nav ---------- */
header.site {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-2);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.logo span { color: var(--clay); font-style: italic; }
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  font-family: var(--font-label);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.nav-links a { position: relative; padding-bottom: 4px; }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  color: var(--ink); padding: 6px;
}
.nav-toggle .icon { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.active .icon-open { display: none; }
.nav-toggle.active .icon-close { display: inline-block; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: 0; padding: 0 0 4px; margin: 0;
  font: inherit; text-transform: inherit; letter-spacing: inherit; color: inherit;
  cursor: pointer; display: inline-flex; align-items: center; gap: .3rem;
  position: relative;
}
.nav-dropdown-toggle .icon { width: 13px; height: 13px; transition: transform .2s ease; }
.nav-dropdown-toggle::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .2s ease;
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after,
.nav-dropdown-toggle.active::after { width: 100%; }
.nav-dropdown:hover .nav-dropdown-toggle .icon,
.nav-dropdown.open .nav-dropdown-toggle .icon { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0; margin-top: .9rem;
  min-width: 230px; max-height: 60vh; overflow-y: auto;
  background: var(--cream); border: 1px solid var(--cream-2);
  box-shadow: 0 16px 34px rgba(36,24,18,.14);
  border-radius: 3px; padding: .45rem;
  text-transform: none; letter-spacing: normal;
  z-index: 60;
}
.nav-dropdown-menu a {
  display: block; padding: .55rem .75rem; border-radius: 2px;
  color: var(--ink); font-size: .88rem;
}
.nav-dropdown-menu a:hover { background: var(--cream-2); }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-mobile-actions { display: none; align-items: center; gap: .7rem; }
.nav-book-mobile {
  padding: .55em 1em; font-size: .7rem; white-space: nowrap;
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column;
    align-items: flex-start; padding: 1.2rem 24px 1.6rem;
    gap: 1.1rem; border-bottom: 1px solid var(--cream-2);
    display: none;
  }
  .nav-links.open { display: flex; }
  /* The nav-links list still contains its own Book Now link for once the menu is open —
     hide the duplicate here so it doesn't show twice on mobile. */
  .nav-links .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile-actions { display: flex; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 0 0 4px; }
  /* On touch devices :hover can stick after a tap, so only the JS-driven .open class controls
     the submenu here — no hover-reveal like on desktop. */
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block; position: static; margin: .5rem 0 0; width: 100%;
    box-shadow: none; border: 0; background: none; padding: 0 0 0 1rem;
  }
}

/* ---------- woven divider — the signature element ---------- */
.braid-divider {
  height: 34px;
  width: 100%;
  background-repeat: repeat-x;
  background-size: 68px 34px;
  background-image:
    radial-gradient(circle at 17px 8px, transparent 7px, var(--gold) 7.5px, var(--gold) 9px, transparent 9.5px),
    radial-gradient(circle at 51px 26px, transparent 7px, var(--clay) 7.5px, var(--clay) 9px, transparent 9.5px);
  opacity: .9;
}
.braid-divider.on-dark {
  background-image:
    radial-gradient(circle at 17px 8px, transparent 7px, var(--gold-light) 7.5px, var(--gold-light) 9px, transparent 9.5px),
    radial-gradient(circle at 51px 26px, transparent 7px, var(--cream) 7.5px, var(--cream) 9px, transparent 9.5px);
}

/* ---------- hero ---------- */
.hero {
  background: var(--ink);
  color: var(--cream);
  padding: 92px 0 70px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}
.hero .wrap { position: relative; z-index: 2; max-width: 760px; }
.hero .eyebrow { color: var(--gold-light); }

/* ---------- hero slideshow (background) ---------- */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  animation: heroKenBurns 9s ease-in-out infinite alternate;
}
.hero-slide:nth-child(even) img { animation-direction: alternate-reverse; }
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(36,24,18,.92) 0%, rgba(36,24,18,.75) 42%, rgba(36,24,18,.35) 75%, rgba(36,24,18,.25) 100%),
    linear-gradient(0deg, rgba(36,24,18,.55) 0%, rgba(36,24,18,0) 32%);
}
.hero-slide-nav {
  position: absolute; left: 0; right: 0; bottom: 22px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.hero-caption {
  margin: 0; color: var(--cream-2); font-family: var(--font-label);
  font-size: .78rem; letter-spacing: .04em; text-align: center;
  transition: opacity .3s ease;
}
.hero-dots { display: flex; gap: .5rem; }
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid rgba(250,243,231,.55);
  background: transparent; cursor: pointer; padding: 0; transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-dot:hover { border-color: var(--gold-light); transform: scale(1.15); }
.hero-dot.active { background: var(--gold-light); border-color: var(--gold-light); }

@media (prefers-reduced-motion: reduce) {
  .hero-slide img { animation: none; }
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.05;
  margin: .3em 0 .4em;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero p.lede {
  font-size: 1.08rem;
  color: var(--cream-2);
  max-width: 46ch;
  margin-bottom: 2em;
}
.hero .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .quick-contact {
  margin-top: 2.6rem; display: flex; gap: 1.6rem; flex-wrap: wrap;
  font-family: var(--font-label); font-size: .82rem; color: var(--cream-2);
}
.hero .quick-contact a:hover { color: var(--gold-light); }

/* ---------- sections ---------- */
section { padding: 76px 0; }
.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.step-indicator {
  display: inline-block; font-family: var(--font-label); font-size: .72rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--white);
  background: var(--clay); padding: .35em .8em; border-radius: 20px; margin: .5rem 0 .3rem;
}

/* ---------- services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-2);
  padding: 1.7rem 1.5rem;
  border-radius: var(--radius);
  transition: border-color .18s ease, transform .18s ease;
}
.service-card:hover { border-color: var(--clay); transform: translateY(-3px); }
.service-card .eyebrow { display: block; margin-bottom: .6rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.service-card p { font-size: .9rem; color: #5a4a40; margin-bottom: 1.1rem; }
.service-card a.book-link {
  font-family: var(--font-label); font-size: .78rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--clay); border-bottom: 1px solid var(--clay); padding-bottom: 2px;
}
.service-card a.book-link:hover { color: var(--clay-dark); }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .9rem;
}
.gallery-grid figure {
  margin: 0; aspect-ratio: 4/5; background: var(--cream-2);
  border-radius: var(--radius); overflow: hidden; position: relative;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item-book {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: center; padding: 1.6rem .6rem .9rem;
  background: linear-gradient(to top, rgba(36,24,18,.7), rgba(36,24,18,0));
}
.gallery-item-book .btn { box-shadow: 0 6px 16px rgba(36,24,18,.35); }
.gallery-grid .ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  height: 100%; font-family: var(--font-label); font-size: .75rem;
  color: #8a7a6c; text-align: center; padding: 1rem;
}
.gallery-grid .ph .icon { width: 22px; height: 22px; }

/* ---------- decorative image marquee (right-to-left, images only) ---------- */
.marquee-section { overflow: hidden; padding: 1.6rem 0; background: var(--cream-2); }
.marquee-track {
  display: flex; gap: 1rem; width: max-content;
  animation: marqueeScroll 34s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0; width: 230px; aspect-ratio: 4/3;
  border-radius: var(--radius); overflow: hidden; background: var(--white);
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .marquee-item { width: 150px; }
  .marquee-track { animation-duration: 24s; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- payment / info strip ---------- */
.info-strip {
  background: var(--plum); color: var(--cream);
}
.info-strip .wrap {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 2rem;
}
.info-strip h4 {
  color: var(--gold-light); font-family: var(--font-label); font-size: .82rem; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: .8rem; display: flex; align-items: center; gap: .5em;
}
.info-strip p, .info-strip li { color: var(--cream-2); font-size: .92rem; }
.info-strip ul { list-style: none; padding: 0; margin: 0; }
.info-strip li { margin-bottom: .35rem; }

/* ---------- trust bar ---------- */
.trust-bar { padding: 34px 0; background: var(--white); border-bottom: 1px solid var(--cream-2); }
.trust-bar .wrap {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2.2rem 2.8rem;
}
.trust-item {
  display: flex; align-items: center; gap: .6em;
  font-family: var(--font-label); font-size: .82rem; letter-spacing: .01em; color: var(--ink);
}
.trust-item .icon { color: var(--clay); width: 1.15em; height: 1.15em; }

/* ---------- why choose us / feature grid ---------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem;
}
.feature-card {
  background: var(--white); border: 1px solid var(--cream-2); padding: 1.7rem 1.5rem;
  border-radius: var(--radius); transition: transform .18s ease, border-color .18s ease;
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--clay); }
.feature-card .icon { width: 30px; height: 30px; color: var(--clay); margin-bottom: .9rem; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.feature-card p { font-size: .9rem; color: #5a4a40; margin: 0; }

.service-card-icon { display: block; margin-bottom: .7rem; }
.service-card-icon .icon { width: 26px; height: 26px; color: var(--gold); }
.book-link { display: inline-flex; align-items: center; gap: .4em; }

/* ---------- how it works / steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem;
  counter-reset: step;
}
.step { position: relative; padding-top: .4rem; }
.step-num {
  display: block; font-family: var(--font-display); font-size: 2.4rem; font-style: italic;
  color: var(--cream-2); line-height: 1; margin-bottom: -.6rem;
}
.step .icon { width: 26px; height: 26px; color: var(--clay); margin-bottom: .8rem; }
.step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.step p { font-size: .9rem; color: #5a4a40; margin: 0; }

/* ---------- service area / map ---------- */
.service-area-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 860px) { .service-area-block { grid-template-columns: 1fr; } }
.service-area-block p { color: #5a4a40; margin-bottom: 1.2rem; }
.area-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem .8rem; }
.area-list li { display: flex; align-items: center; gap: .5em; font-size: .92rem; }
.area-list .icon { color: var(--clay); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--cream-2); aspect-ratio: 4/3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- FAQ accordion ---------- */
.faq-accordion { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--cream-2); border-radius: var(--radius); padding: 1.1rem 1.3rem;
}
.faq-item summary {
  cursor: pointer; font-weight: 500; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { color: var(--clay); transition: transform .2s ease; flex-shrink: 0; }
.faq-item[open] summary .icon { transform: rotate(180deg); }
.faq-item p { margin: .9rem 0 0; color: #5a4a40; font-size: .93rem; }

/* ---------- reviews CTA ---------- */
.reviews-cta {
  background: var(--ink); color: var(--cream); text-align: center; padding: 80px 0;
}
.reviews-cta .icon { width: 40px; height: 40px; color: var(--gold-light); margin-bottom: 1rem; }
.reviews-cta h2 { color: var(--cream); }
.reviews-cta p { max-width: 56ch; margin: 0 auto 1.8rem; color: var(--cream-2); }

/* ---------- final CTA band ---------- */
.final-cta { background: var(--gold); text-align: center; padding: 72px 0; }
.final-cta h2 { color: var(--ink); }
.final-cta p { max-width: 56ch; margin: 0 auto 1.8rem; color: #4a3418; }
.final-cta .btn-ghost { border-color: var(--ink); }

/* ---------- booking / contact section ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border: 1px solid var(--cream-2);
  padding: 1rem 1.2rem; border-radius: var(--radius);
}
.contact-method .label { font-family: var(--font-label); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--clay); }
.contact-method .value { font-weight: 500; }
.contact-method .icon-wrap {
  width: 44px; height: 44px; border-radius: 50%; background: var(--cream-2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method .icon-wrap .icon { width: 20px; height: 20px; color: var(--clay); }

.selected-style-card {
  display: flex; gap: 1.2rem; align-items: center;
  background: var(--white); border: 1.5px solid var(--gold);
  border-radius: var(--radius); padding: 1.1rem; margin-bottom: 1.4rem;
}
.selected-style-card img {
  width: 84px; height: 84px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0;
}
.selected-style-info .eyebrow { display: block; margin-bottom: .2rem; }
.selected-style-info h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.selected-style-info p { font-size: .88rem; color: #5a4a40; margin: 0 0 .5rem; }
.selected-style-price {
  display: inline-flex; align-items: center; gap: .4em;
  font-family: var(--font-label); font-size: .85rem; color: var(--clay); font-weight: 500; margin-right: 1rem;
}
.selected-style-clear {
  display: inline-flex; align-items: center; gap: .35em;
  font-family: var(--font-label); font-size: .76rem; color: #8a7a6c; text-decoration: underline;
}
.selected-style-clear:hover { color: var(--clay); }

/* ---------- booking alerts (success / error) ---------- */
.booking-alert {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: 1rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.2rem; font-size: .92rem;
}
.booking-alert .icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: .1em; }
.booking-alert strong { display: block; margin-bottom: .2rem; }
.booking-alert p { margin: 0; }
.booking-alert-ok { background: #e7f3e6; border: 1px solid #b7d9b3; color: #2c5c26; }
.booking-alert-error { background: #f6e3e0; border: 1px solid #e0b3ab; color: #7a2d20; }

/* ---------- small popup modal (e.g. "time already taken") ---------- */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(36, 24, 18, .55);
  align-items: center; justify-content: center;
  padding: 1.2rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative;
  background: var(--white); border: 1px solid #e0b3ab;
  border-radius: var(--radius); box-shadow: 0 20px 50px rgba(36,24,18,.28);
  max-width: 420px; width: 100%; padding: 2rem 1.8rem 1.8rem;
  text-align: center;
}
.modal-box .icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: #f6e3e0; color: #a83a2c;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.modal-box .icon-wrap .icon { width: 26px; height: 26px; }
.modal-box h3 { margin: 0 0 .6rem; font-size: 1.45rem; color: #7a2d20; }
.modal-box p { margin: 0 0 1.4rem; font-size: 1.08rem; line-height: 1.5; color: var(--ink); }
.modal-close {
  position: absolute; top: .8rem; right: .9rem;
  background: none; border: 0; cursor: pointer; color: #8a7a6c; padding: 4px;
}
.modal-close .icon { width: 20px; height: 20px; }

/* ---------- payment instructions (post-submit, unpaid) ---------- */
.payment-instructions {
  background: var(--white); border: 1.5px solid var(--gold); border-radius: var(--radius);
  padding: 1.4rem; margin-bottom: 1.4rem;
}
.payment-instructions-head { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; }
.payment-instructions-head .icon { width: 22px; height: 22px; color: var(--clay); flex-shrink: 0; margin-top: .1em; }
.payment-instructions-head strong { display: block; margin-bottom: .3rem; }
.payment-instructions-head p { margin: 0; font-size: .88rem; color: #5a4a40; }
.payment-instructions-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .6rem 0; border-bottom: 1px dashed var(--cream-2); font-size: .9rem;
}
.payment-instructions-row:last-of-type { border-bottom: none; }
.payment-instructions-row span { color: #8a7a6c; }
.payment-instructions-row strong { font-family: var(--font-label); color: var(--clay); }

/* ---------- copy-to-clipboard (payment reference) ---------- */
.copy-field { display: flex; align-items: center; gap: .7em; }
.copy-btn {
  display: inline-flex; align-items: center; gap: .4em;
  background: var(--cream-2); border: 1px solid var(--cream-2); color: var(--ink);
  font-family: var(--font-label); font-size: .72rem; text-transform: uppercase; letter-spacing: .04em;
  padding: .35em .7em; border-radius: 3px; cursor: pointer; transition: background .15s ease, border-color .15s ease;
}
.copy-btn:hover { border-color: var(--clay); }
.copy-btn .copy-icon-done { display: none; }
.copy-btn.copied { background: #e7f3e6; border-color: #b7d9b3; color: #2c5c26; }
.copy-btn.copied .copy-icon-default { display: none; }
.copy-btn.copied .copy-icon-done { display: inline-block; }
.copy-btn-label-done { display: none; }
.copy-btn.copied .copy-btn-label-default { display: none; }
.copy-btn.copied .copy-btn-label-done { display: inline; }

/* ---------- Quick View share button (reuses the copy/check icon-swap pattern above) ---------- */
#shareBtn .copy-icon-done { display: none; }
#shareBtn.copied { background: #e7f3e6 !important; border-color: #b7d9b3 !important; color: #2c5c26 !important; }
#shareBtn.copied .copy-icon-default { display: none; }
#shareBtn.copied .copy-icon-done { display: inline-block; }
#shareBtn.copied .copy-btn-label-default { display: none; }
#shareBtn.copied .copy-btn-label-done { display: inline; }

/* ---------- fee notice + payment method picker ---------- */
.fee-notice {
  display: flex; align-items: flex-start; gap: .6em; background: var(--cream-2);
  border-radius: var(--radius); padding: .9rem 1rem; margin: 1.2rem 0 .4rem; font-size: .87rem; color: #4a3c33;
}
.fee-notice .icon { color: var(--clay); flex-shrink: 0; margin-top: .15em; }
.payment-options { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .5rem; }
.payment-option {
  flex: 1; min-width: 110px; display: flex; align-items: center; justify-content: center; gap: .5em;
  border: 1.5px solid var(--cream-2); border-radius: var(--radius); padding: .8em .6em; cursor: pointer;
  font-family: var(--font-label); font-size: .82rem; transition: border-color .15s ease, background .15s ease;
}
.payment-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.payment-option span { display: flex; align-items: center; gap: .45em; }
.payment-option:has(input:checked) { border-color: var(--clay); background: var(--cream); color: var(--clay); }

.booking-form { background: var(--white); border: 1px solid var(--cream-2); padding: 2rem; border-radius: var(--radius); }
.booking-form label { display: block; font-family: var(--font-label); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; margin: 1rem 0 .4rem; }
.booking-form label:first-child { margin-top: 0; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; padding: .7em .8em; border: 1px solid var(--cream-2);
  border-radius: var(--radius); font-family: var(--font-body); font-size: .95rem; background: var(--cream);
}
.booking-form textarea { min-height: 100px; resize: vertical; }
.booking-form .btn { margin-top: 1.4rem; width: 100%; justify-content: center; }
.form-note { font-size: .78rem; color: #8a7a6c; margin-top: .8rem; }

/* ---------- footer ---------- */
footer.site {
  background: var(--ink); color: var(--cream-2); padding: 3.4rem 0 1.6rem;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.4rem; margin-bottom: 2.2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
footer.site h4 { color: var(--gold-light); font-family: var(--font-label); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
footer.site .logo { color: var(--cream); margin-bottom: .8rem; }
footer.site p { color: var(--cream-2); font-size: .9rem; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: .55rem; font-size: .9rem; }
.social-row { display: flex; gap: .9rem; margin-top: 1rem; }
.social-row a {
  width: 38px; height: 38px; border: 1px solid var(--cream-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.social-row a .icon { width: 17px; height: 17px; }
.social-row a:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.4rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  font-size: .78rem; color: #a3948a; font-family: var(--font-label);
}

/* ---------- page hero (inner pages) ---------- */
.page-hero { background: var(--ink); color: var(--cream); padding: 60px 0 44px; }
.page-hero h1 { color: var(--cream); font-size: clamp(2rem, 4vw, 2.8rem); }

/* ---------- pricing table ---------- */
.pricing-block { margin-bottom: 2.2rem; }
.pricing-block h3 { font-size: 1.1rem; border-bottom: 2px solid var(--gold); display: inline-block; padding-bottom: .3rem; margin-bottom: 1rem; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table td { padding: .65rem .3rem; border-bottom: 1px dashed var(--cream-2); font-size: .95rem; }
.pricing-table td:last-child { text-align: right; font-family: var(--font-label); color: var(--clay); }

/* ---------- pricing page: restaurant-style menu list ---------- */
.menu-list { max-width: 820px; margin: 0 auto; }
.menu-category { margin-bottom: 2.6rem; }
.menu-category-title {
  font-family: var(--font-display); font-size: 1.35rem; color: var(--clay);
  padding-bottom: .5rem; margin-bottom: .3rem; border-bottom: 2px solid var(--gold);
}
.menu-row {
  display: flex; align-items: baseline; gap: .9rem;
  padding: .9rem 0; border-bottom: 1px dashed var(--cream-2);
}
.menu-row-label { font-weight: 500; font-size: 1rem; }
.menu-row-dots { flex: 1; border-bottom: 2px dotted #d8c8b0; min-width: 16px; margin-bottom: .3em; }
.menu-row-price { font-family: var(--font-label); font-weight: 600; color: var(--clay); font-size: .98rem; white-space: nowrap; }
.menu-row-book { flex-shrink: 0; }

/* ---------- 2-column listing grids on mobile ---------- */
@media (max-width: 640px) {
  .services-grid, .gallery-grid, .feature-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .7rem !important;
  }
  .service-card { padding: 1rem .85rem; }
  .service-card h3 { font-size: .95rem; }
  .service-card p { font-size: .8rem; margin-bottom: .7rem; }
  .service-card-icon .icon { width: 20px; height: 20px; }
  .menu-row { flex-wrap: wrap; padding: .9rem 0 1rem; }
  .menu-row-dots { display: none; }
  .menu-row-book { width: 100%; margin-top: .3rem; }
  .menu-row-book .btn { width: 100%; justify-content: center; }
  .feature-card { padding: 1.1rem .9rem; }
  .feature-card h3 { font-size: .92rem; }
  .feature-card p { font-size: .8rem; }
}

/* ---------- style quick view ---------- */
.qv-layout {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start;
}
@media (max-width: 860px) { .qv-layout { grid-template-columns: 1fr; gap: 2rem; } }

.qv-main {
  position: relative; aspect-ratio: 4/3; background: var(--cream-2);
  border-radius: var(--radius); overflow: hidden; margin-bottom: .8rem;
}
.qv-main img { width: 100%; height: 100%; object-fit: cover; }
.qv-main-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .6rem; color: #8a7a6c; font-family: var(--font-label); font-size: .85rem;
}
.qv-main-placeholder .icon { width: 32px; height: 32px; }
.qv-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(36,24,18,.55); color: var(--cream); display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.qv-arrow:hover { background: rgba(36,24,18,.8); }
.qv-arrow-prev { left: 12px; }
.qv-arrow-next { right: 12px; }
.qv-arrow .icon { width: 20px; height: 20px; }
.qv-thumbs { display: flex; gap: .6rem; flex-wrap: wrap; }
.qv-thumb {
  width: 64px; height: 64px; border-radius: var(--radius); overflow: hidden; padding: 0;
  border: 2px solid transparent; cursor: pointer; background: var(--cream-2); flex-shrink: 0;
  transition: border-color .15s ease;
}
.qv-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qv-thumb.active { border-color: var(--clay); }

.qv-info .eyebrow { display: block; margin-bottom: .5rem; }
.qv-info h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.qv-desc { color: #5a4a40; margin-bottom: 1.4rem; white-space: pre-line; }
.qv-pricing { margin-bottom: 1.4rem; }
.qv-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: .8rem; }
.qv-actions .btn { flex: 1; justify-content: center; min-width: 160px; }

/* ---------- policy content ---------- */
.policy-content h2 { margin-top: 2rem; font-size: 1.3rem; display: flex; align-items: center; gap: .5em; }
.policy-content h2 .icon { color: var(--clay); width: .85em; height: .85em; }
.policy-content p, .policy-content li { color: #4a3c33; }

/* =========================================================
   Logo mark (image + wordmark), scroll-reveal, and motion
   ========================================================= */
.logo-mark {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink);
}
.logo-mark img { height: 42px; width: 42px; object-fit: contain; border-radius: 50%; background: var(--ink); }
.logo-mark.on-dark { color: var(--cream); margin-bottom: .8rem; }
.logo-mark.on-dark img { background: transparent; }

/* Scroll reveal: elements start slightly below/faded, animate up into place */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible .stagger-item { opacity: 1; transform: translateY(0); }
.stagger-item {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.stagger-item:nth-child(1) { transition-delay: .02s; }
.stagger-item:nth-child(2) { transition-delay: .08s; }
.stagger-item:nth-child(3) { transition-delay: .14s; }
.stagger-item:nth-child(4) { transition-delay: .2s; }
.stagger-item:nth-child(5) { transition-delay: .26s; }
.stagger-item:nth-child(6) { transition-delay: .32s; }
.stagger-item:nth-child(7) { transition-delay: .38s; }
.stagger-item:nth-child(8) { transition-delay: .44s; }
.stagger-item:nth-child(n+9) { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger-item { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Hero entrance animation on page load */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow { animation: heroUp .6s ease both; }
.hero h1       { animation: heroUp .7s ease .08s both; }
.hero p.lede   { animation: heroUp .7s ease .16s both; }
.hero .cta-row { animation: heroUp .7s ease .24s both; }
.hero .quick-contact { animation: heroUp .7s ease .32s both; }

/* Subtle image zoom on hover for gallery + service cards */
.gallery-grid figure img { transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }

/* Sticky header shrink-on-scroll state (toggled via JS) */
header.site.scrolled { box-shadow: 0 4px 18px rgba(36,24,18,.08); }

/* Back-to-top button */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--clay); color: var(--cream); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.to-top .icon { width: 19px; height: 19px; }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--clay-dark); }

/* ---------- floating contact stack (bottom-left) ---------- */
.fab-stack {
  position: fixed; left: 22px; bottom: 22px; z-index: 60;
  display: flex; flex-direction: column; align-items: flex-start;
}
.fab-menu { display: flex; flex-direction: column-reverse; gap: 10px; margin-bottom: 12px; }
.fab-item {
  display: flex; align-items: center; gap: .65em;
  background: var(--ink); color: var(--cream);
  border-radius: 999px; padding: .4em .95em .4em .4em;
  box-shadow: 0 6px 18px rgba(36,24,18,.22);
  opacity: 0; transform: translateY(10px) scale(.92); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .18s ease;
  white-space: nowrap;
}
.fab-stack.open .fab-item { opacity: 1; transform: none; pointer-events: auto; }
.fab-item:nth-child(1) { transition-delay: .12s; }
.fab-item:nth-child(2) { transition-delay: .06s; }
.fab-item:nth-child(3) { transition-delay: 0s; }
.fab-item:hover { background: var(--clay); }
.fab-item .icon-badge {
  width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fab-item .icon-badge .icon { width: 16px; height: 16px; }
.fab-item .fab-label { font-family: var(--font-label); font-size: .78rem; letter-spacing: .02em; }

.fab-toggle {
  width: 54px; height: 54px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--clay); color: var(--cream); position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(36,24,18,.28);
  transition: background .2s ease, transform .2s ease;
}
.fab-toggle:hover { background: var(--clay-dark); transform: translateY(-2px); }
.fab-toggle .icon { width: 24px; height: 24px; }
.fab-toggle .fab-icon-close { display: none; }
.fab-stack.open .fab-toggle .fab-icon-open { display: none; }
.fab-stack.open .fab-toggle .fab-icon-close { display: inline-block; }
.fab-toggle::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--gold); opacity: 0; animation: fabPulse 2.6s ease-out infinite;
}
@keyframes fabPulse {
  0% { opacity: .55; transform: scale(.85); }
  70% { opacity: 0; transform: scale(1.25); }
  100% { opacity: 0; transform: scale(1.25); }
}
@media (prefers-reduced-motion: reduce) { .fab-toggle::before { animation: none; } }
@media (max-width: 520px) {
  .fab-stack { left: 16px; bottom: 16px; }
  .fab-item .fab-label { display: none; }
  .fab-item { padding: .4em; }
}
