:root {
  --sky: #6fa3c4;
  --sky-deep: #3d6f8f;
  --sky-soft: #d7e8f2;
  --cream: #f7f1e6;
  --paper: #fffdf8;
  --ink: #2a231c;
  --ink-soft: #5a5046;
  --kraft: #8b5a2b;
  --wheat: #c9a15b;
  --sage: #6a7d56;
  --chalk: #24302a;
  --rose: #6b3f32;
  --line: #e6dccb;
  --shadow: 0 18px 40px rgba(42, 35, 28, 0.12);
  --radius: 18px;
  --header: 76px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: auto;
  scroll-padding-top: 7.5rem;
}
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: var(--sky-deep); }
button, input, select, textarea { font: inherit; }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 8px 12px;
  z-index: 80;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand img { width: 48px; height: 48px; }
.brand-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kraft);
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--sky-deep); }
.nav a.btn-primary,
.nav a.btn-primary:hover {
  color: #fff;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { background: #563228; }
.btn-sky { background: var(--sky-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-chalk { background: var(--chalk); color: #f6efe4; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

.status-bar {
  background: var(--chalk);
  color: #f6efe4;
  font-size: 0.92rem;
}
.status-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 4px 10px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--wheat);
}
.dot.open { background: #9dcc7a; }
.dot.closed { background: #e3b07a; }
.dot.sold { background: #d98989; }

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  color: var(--ink);
  overflow: hidden;
}
.hero > .wrap {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 48%;
}
.hero-scrim {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 35, 28, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
  justify-self: start;
  max-width: 32rem;
  margin: 48px 0;
  padding: 28px 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--kraft);
}
.hero .kicker { color: var(--kraft); }
.hero h1 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  margin: 10px 0 16px;
  color: var(--ink);
}
.hero p { font-size: 1.08rem; max-width: 46ch; color: var(--ink-soft); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

section { padding: 72px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}
section h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 550;
  margin: 0 0 8px;
}
.hero .btn-ghost {
  color: var(--ink);
  border-color: #d9ccb6;
  background: #fff;
}
.lede { color: var(--ink-soft); max-width: 52ch; margin: 0; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.2rem;
  margin: 0;
}
.meta { color: var(--ink-soft); font-size: 0.9rem; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}
.price {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.4rem;
}
.qty { font-size: 0.85rem; color: var(--kraft); font-weight: 700; }
.sold-banner {
  background: #f3e1d4;
  color: var(--rose);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 4px 8px;
  border-radius: 999px;
  width: fit-content;
}

.how { background: #efe6d4; }
.steps {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.step-list { display: grid; gap: 16px; }
.step {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}
.step strong { display: block; font-family: Fraunces, Georgia, serif; font-size: 1.15rem; }
.stand-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stand-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.board {
  background: var(--chalk);
  color: #f4efe4;
  border-radius: 22px;
  padding: 28px;
  min-height: 280px;
}
.board h3 { font-family: Fraunces, Georgia, serif; margin-top: 0; }
.week {
  display: grid;
  gap: 8px;
}
.day {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(246,239,228,0.2);
  padding: 8px 0;
}
.day.today { color: var(--wheat); font-weight: 700; }
.note-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--line);
}

.hold { background: var(--paper); }
.hold-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}
form, .pay-box {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d9ccb6;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 14px;
}
.pay-methods { display: grid; gap: 10px; }
.pay-method {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
}
.pay-method input { width: auto; margin: 4px 0 0; }
.wire {
  font-size: 0.78rem;
  color: var(--kraft);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.quote {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0 0 16px;
}
.sky-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--sky-soft);
}
.sky-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 360px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.addr {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.connect {
  background: #efe6d4;
}
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.socials { display: flex; gap: 10px; flex-wrap: wrap; }

.disclaimer {
  font-size: 0.92rem;
  color: var(--ink-soft);
  background: var(--sky-soft);
  border-radius: 16px;
  padding: 18px 20px;
}

.site-footer {
  padding: 28px 0 40px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cart-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--paper);
  box-shadow: var(--shadow);
  z-index: 50;
  transform: translateX(110%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: none; }
.drawer header, .drawer-body, .drawer footer { padding: 18px; }
.drawer header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.drawer-body { overflow: auto; flex: 1; }
.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42,35,28,0.35);
  z-index: 48;
  opacity: 0;
  pointer-events: none;
}
.backdrop.show { opacity: 1; pointer-events: auto; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 70;
  display: none;
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 16px;
    top: 70px;
    background: var(--paper);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
  }
  .nav-toggle { display: block; }
  .menu-grid, .hours-grid, .hold-layout, .about-grid, .connect-grid, .steps {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 82vh; align-items: end; }
  .hero img { object-position: 88% 58%; }
  .hero-copy { margin: 24px 0 88px; padding: 22px 20px; }
  .hero-actions .btn { min-width: 0; }
  .cart-fab { bottom: 14px; right: 14px; padding: 0.7rem 1rem; }
  .status-inner { font-size: 0.82rem; }
}
