:root {
  --forest: #1e3a2f;
  --forest-deep: #14261f;
  --leaf: #3d5a3c;
  --sage: #6b8f71;
  --moss: #4a6b45;
  --cream: #f7f2e9;
  --cream-dark: #efe6d6;
  --sand: #e4d5bc;
  --bark: #7a4e2d;
  --brown: #8b5e3c;
  --ink: #1c1b18;
  --muted: #5f5c54;
  --line: rgba(122, 78, 45, 0.22);
  --white: #fffdf8;
  --shadow: 0 18px 50px rgba(20, 38, 31, 0.12);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bark);
}

h1, h2, h3, .serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.55rem; }

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 42rem;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 64px;
  width: auto;
}
.site-footer .brand img {
  height: 78px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a { color: var(--forest); }
.nav-links a:hover, .nav-links a.active { color: var(--bark); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
  color: var(--cream);
}
.ig-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}
.ig-link svg { width: 22px; height: 22px; display: block; }
.ig-link:hover { color: var(--bark); }
.site-footer .ig-link,
.site-footer .ig-link:hover { color: var(--cream); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 22px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(247,242,233,0.45);
}
.btn-ghost:hover { background: var(--cream); color: var(--forest); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--forest);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: end start;
  color: var(--cream);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,38,31,0.25) 0%, rgba(20,38,31,0.55) 48%, rgba(20,38,31,0.82) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 0 0 72px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-copy .eyebrow { color: #e8d5b0; }
.hero-copy h1 { color: var(--cream); max-width: 14ch; }
.hero-copy p { color: #efe6d6; max-width: 36rem; margin: 18px 0 28px; font-size: 1.18rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at top right, rgba(107,143,113,0.16), transparent 40%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin: 10px 0 12px; }
.page-hero p { color: var(--muted); max-width: 40rem; }

/* Sections */
section { padding: 88px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .copy { order: 2; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.pill {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--leaf);
  background: var(--white);
}

/* Cards */
.grid-3, .grid-2, .grid-4 {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20,38,31,0.05);
}
.card img { width: 100%; height: 280px; object-fit: cover; }
.card-body { padding: 22px; }
.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--bark);
  font-weight: 600;
}
.meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 8px 0 14px;
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.72rem;
  background: var(--cream-dark);
  color: var(--forest);
  padding: 3px 8px;
  border-radius: 999px;
}

/* Values */
.value {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.value .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--bark);
}

/* Menu extras */
.menu-item {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.menu-item img { width: 100%; height: 210px; object-fit: cover; }
.menu-item .copy { padding: 8px 8px 8px 0; }
.menu-item .price-col { padding-right: 24px; text-align: right; }

.builder {
  background: var(--forest);
  color: var(--cream);
  border-radius: 28px;
  padding: 40px;
}
.builder h2, .builder h3 { color: var(--cream); }
.builder p { color: #d9e4d6; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.step {
  background: rgba(247,242,233,0.08);
  border: 1px solid rgba(247,242,233,0.12);
  padding: 18px;
  border-radius: 16px;
}

/* Form */
form { display: grid; gap: 14px; }
label { font-size: 0.85rem; font-weight: 600; color: var(--forest); }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font: inherit;
  color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }

.notice {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  background: #e4efe4;
  color: var(--forest);
}

/* Footer */
.site-footer {
  background: var(--forest-deep);
  color: #d7e0d4;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.site-footer h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 12px; }
.site-footer a { color: #d7e0d4; }
.site-footer a:hover { color: #fff; }
.site-footer .brand img { height: 78px; filter: none; }
.legal {
  border-top: 1px solid rgba(247,242,233,0.12);
  padding-top: 18px;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.coming {
  background: var(--cream-dark);
  border-left: 4px solid var(--bark);
  padding: 18px 20px;
  border-radius: 12px;
  margin-top: 22px;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .split, .split.reverse, .grid-3, .grid-4, .grid-2, .steps, .footer-grid, .menu-item {
    grid-template-columns: 1fr;
  }
  .split.reverse .copy { order: 0; }
  .split img { height: 320px; }
  .menu-item .price-col { text-align: left; padding: 0 20px 18px; }
  .menu-item .copy { padding: 16px 20px 0; }
  .section-head { flex-direction: column; align-items: start; }
}
