﻿:root {
  color-scheme: light;
  --ivory: #fffdf7;
  --paper: #fffefb;
  --sage: #edf1df;
  --green: #2d5016;
  --ink: #3b3528;
  --muted: #69624f;
  --brown: #714221;
  --line: #e5ddc8;
  --gold: #c49542;
  --wheat: #f6ecd4;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 142px;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a:focus-visible {
  outline: 3px solid var(--brown);
  outline-offset: 5px;
}
::selection {
  background: #e8edcf;
  color: #294712;
}
.container {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding: 96px 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--paper);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.topbar {
  border-top: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo {
  width: 96px;
  height: 104px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 0;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: var(--brown);
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 15px 23px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta {
  color: var(--brown);
  background: #fcf6e8;
  border-color: #c5a364;
  padding: 11px 18px;
}
.nav-cta:hover {
  background: var(--sage);
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: #203c0e;
  transform: translateY(-2px);
}
.btn-secondary {
  border-color: #c9b589;
  color: var(--green);
  background: transparent;
}
.btn-secondary:hover {
  background: #f1ead5;
  transform: translateY(-2px);
}
.hero {
  padding: 65px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--brown);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.7;
  text-transform: uppercase;
}
.launch-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 7px 12px;
  background: var(--sage);
  color: var(--green);
  letter-spacing: 0.12em;
}
.launch-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
h1,
h2,
h3 {
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(54px, 5.5vw, 78px);
  line-height: 1.02;
  letter-spacing: -2.8px;
  margin: 7px 0 24px;
}
.hero h1 em {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
  color: var(--green);
  font-weight: 500;
}
.lede {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  font-size: 11px;
  color: var(--muted);
}
.trust-row span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--green);
}
.hero-visual {
  margin: 0;
  position: relative;
  padding: 0 0 22px 18px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px 16px 0 0;
  border-radius: 160px 160px 12px 12px;
  background: #ece5cb;
}
.hero-image {
  position: relative;
  border-radius: 160px 160px 12px 12px;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}
.hero-caption {
  position: absolute;
  bottom: 4px;
  left: 43px;
  right: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px #3b352808;
}
.hero-caption strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}
.hero-caption small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  font-size: 10px;
}
.caption-tag {
  font-size: 9px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--sage);
  padding: 8px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.values-band {
  background: var(--sage);
  border-block: 1px solid var(--line);
}
.values-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 23px;
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.035em;
}
.values-inner span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.values-inner span::before {
  content: "✳";
  font-size: 18px;
  font-weight: 400;
  color: #a27630;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 53px);
  line-height: 1.08;
  letter-spacing: -1.3px;
}
.story-text p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
  margin: 0 0 16px;
}
.story-text p:last-child {
  margin-bottom: 0;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  padding-bottom: 7px;
  margin-top: 24px;
  border-bottom: 1px solid #c5a364;
}
.text-link:hover {
  color: var(--brown);
}
.menu {
  background: #f7f3e6;
  border-block: 1px solid var(--line);
}
.section-header {
  text-align: center;
  margin: 0 auto 36px;
}
.section-header .eyebrow {
  margin-bottom: 14px;
}
.section-intro {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 18px 0 0;
}
.menu-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.menu-card {
  flex: 0 1 calc((100% - 48px) / 3);
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.menu-image {
  aspect-ratio: 1.4;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.menu-body {
  padding: 23px 24px 25px;
}
.menu-category {
  color: var(--brown);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.menu-body h3 {
  color: var(--brown);
  font-size: 29px;
  font-weight: 600;
  margin: 8px 0 10px;
  letter-spacing: -0.5px;
}
.menu-body p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}
.menu-note {
  text-align: center;
  margin: 27px 0 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
.delivery {
  padding: 0 0 80px;
}
.delivery-grid {
  border-block: 1px solid var(--line);
  padding-block: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.delivery-point {
  padding-right: 24px;
}
.delivery-point + .delivery-point {
  border-left: 1px solid var(--line);
  padding-left: 36px;
}
.delivery-point strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
}
.delivery-point p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  margin: 10px 0 0;
}
.contact {
  padding: 0 0 80px;
}
.contact-panel {
  background: var(--wheat);
  border: 1px solid #e5d2a8;
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  padding: 56px;
  text-align: center;
}
.contact-panel h2 {
  max-width: 600px;
  margin-inline: auto;
}
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 34px;
  flex-wrap: wrap;
}
.contact-rows {
  display: flex;
  justify-content: center;
  gap: 45px;
  border-top: 1px solid #e2d0a8;
  padding-top: 26px;
}
.contact-box {
  min-width: 0;
}
.contact-box span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.contact-box a {
  font-size: 12px;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.contact-box a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer {
  border-bottom: 3px solid var(--gold);
  border-top: 1px solid var(--line);
  background: var(--ivory);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding-block: 28px;
}
.footer-inner p,
.back-top {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
}
.footer-inner .brand-logo {
  width: 82px;
  height: 89px;
}
.back-top {
  padding: 10px 0;
}
@media (min-width: 1450px) {
  .hero {
    padding-block: 80px;
  }
}
@media (max-width: 1050px) {
  .container {
    width: calc(100% - 48px);
  }
  .main-nav {
    gap: 18px;
  }
  .topbar-inner {
    gap: 18px;
  }
  .hero-grid {
    gap: 32px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero-caption {
    left: 26px;
    right: 10px;
    padding: 13px 15px;
  }
  .caption-tag {
    display: none;
  }
  .story-grid {
    gap: 42px;
  }
  .menu-body {
    padding: 20px;
  }
  .menu-body h3 {
    font-size: 26px;
  }
  .contact-rows {
    gap: 28px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 135px;
  }
  .section {
    padding: 64px 0;
  }
  .topbar-inner {
    min-height: 80px;
    flex-wrap: wrap;
    gap: 0 12px;
    padding-top: 12px;
  }
  .brand-logo {
    width: 63px;
    height: 68px;
  }
  .nav-cta {
    padding: 9px 12px;
    font-size: 11px;
  }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0 5px;
  }
  .main-nav a {
    font-size: 11px;
    padding: 10px 0;
  }
  .hero {
    padding-top: 38px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero h1 {
    font-size: clamp(51px, 9.5vw, 72px);
    letter-spacing: -2px;
  }
  .lede {
    max-width: 540px;
    font-size: 14px;
  }
  .hero-visual {
    width: min(480px, 100%);
    justify-self: center;
  }
  .hero-image {
    aspect-ratio: 1.15;
    border-radius: 130px 130px 12px 12px;
  }
  .hero-visual::before {
    border-radius: 130px 130px 12px 12px;
  }
  .caption-tag {
    display: block;
  }
  .values-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    font-size: 10px;
  }
  .values-inner span {
    gap: 8px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .menu-card {
    flex-basis: calc((100% - 24px) / 2);
  }
  .delivery {
    padding-bottom: 60px;
  }
  .delivery-grid {
    gap: 20px;
  }
  .delivery-point {
    padding-right: 0;
  }
  .delivery-point + .delivery-point {
    padding-left: 20px;
  }
  .delivery-point strong {
    font-size: 23px;
  }
  .contact {
    padding: 0 0 60px;
  }
  .contact-panel {
    padding: 38px 24px;
  }
  .contact-rows {
    gap: 22px;
    flex-wrap: wrap;
  }
  .footer-inner {
    flex-wrap: wrap;
  }
  .footer-inner p {
    order: 3;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .container {
    width: calc(100% - 36px);
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .cta-row {
    gap: 9px;
  }
  .btn {
    font-size: 11px;
    padding: 14px 17px;
    gap: 12px;
  }
  .trust-row {
    gap: 12px;
    font-size: 10px;
  }
  .hero-caption strong {
    font-size: 23px;
  }
  .hero-caption small {
    font-size: 9px;
  }
  .caption-tag {
    padding: 7px;
    font-size: 8px;
  }
  .menu-grid {
    gap: 22px;
  }
  .menu-card {
    flex-basis: 100%;
  }
  .menu-body {
    padding: 23px;
  }
  .menu-body h3 {
    font-size: 29px;
  }
  .menu-body p {
    font-size: 13px;
  }
  .delivery-grid {
    grid-template-columns: 1fr;
    padding-block: 28px;
    gap: 24px;
  }
  .delivery-point + .delivery-point {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .contact-panel {
    padding: 34px 20px;
  }
  .contact-rows {
    flex-direction: column;
    gap: 21px;
  }
  h2 {
    font-size: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
