:root {
  --ink: #1c1714;
  --ink-soft: #3a322c;
  --cream: #f6f0e8;
  --champagne: #c9a87c;
  --champagne-bright: #e0c49a;
  --espresso: #2a211c;
  --muted: #7a6e64;
  --line: rgba(28, 23, 20, 0.12);
  --shadow: 0 18px 40px rgba(28, 23, 20, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --max: 1080px;
  --pad: 1.15rem;
  --nav-h: 0px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 4.5rem; /* room for mobile call bar */
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

/* Demo banner — shorter on phones */
.demo-banner {
  position: sticky; top: 0; z-index: 200;
  background: #0d7377; color: #fff;
  text-align: center;
  font-size: 0.72rem; font-weight: 500;
  padding: 0.45rem var(--pad);
  line-height: 1.35;
}
.demo-banner a { color: #b8f0f2; text-decoration: underline; }
@media (max-width: 640px) {
  .demo-banner .demo-banner__full { display: none; }
}
@media (min-width: 641px) {
  .demo-banner .demo-banner__short { display: none; }
}

/* Nav: brand + book, then scrollable links */
.nav {
  position: sticky; top: 1.85rem; z-index: 150;
  background: rgba(246, 240, 232, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0.7rem var(--pad) 0;
}
.nav__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; margin-bottom: 0.55rem;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav__brand span { color: var(--champagne); }
.nav__cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.5rem; padding: 0.55rem 1rem;
  background: var(--ink); color: var(--cream);
  border-radius: 999px; font-size: 0.88rem; font-weight: 600;
  white-space: nowrap;
}
.nav__links {
  display: flex; gap: 0.35rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.65rem;
  margin: 0 calc(-1 * var(--pad));
  padding-left: var(--pad); padding-right: var(--pad);
}
.nav__links::-webkit-scrollbar { display: none; }
.nav__links a {
  flex: 0 0 auto;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid transparent;
}
.nav__links a.is-active {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

/* Hero — shorter & simpler on mobile */
.hero {
  position: relative;
  min-height: 72svh;
  display: grid; align-items: end;
  color: var(--cream);
  overflow: hidden;
}
.hero--short { min-height: 42svh; }
.hero__media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,23,20,0.2) 0%, rgba(28,23,20,0.72) 55%, rgba(28,23,20,0.94) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 2rem var(--pad) 2.25rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--champagne-bright);
  margin-bottom: 0.55rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 11vw, 5.2rem);
  font-weight: 500; line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 12ch;
  margin-bottom: 0.65rem;
}
.hero p.lede {
  font-size: 1rem;
  max-width: 32ch;
  color: rgba(246,240,232,0.88);
  margin-bottom: 1.25rem;
}
.btn-row {
  display: flex; flex-direction: column; gap: 0.55rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3rem; padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  width: 100%;
  text-align: center;
}
.btn--solid { background: var(--champagne); color: var(--ink); }
.btn--ghost {
  border: 1px solid rgba(246,240,232,0.45);
  color: var(--cream);
  background: rgba(246,240,232,0.08);
}
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--line { border: 1px solid var(--ink); color: var(--ink); background: transparent; }

section { padding: 2.75rem var(--pad); }
.wrap { width: min(var(--max), 100%); margin: 0 auto; }
.section-kicker {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 0.45rem;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 7vw, 3rem);
  font-weight: 500; line-height: 1.08;
  margin-bottom: 0.75rem;
}
.muted { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.photo-frame {
  aspect-ratio: 4/5;
  border-radius: 1rem;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow);
}
.photo-frame--wide { aspect-ratio: 16/11; }

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 1.75rem;
}
.pillar {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 500;
  margin-bottom: 0.25rem;
}
.pillar p { color: var(--muted); font-size: 0.95rem; }

.band-dark {
  background: var(--espresso);
  color: var(--cream);
}
.band-dark .muted { color: rgba(246,240,232,0.65); }
.band-dark .section-kicker { color: var(--champagne-bright); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem; margin-top: 1.5rem;
}
.service-card {
  padding: 1.15rem 1.1rem;
  border: 1px solid rgba(246,240,232,0.14);
  border-radius: 0.9rem;
  background: rgba(246,240,232,0.04);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.3rem;
}
.service-card .price { color: var(--champagne-bright); font-size: 1rem; }
.service-card p { color: rgba(246,240,232,0.7); font-size: 0.92rem; }

.menu-table { margin-top: 1.25rem; }
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.menu-row h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 500;
}
.menu-row p { color: var(--muted); font-size: 0.9rem; grid-column: 1 / -1; }
.menu-row .price { font-weight: 600; color: var(--ink-soft); font-size: 0.95rem; }
.band-dark .menu-row { border-top-color: rgba(246,240,232,0.12); }
.band-dark .menu-row p { color: rgba(246,240,232,0.65); }
.band-dark .menu-row .price { color: var(--champagne-bright); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}
.gallery-grid figure {
  aspect-ratio: 1; overflow: hidden; border-radius: 0.7rem;
  margin: 0;
}
.gallery-grid figure:first-child {
  grid-column: span 2;
  aspect-ratio: 16/10;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; margin-top: 1.5rem;
}
.team-card .avatar {
  aspect-ratio: 3/4; border-radius: 0.9rem;
  background-size: cover; background-position: center;
  margin-bottom: 0.7rem;
  max-height: 320px;
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 500;
}
.team-card .role {
  color: var(--champagne); font-size: 0.82rem; font-weight: 600;
  margin: 0.15rem 0 0.35rem;
}
.team-card p { color: var(--muted); font-size: 0.92rem; }
.band-dark .team-card p { color: rgba(246,240,232,0.68); }
.band-dark .team-card .role { color: var(--champagne-bright); }

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2.3rem);
  font-style: italic; line-height: 1.25;
  max-width: 20ch;
}

.cta-panel {
  border-radius: 1.1rem;
  padding: 1.5rem 1.25rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(201,168,124,0.3), transparent 45%),
    var(--ink);
  color: var(--cream);
  display: grid; gap: 1.1rem;
}
.cta-panel h2 { margin: 0; font-size: clamp(1.6rem, 6vw, 2.4rem); }
.cta-panel p { color: rgba(246,240,232,0.7); }
.cta-panel .btn { width: 100%; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.hours li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 0.75rem;
  font-size: 0.95rem;
}
.phone-xl {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  display: inline-block; margin: 0.5rem 0 0.75rem;
  color: var(--ink);
}
.form {
  display: grid; gap: 0.7rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fffdf9;
}
.form label { font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.form input, .form select, .form textarea {
  width: 100%; padding: 0.85rem 0.9rem;
  min-height: 2.85rem;
  border: 1px solid var(--line); border-radius: 0.6rem;
  background: #fff; color: var(--ink);
}
.form textarea { min-height: 100px; resize: vertical; }
.form .note { font-size: 0.78rem; color: var(--muted); }
.form .btn { width: 100%; }

footer {
  padding: 1.75rem var(--pad) 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.85rem;
}
.footer-inner {
  width: min(var(--max), 100%); margin: 0 auto;
  display: grid; gap: 0.75rem;
}
footer a { color: #0d7377; }

/* Sticky mobile call bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  padding: 0.65rem var(--pad) calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(246, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(28,23,20,0.08);
}
.mobile-bar a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.85rem; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem;
}
.mobile-bar__call { background: var(--champagne); color: var(--ink); }
.mobile-bar__book { background: var(--ink); color: var(--cream); }

/* Desktop+ */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .mobile-bar { display: none; }
  .nav { padding: 0.85rem 1.5rem 0; }
  .nav__brand { font-size: 1.5rem; }
  .nav__links { gap: 0.45rem; margin: 0; padding-left: 0; padding-right: 0; }
  .nav__links a { font-size: 0.88rem; padding: 0.45rem 0.9rem; }
  .hero { min-height: 88svh; }
  .hero--short { min-height: 52svh; }
  .hero__inner { padding: 3rem 1.5rem 3.5rem; }
  .hero p.lede { font-size: 1.1rem; }
  .btn-row {
    flex-direction: row; flex-wrap: wrap;
  }
  .btn { width: auto; min-width: 10rem; }
  section { padding: 4rem 1.5rem; }
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem; align-items: center;
  }
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .pillar { padding: 1.25rem 0.25rem; border-top: none; border-left: 1px solid var(--line); padding-left: 1rem; }
  .pillar:first-child { border-left: none; padding-left: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .gallery-grid figure:first-child {
    grid-column: span 2; grid-row: span 2; aspect-ratio: auto; min-height: 100%;
  }
  .cta-panel {
    grid-template-columns: 1.4fr auto;
    align-items: center;
    padding: 2.25rem 2rem;
  }
  .cta-panel .btn { width: auto; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-inner {
    display: flex; justify-content: space-between; align-items: end;
  }
  .menu-row p { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media { animation: none !important; }
}
