:root {
  --cream: #faf7f1;
  --paper: #fffdfa;
  --ink: #1c1a17;
  --ink-soft: #4a463f;
  --gold: #a9873f;
  --gold-soft: #cbb37c;
  --line: #e7e0d3;
  --radius: 2px;
  --max-width: 1120px;
  --serif: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --script: 'Meow Script', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0 10px;
}

.eyebrow.center, .section-title.center, .order-sub.center { text-align: center; }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: 0.02em;
  margin: 0 0 28px;
}

.section { padding: 88px 0; }

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.brand-logo-desktop { display: none; }

@media (min-width: 721px) {
  .brand-logo-mobile { display: none; }

  .brand-logo-desktop {
    display: block;
    height: 64px;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand { display: flex; align-items: baseline; }

.site-nav {
  display: flex;
  gap: 36px;
}

.site-nav a {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover { border-color: var(--gold); color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 24px 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  text-align: center;
}

.hero-leaf {
  width: 150px;
  margin: 0 auto 18px;
}

.hero-leaf img {
  width: 100%;
  height: auto;
}

.hero-content .eyebrow { text-align: center; }

.hero-content h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}

.hero-sub {
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 32px;
}

.hero-content h1 .script {
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.25em;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-photo {
  margin-top: 48px;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

@media (min-width: 721px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .hero-content { text-align: left; }
  .hero-content .eyebrow { text-align: left; }
  .hero-leaf { margin: 0 0 18px; }
  .hero-sub { margin-left: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-photo { margin-top: 0; }
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover { background: var(--gold); border-color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.menu-item {
  background: var(--paper);
  padding: 32px;
}

.menu-item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-item h3 {
  font-weight: 400;
  font-size: 1.15rem;
  margin: 0;
  letter-spacing: 0.02em;
}

.price {
  color: var(--gold);
  font-size: 1rem;
  white-space: nowrap;
}

.menu-item-desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0;
}

.menu-disclaimer {
  margin-top: 32px;
  font-size: 0.76rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Photo band */
.photo-band {
  height: 560px;
  overflow: hidden;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
}

/* About */
.about-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-copy p {
  color: var(--ink-soft);
  text-align: left;
}

.ig-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--gold-soft);
}

/* Gallery */
.gallery { padding-bottom: 56px; }

.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 32px 24px 8px;
  -webkit-overflow-scrolling: touch;
}

.gallery-photo-btn {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.gallery-photo-btn:hover,
.gallery-photo-btn:focus-visible {
  opacity: 0.8;
}

.gallery-photo-btn img {
  width: 320px;
  height: 400px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(28, 26, 23, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.lightbox[hidden] { display: none; }

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}

.lightbox-close:hover { color: var(--gold-soft); }

/* Order */
.order { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.order-sub {
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 44px;
}

.order-sub a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); }

.order-form {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row label, fieldset legend {
  display: block;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ink);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin: 0;
}

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.qty-row label {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  color: var(--ink);
}

.qty-row input {
  width: 72px;
  text-align: center;
}

.fulfillment {
  display: flex;
  gap: 28px;
}

.fulfillment-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}

.fulfillment-option input {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.field-hint {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 8px 0 0;
}

.order-form .btn { align-self: flex-start; }

.hp-field {
  position: absolute;
  left: -9999px;
}

/* Footer */
.site-footer {
  background: var(--paper);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo-card {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-card img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-brand p { margin: 6px 0; color: var(--ink-soft); font-size: 0.92rem; }
.footer-brand p a:hover { color: var(--gold); }

.footer-social {
  text-align: center;
}

.footer-social img {
  margin: 0 auto 10px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.footer-social a {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.footer-social a:hover { color: var(--gold); }

.footer-copy {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.75rem;
  margin: 48px 0 0;
}

/* Responsive */
@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .site-nav.open { max-height: 260px; }

  .site-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
  }

  .menu-grid { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .photo-band { height: 320px; }
  .gallery-photo-btn img { width: 240px; height: 300px; }
  .fulfillment { gap: 20px; }
}
