:root {
  --green-900: #113d2d;
  --green-800: #164b35;
  --green-700: #1e6245;
  --green-100: #e7f0ea;
  --rice: #faf7ef;
  --paper: #fffdf8;
  --wood: #b7763c;
  --call: #8f2332;
  --call-dark: #751827;
  --ink: #17231d;
  --muted: #5f6d64;
  --line: rgba(17, 61, 45, 0.16);
  --shadow: 0 18px 46px rgba(21, 38, 29, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--rice);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  padding-bottom: env(safe-area-inset-bottom);
}

body.viewer-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.inline-link {
  color: var(--green-800);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px clamp(16px, 4vw, 44px);
  background: rgba(250, 247, 239, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: var(--green-900);
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 800;
}

.header-actions .header-call {
  border-color: transparent;
  background: var(--call);
  color: white;
  box-shadow: 0 10px 24px rgba(117, 24, 39, 0.24);
}

.header-actions .header-call:hover {
  background: var(--call-dark);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-900);
  padding: 112px clamp(18px, 5vw, 72px) 56px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 35, 27, 0.78), rgba(13, 35, 27, 0.46) 45%, rgba(13, 35, 27, 0.08)),
    linear-gradient(0deg, rgba(13, 35, 27, 0.48), rgba(13, 35, 27, 0.02) 46%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: white;
}

.hero-logo {
  width: 112px;
  height: 112px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--wood);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f6cf8c;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 9vw, 6.6rem);
  font-weight: 950;
}

h2 {
  color: var(--green-900);
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  font-weight: 920;
}

.hero-copy {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg,
.mobile-dock svg,
.viewer-close svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  background: var(--paper);
  color: var(--green-900);
  box-shadow: var(--shadow);
}

.button-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.button-outline {
  border-color: var(--line);
  background: var(--paper);
  color: var(--green-900);
  box-shadow: 0 10px 24px rgba(21, 38, 29, 0.1);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.quick-strip a {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 18px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.quick-strip a:last-child {
  border-right: 0;
}

.quick-strip span,
.contact-list span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.quick-strip strong,
.contact-list strong {
  color: var(--green-900);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 88px) 0;
  scroll-margin-top: 82px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: clamp(22px, 5vw, 72px);
}

.intro p:last-child,
.section-heading p,
.campaign-text p {
  color: var(--muted);
  font-size: 1.06rem;
}

.seo-copy {
  border-block: 1px solid var(--line);
}

.seo-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 42px);
  color: var(--muted);
  font-size: 1.06rem;
}

.blog-teaser p {
  color: var(--muted);
  font-size: 1.06rem;
}

.blog-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.blog-heading > div {
  max-width: 720px;
}

.blog-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
}

.blog-rail {
  --blog-gap: 18px;
  display: grid;
  grid-auto-columns: calc((100% - (2 * var(--blog-gap))) / 3);
  grid-auto-flow: column;
  gap: var(--blog-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 14px;
  scrollbar-width: none;
}

.blog-rail::-webkit-scrollbar {
  display: none;
}

.blog-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--green-900);
  box-shadow: 0 10px 24px rgba(21, 38, 29, 0.12);
  cursor: pointer;
}

.blog-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.blog-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 12px;
  height: 260px;
  min-width: 0;
  padding: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  color: white;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  isolation: isolate;
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(10, 29, 22, 0.86), rgba(10, 29, 22, 0.42) 52%, rgba(10, 29, 22, 0.1)),
    linear-gradient(90deg, rgba(10, 29, 22, 0.2), transparent 35%, rgba(10, 29, 22, 0.2));
}

.blog-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.blog-card-shop img {
  object-fit: cover;
}

.blog-card span {
  color: #f6cf8c;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-card strong {
  max-width: 18ch;
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.blog-card small {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 800;
}

.blog-index-page {
  padding: 108px 0 56px;
}

.blog-index {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.blog-index-hero {
  max-width: 780px;
  padding: clamp(28px, 6vw, 64px) 0 28px;
}

.blog-index-hero p:last-child {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
}

.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 64px;
}

.campaign {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}

.campaign-text .button {
  margin-top: 18px;
}

.image-preview {
  cursor: zoom-in;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
}

.campaign-image {
  justify-self: end;
  width: min(380px, 100%);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.campaign-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.menu-section {
  width: min(1280px, calc(100% - 32px));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(21, 38, 29, 0.14);
  isolation: isolate;
}

.menu-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(10, 29, 22, 0.78), rgba(10, 29, 22, 0));
  z-index: 1;
}

.menu-card img {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  object-fit: cover;
  object-position: top center;
  transition: transform 220ms ease;
}

.menu-card:hover img {
  transform: scale(1.025);
}

.menu-card span {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: white;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 950;
  text-align: left;
}

.gallery-section {
  width: min(1280px, calc(100% - 32px));
}

.gallery-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
}

.gallery-stage {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 420ms ease, transform 520ms ease;
  pointer-events: none;
}

.gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--green-900);
  box-shadow: 0 10px 24px rgba(21, 38, 29, 0.12);
  cursor: pointer;
}

.gallery-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 61, 45, 0.26);
  cursor: pointer;
}

.gallery-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--call);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.map-embed {
  width: 100%;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(21, 38, 29, 0.12);
}

.map-embed iframe {
  width: 100%;
  height: min(360px, 62vw);
}

.map-fallback {
  display: block;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--green-900);
  font-weight: 950;
  text-align: center;
}

.contact-list a {
  display: grid;
  gap: 3px;
  min-height: 72px;
  align-content: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px;
}

.faq summary {
  cursor: pointer;
  color: var(--green-900);
  font-weight: 950;
}

.faq details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.story-image {
  width: min(420px, 100%);
  justify-self: start;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.story-copy {
  display: grid;
  gap: 14px;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.article-page {
  padding: 108px 0 40px;
}

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

.article-hero {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 6vw, 64px) 0;
}

.article-hero h1 {
  max-width: 820px;
  color: var(--green-900);
  font-size: clamp(2.35rem, 6vw, 4.55rem);
  line-height: 1.04;
}

.article-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
}

.article-image-frame {
  width: min(460px, 100%);
  max-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.article-image-frame img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: var(--radius);
}

.article-image-frame-wide {
  width: min(640px, 100%);
}

.article-body {
  display: grid;
  gap: 18px;
  padding-bottom: 48px;
  color: #26342d;
  font-size: clamp(1rem, 2vw, 1.13rem);
}

.article-body h2,
.article-faq h2 {
  margin-top: 22px;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.article-body p {
  margin: 0;
}

.article-faq {
  display: grid;
  gap: 10px;
  padding-bottom: 64px;
}

.article-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px;
}

.article-faq summary {
  cursor: pointer;
  color: var(--green-900);
  font-weight: 950;
}

.article-faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(16px, 4vw, 44px) 92px;
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.mobile-dock {
  position: fixed;
  z-index: 24;
  left: 10px;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  background: rgba(250, 247, 239, 0.93);
  box-shadow: 0 18px 42px rgba(10, 29, 22, 0.22);
  backdrop-filter: blur(16px);
}

.mobile-dock a {
  min-height: 54px;
  display: grid;
  place-items: center;
  gap: 2px;
  color: var(--green-900);
  font-size: 0.75rem;
  font-weight: 900;
}

.mobile-dock .mobile-dock-call {
  border-radius: 12px;
  background: var(--call);
  color: white;
  box-shadow: 0 8px 18px rgba(117, 24, 39, 0.22);
}

.mobile-dock svg {
  width: 22px;
  height: 22px;
}

.viewer {
  position: fixed;
  inset: 0;
  z-index: 80;
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #101914;
  color: white;
  overflow: hidden;
}

.viewer[hidden] {
  display: none;
}

.viewer-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.viewer-toolbar h2 {
  overflow: hidden;
  color: white;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.viewer-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
}

.viewer-stage {
  height: calc(100% - 58px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 12px;
  background-image: var(--viewer-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  touch-action: pan-x pan-y;
}

.viewer-stage img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

:focus-visible {
  outline: 3px solid #f2b84b;
  outline-offset: 3px;
}

@media (max-width: 860px) {
  body {
    padding-bottom: 86px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand span {
    max-width: 42vw;
  }

  .header-actions a {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .header-actions a[href="#menu"] {
    display: none;
  }

  .hero {
    min-height: 78svh;
    padding: 100px 18px 36px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(13, 35, 27, 0.78), rgba(13, 35, 27, 0.16)),
      linear-gradient(90deg, rgba(13, 35, 27, 0.58), rgba(13, 35, 27, 0.12));
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 12px;
  }

  .blog-heading {
    display: grid;
    align-items: start;
  }

  .quick-strip,
  .intro,
  .seo-copy-grid,
  .campaign,
  .story-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .quick-strip a {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip a:last-child {
    border-bottom: 0;
  }

  .campaign-image {
    justify-self: start;
    width: min(100%, 420px);
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card img {
    height: auto;
    max-height: none;
  }

  .gallery-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .gallery-stage {
    aspect-ratio: 4 / 5;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .mobile-dock {
    display: grid;
  }

  .blog-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .blog-rail {
    --blog-gap: 12px;
    grid-auto-columns: 100%;
  }

  .blog-card {
    height: 230px;
  }

  .blog-archive-grid {
    grid-template-columns: 1fr;
  }

  .blog-arrow {
    width: 40px;
    height: 40px;
  }

  .site-footer {
    padding-bottom: 114px;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 42px;
    height: 42px;
  }

  .header-actions a:first-child {
    display: none;
  }

  .hero-logo {
    width: 92px;
    height: 92px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .hero-buttons {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 28px, 1160px);
  }

}
