/* ============ Sip family — shared design system v2 ============ */
:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Family base (overridden per brand) */
  --linen: #f4f1e8;
  --ink: #1e211c;
  --sage: #a8bba0;

  --bg: var(--linen);
  --bg-alt: #ece7d9;
  --surface: #fbf9f3;
  --text: var(--ink);
  --text-muted: #5d6156;
  --accent: #5c7355;
  --accent-contrast: #f4f1e8;
  --border: rgba(30, 33, 28, 0.12);

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

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 560; line-height: 1.05; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h3 { font-size: 1.35rem; }

a { color: var(--accent); }
em { font-family: var(--font-display); font-style: italic; }
img { max-width: 100%; display: block; }

.container { width: min(1160px, 92%); margin: 0 auto; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}

/* ---------- Nav ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.4rem 0;
  transition: background 0.4s var(--ease-lux), box-shadow 0.4s, padding 0.4s;
}
.site-nav.scrolled {
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  box-shadow: 0 1px 0 var(--border);
}
.site-nav .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 0;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  text-decoration: none; color: var(--text);
  letter-spacing: 0.01em;
}
.brand span { color: var(--accent); font-style: italic; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  position: relative;
  text-decoration: none; color: var(--text);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-lux);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after {
  transform: scaleX(1); transform-origin: left;
}
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.7rem; color: var(--text); line-height: 1;
}
.nav-actions {
  display: flex; align-items: center; gap: 0.75rem;
}
.btn-nav-cta {
  padding: 0.45rem 1.15rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  line-height: 1.2;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-block;
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  font-weight: 650; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.4s var(--ease-lux);
  z-index: 1;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-lux);
}
.btn:hover { color: var(--accent-contrast); }
.btn:hover::before { transform: translateY(0); }
.btn-solid { background: var(--accent); color: var(--accent-contrast); }
.btn-solid::before { background: var(--text); }
.btn-solid:hover { color: var(--bg); }

/* ---------- Hero (sub-sites) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.08) contrast(1.05);
  will-change: opacity, transform;
}

/* Arrival veil: page blooms in from its own brand colour */
.arrival-veil {
  position: fixed; inset: 0; z-index: 300;
  background: var(--bg);
  opacity: 1; pointer-events: none;
  transition: opacity 0.85s ease 0.05s;
}
.arrival-veil.lifted { opacity: 0; }

/* Hero content flows up on load */
.hero-content > * {
  animation: heroItemIn 1s var(--ease-lux) both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.35s; }
.hero-content > *:nth-child(2) { animation-delay: 0.5s; }
.hero-content > *:nth-child(3) { animation-delay: 0.65s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }
@keyframes heroItemIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
.hero-scrim { position: absolute; inset: 0; z-index: 1; }
/* Soft blend: hero dissolves into the page background instead of a hard edge */
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 34%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 1; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 0 4rem;
}
.hero-content .kicker { display: block; margin-bottom: 1.4rem; }
.hero-content h1 { max-width: 14ch; }
.hero-content .tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  max-width: 46ch;
  margin: 1.6rem 0 2.6rem;
}
.hero-content .cta-row { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 1px; height: 56px; overflow: hidden;
}
.scroll-cue::after {
  content: ""; display: block; width: 1px; height: 100%;
  background: currentColor; opacity: 0.7;
  animation: cueDrop 2s var(--ease-lux) infinite;
}
@keyframes cueDrop {
  0% { transform: translateY(-100%); }
  60% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------- Sections ---------- */
.section { padding: 7rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.section-head .kicker { display: block; margin-bottom: 1rem; }
.section-head p { color: var(--text-muted); margin-top: 1.1rem; font-size: 1.05rem; }

/* Full-bleed image band */
.image-band {
  position: relative;
  min-height: 62vh;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.image-band .band-scrim { position: absolute; inset: 0; }
.image-band .band-caption {
  position: relative; z-index: 1;
  padding: 2.5rem 0;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

/* Split feature (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.split-media { border-radius: 20px; overflow: hidden; aspect-ratio: 4/4.6; }
.split-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 1.2s var(--ease-lux);
}
.split-media:hover img { transform: scale(1.045); }
.split-copy .kicker { display: block; margin-bottom: 1rem; }
.split-copy p { color: var(--text-muted); margin-top: 1.2rem; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.8rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.6rem 2.2rem;
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px -18px rgba(30,33,28,0.28); }
.card h3 { margin-bottom: 0.7rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
.card .price {
  font-family: var(--font-display);
  font-size: 2.3rem; color: var(--accent);
  margin: 1rem 0 0.6rem;
}

/* ---------- Menu ---------- */
.menu-hero { min-height: 58vh; }
.menu-section { margin-bottom: 4.5rem; }
.menu-section h2 { margin-bottom: 0.4rem; }
.menu-section .menu-sub { color: var(--text-muted); margin-bottom: 1.8rem; }
.menu-rule { width: 64px; height: 2px; background: var(--accent); margin: 1rem 0 2rem; border: 0; }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.2rem;
  padding: 1rem 0; border-bottom: 1px dashed var(--border);
}
.menu-item .name { font-weight: 620; font-size: 1.02rem; }
.menu-item .desc { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.2rem; max-width: 52ch; }
.menu-item .price { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--accent); white-space: nowrap; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1.3rem; }
.form-grid label {
  font-weight: 650; font-size: 0.75rem; display: block; margin-bottom: 0.45rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
}
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%; padding: 0.9rem 1.1rem;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface); color: var(--text);
  font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-grid input:focus, .form-grid textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}

/* ---------- Contact / footer ---------- */
.contact-list { list-style: none; display: grid; gap: 0.9rem; color: var(--text-muted); font-size: 1rem; }
.contact-list a { color: var(--accent); font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  margin-top: 5rem;
}
.site-footer .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  color: var(--text-muted); font-size: 0.85rem;
}
.site-footer a { color: var(--text-muted); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.2rem 2.4rem 1.2rem 0; position: relative;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 560; color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0.2rem; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq-body { padding: 0 0 1.4rem; }
.faq-body p { color: var(--text-muted); }
.faq-body p + p { margin-top: 0.8rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2.2rem; }
.step { text-align: center; }
.step .step-num {
  width: 3rem; height: 3rem; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--accent); color: var(--accent);
  font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 1.1rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.gallery-grid a { overflow: hidden; border-radius: 14px; display: block; aspect-ratio: 1/1; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05);
  transition: transform 0.6s var(--ease-lux);
}
.gallery-grid a:hover img { transform: scale(1.05); }

/* ---------- Testimonials ---------- */
.review-aggregate {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.55rem; margin-top: 1.1rem; color: var(--text-muted); font-size: 1.05rem;
}
.review-aggregate .stars { color: var(--accent); letter-spacing: 0.14em; font-size: 1.2rem; }
.review-aggregate strong { color: var(--text); }
.sample-note {
  margin-top: 0.9rem; font-size: 0.78rem; font-style: italic;
  letter-spacing: 0.02em; color: var(--text-muted); opacity: 0.7;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; }
.testimonial {
  position: relative;
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 2.4rem 2.1rem;
  box-shadow: 0 18px 40px -28px rgba(30, 33, 28, 0.35);
  display: flex; flex-direction: column;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--font-display); font-size: 4rem; line-height: 0.7;
  color: var(--accent); opacity: 0.28; margin-bottom: 0.4rem;
}
.testimonial .stars { color: var(--accent); letter-spacing: 0.18em; margin-bottom: 0.8rem; font-size: 1.02rem; }
.testimonial blockquote { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; }
.testimonial cite {
  display: block; margin-top: 1.2rem; font-style: normal; font-size: 0.8rem;
  color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
}

/* ---------- Trust row ---------- */
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem 2.4rem;
  padding: 1.4rem 0; margin: 0 auto; max-width: 900px; text-align: center;
}
.trust-row span { font-weight: 600; font-size: 0.9rem; color: var(--text-muted); display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-row strong { color: var(--accent); font-weight: 700; }

/* ---------- Reviews marquee (auto-scrolling ticker) ---------- */
.review-marquee { overflow: hidden; position: relative; padding: 2.4rem 0; }
.review-marquee::before,
.review-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 10%; z-index: 2; pointer-events: none;
}
.review-marquee::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.review-marquee::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 46s linear infinite; }
.review-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-card {
  flex: 0 0 auto; width: 300px; margin-right: 1.2rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 14px 30px -24px rgba(30, 33, 28, 0.4);
}
.marquee-card .stars { color: var(--accent); letter-spacing: 0.14em; font-size: 0.82rem; margin-bottom: 0.5rem; }
.marquee-card p { font-family: var(--font-display); font-size: 1.02rem; line-height: 1.4; color: var(--text); }
.marquee-card cite {
  display: block; margin-top: 0.8rem; font-style: normal; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600;
}
.marquee-note { text-align: center; margin-top: 1.2rem; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .section { padding: 4.5rem 0; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .btn-nav-cta { padding: 0.4rem 0.85rem; font-size: 0.72rem; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 0.6rem 0;
    box-shadow: 0 24px 40px -20px rgba(0,0,0,0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 1rem; }
  .hero { min-height: 86vh; }
}

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