:root {
  --green: #046a38;
  --green-deep: #063e2a;
  --green-soft: #dfeade;
  --red: #c90846;
  --gold: #e9c972;
  --cream: #f7f1e5;
  --paper: #fffdf8;
  --ink: #252625;
  --muted: #6b6e69;
  --line: rgba(37, 38, 37, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body.newsletter-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.preview-ribbon {
  background: #252625;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 8px 20px;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.site-header.is-stuck {
  box-shadow: 0 12px 32px rgba(25, 45, 34, 0.08);
  position: sticky;
  top: 0;
}

.announcement {
  align-items: center;
  background: var(--green);
  color: #fff;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 38px;
  padding: 8px 18px;
  text-align: center;
  text-transform: uppercase;
}

.nav-shell {
  align-items: center;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 92px;
  padding: 0 34px;
}

.brand {
  align-items: center;
  display: flex;
  height: 76px;
  width: 174px;
}

.brand img {
  height: auto;
  width: 170px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.2vw, 38px);
  justify-content: center;
}

.desktop-nav a,
.mobile-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.045em;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after {
  background: var(--red);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.language,
.bag,
.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}

.language {
  border-right: 1px solid var(--line);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px 8px 4px;
}

.bag {
  position: relative;
}

.bag svg {
  fill: none;
  height: 24px;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 24px;
}

.bag span {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 9px;
  height: 16px;
  justify-content: center;
  position: absolute;
  right: -8px;
  top: -5px;
  width: 16px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  min-height: min(780px, calc(100vh - 155px));
}

.hero-media {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22)),
    url("assets/hero.jpg") center 42% / cover no-repeat;
  min-height: 680px;
  position: relative;
}

.photo-credit {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  left: 22px;
  letter-spacing: 0.05em;
  position: absolute;
}

.hero-copy {
  align-items: flex-start;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(62px, 7vw, 118px);
  position: relative;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  color: var(--green-deep);
  font-size: clamp(64px, 7vw, 116px);
  margin-bottom: 30px;
  max-width: 650px;
}

h2 {
  color: var(--green-deep);
  font-size: clamp(44px, 4.7vw, 76px);
  margin-bottom: 28px;
}

.hero-lede {
  color: #4b514d;
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.45;
  margin-bottom: 38px;
  max-width: 540px;
}

.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.09em;
  min-height: 54px;
  padding: 14px 24px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-deep);
}

.button-light {
  background: #fff;
  color: var(--green-deep);
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 0;
  text-transform: uppercase;
}

.hero-mark {
  bottom: -85px;
  height: 240px;
  opacity: 0.16;
  position: absolute;
  right: -70px;
  transform: rotate(45deg);
  width: 240px;
}

.hero-mark span {
  background: var(--green);
  height: 46%;
  position: absolute;
  width: 46%;
}

.hero-mark span:nth-child(2) { right: 0; }
.hero-mark span:nth-child(3) { bottom: 0; }
.hero-mark span:nth-child(4) { bottom: 0; right: 0; }

.trust-strip {
  background: var(--green-deep);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
}

.trust-strip > div {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 20px;
  min-height: 126px;
  padding: 28px 40px;
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
}

.trust-strip p {
  font-size: 13px;
  margin: 0;
}

.trust-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.section-shell {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 34px;
  padding-right: 34px;
}

.featured {
  padding-bottom: 120px;
  padding-top: 120px;
}

.section-heading {
  align-items: flex-end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 52px;
}

.section-heading h2 {
  font-size: clamp(42px, 4.5vw, 68px);
  margin: 0;
  max-width: 800px;
}

.product-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  min-width: 0;
}

.product-image {
  aspect-ratio: 1 / 1.12;
  background: #f2eee5;
  display: block;
  overflow: hidden;
  position: relative;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.75, 0.25, 1);
  width: 100%;
}

.product-image:hover img {
  transform: scale(1.035);
}

.badge {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  left: 14px;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
}

.quick-add {
  background: rgba(255, 253, 248, 0.94);
  bottom: 0;
  font-size: 11px;
  font-weight: 700;
  left: 0;
  letter-spacing: 0.08em;
  padding: 15px;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 220ms ease;
}

.product-image:hover .quick-add,
.product-image:focus-visible .quick-add {
  transform: translateY(0);
}

.product-meta {
  padding: 18px 3px 0;
}

.product-meta h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}

.product-meta p {
  color: var(--green);
  font-size: 14px;
  margin: 0;
}

.product-meta s {
  color: var(--muted);
  margin-left: 8px;
}

.recipe-callout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 680px;
}

.recipe-card {
  align-items: flex-start;
  background: var(--red);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 130px);
}

.recipe-card .eyebrow,
.recipe-card h2 {
  color: #fff;
}

.recipe-card p:not(.eyebrow) {
  font-family: var(--serif);
  font-size: 20px;
  max-width: 560px;
}

.recipe-image {
  background: url("assets/meal.png") center / cover no-repeat;
  min-height: 560px;
}

.story {
  align-items: center;
  display: grid;
  gap: clamp(54px, 8vw, 120px);
  grid-template-columns: 1.1fr 0.9fr;
  padding-bottom: 130px;
  padding-top: 130px;
}

.story-image {
  background: url("assets/story.jpg") center / cover no-repeat;
  min-height: 660px;
  position: relative;
}

.story-image::after {
  border: 1px solid var(--gold);
  content: "";
  inset: 22px -22px -22px 22px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.story-copy {
  max-width: 560px;
}

.story-copy h2 em {
  color: var(--red);
  font-weight: 600;
}

.story-copy > p:not(.eyebrow) {
  color: #4d534f;
  font-size: 18px;
}

.story-copy blockquote {
  border-left: 2px solid var(--gold);
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
  margin: 36px 0;
  padding-left: 26px;
}

.visit {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  padding-bottom: 120px;
}

.visit-copy {
  align-items: flex-start;
  background: var(--green-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 88px);
}

.visit-copy h2 {
  font-size: clamp(42px, 4vw, 66px);
}

.visit-copy p:not(.eyebrow) {
  margin-bottom: 32px;
}

.visit-image {
  background: url("assets/boutique.png") center / cover no-repeat;
  min-height: 560px;
}

.newsletter-band {
  align-items: center;
  background: var(--green);
  color: #fff;
  display: flex;
  gap: 34px;
  justify-content: space-between;
  padding: 78px max(34px, calc((100vw - var(--max)) / 2 + 34px));
}

.newsletter-band .eyebrow,
.newsletter-band h2 {
  color: #fff;
}

.newsletter-band h2 {
  font-size: clamp(38px, 4vw, 62px);
  margin: 0;
  max-width: 900px;
}

.site-footer {
  background: #f0e8d8;
  display: grid;
  gap: 54px;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  padding: 80px max(34px, calc((100vw - var(--max)) / 2 + 34px)) 36px;
}

.footer-logo img {
  max-width: 250px;
}

.site-footer h3 {
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 20px;
  margin: 0 0 16px;
}

.site-footer div a {
  display: block;
  font-size: 14px;
  margin: 7px 0;
}

.copyright {
  border-top: 1px solid var(--line);
  font-size: 11px;
  grid-column: 1 / -1;
  margin: 15px 0 0;
  padding-top: 28px;
  text-transform: uppercase;
}

.newsletter[hidden] {
  display: none;
}

.newsletter {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 26px;
  position: fixed;
  z-index: 100;
}

.newsletter-backdrop {
  background: rgba(6, 26, 18, 0.74);
  border: 0;
  cursor: pointer;
  inset: 0;
  position: absolute;
}

.newsletter-dialog {
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.32);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  max-height: calc(100vh - 52px);
  max-width: 980px;
  overflow: auto;
  position: relative;
  width: 100%;
  z-index: 1;
}

.newsletter-photo {
  background: url("assets/popup.jpg") center / cover no-repeat;
  min-height: 610px;
}

.newsletter-content {
  align-self: center;
  padding: clamp(40px, 5vw, 76px);
}

.newsletter-content h2 {
  font-size: clamp(38px, 4vw, 58px);
  margin-bottom: 20px;
}

.newsletter-content > p:not(.eyebrow) {
  color: #565b58;
  margin-bottom: 28px;
}

.newsletter-close {
  background: var(--paper);
  border: 0;
  cursor: pointer;
  height: 46px;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 46px;
  z-index: 2;
}

.newsletter-close span {
  background: var(--ink);
  height: 1px;
  left: 13px;
  position: absolute;
  top: 23px;
  transform: rotate(45deg);
  width: 20px;
}

.newsletter-close span:last-child {
  transform: rotate(-45deg);
}

.newsletter form {
  display: grid;
  gap: 14px;
}

.newsletter label span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.newsletter input {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  min-height: 52px;
  padding: 13px 14px;
  width: 100%;
}

.newsletter input:focus {
  border-color: var(--green);
  outline: 2px solid rgba(4, 106, 56, 0.12);
}

.newsletter small {
  color: var(--muted);
  display: block;
  font-size: 10px;
  line-height: 1.4;
  margin-top: 16px;
}

@media (max-width: 1050px) {
  .nav-shell {
    grid-template-columns: 44px 1fr auto;
  }

  .brand {
    justify-self: center;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    height: 40px;
    width: 40px;
  }

  .menu-button span {
    background: var(--ink);
    height: 1px;
    width: 23px;
  }

  .mobile-nav {
    border-top: 1px solid var(--line);
    flex-direction: column;
    gap: 22px;
    padding: 28px 34px 34px;
  }

  .mobile-nav.is-open {
    display: flex;
  }

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

  .hero-copy {
    padding: 58px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }
}

@media (max-width: 760px) {
  .preview-ribbon {
    font-size: 9px;
  }

  .announcement {
    font-size: 10px;
  }

  .nav-shell {
    min-height: 74px;
    padding: 0 18px;
  }

  .brand,
  .brand img {
    width: 142px;
  }

  .language {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-media {
    background-position: center 38%;
    min-height: 55vh;
  }

  .hero-copy {
    padding: 52px 24px 62px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 78px);
  }

  .hero-lede {
    font-size: 20px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .trust-strip > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 0;
    min-height: 104px;
    padding: 22px 0;
  }

  .trust-strip > div:last-child {
    border-bottom: 0;
  }

  .section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .featured {
    padding-bottom: 78px;
    padding-top: 78px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid {
    gap: 34px 12px;
  }

  .product-meta h3 {
    font-size: 17px;
  }

  .quick-add {
    transform: none;
  }

  .recipe-callout,
  .story,
  .visit {
    display: flex;
    flex-direction: column;
  }

  .recipe-card {
    padding: 64px 24px;
  }

  .recipe-image,
  .story-image,
  .visit-image {
    min-height: 420px;
  }

  .story {
    gap: 54px;
    padding-bottom: 88px;
    padding-top: 88px;
  }

  .story-image::after {
    inset: 12px -8px -12px 12px;
  }

  .visit {
    padding-bottom: 80px;
  }

  .visit-copy {
    padding: 56px 26px;
  }

  .newsletter-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 64px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 64px 24px 30px;
  }

  .newsletter {
    align-items: flex-end;
    padding: 0;
  }

  .newsletter-dialog {
    border-radius: 18px 18px 0 0;
    display: block;
    max-height: 92vh;
  }

  .newsletter-photo {
    min-height: 220px;
  }

  .newsletter-content {
    padding: 32px 24px 28px;
  }

  .newsletter-content h2 {
    font-size: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
