﻿:root {
  --black: #000;
  --ink: #1a1a1a;
  --muted: #777;
  --blush: #e7b8b3;
  --linen: #f7f4f1;
  --cream: #fbfaf8;
  --olive: #5d6a55;
  --line: rgba(26, 26, 26, .12);
  --shadow: 0 18px 60px rgba(26, 26, 26, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 80px;
  padding: 0 clamp(20px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 241, .9);
  backdrop-filter: blur(18px);
}
.brand { font-family: "Playfair Display", serif; font-size: 28px; font-weight: 700; }
.nav { display: flex; justify-content: center; gap: 28px; font-size: 14px; color: rgba(26, 26, 26, .72); }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active { font-weight: 800; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
}
.menu-button { display: none; }
.audience-toggle {
  display: inline-flex;
  align-items: stretch;
  gap: 16px;
}
.audience-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid rgba(26,26,26,.32);
  background: rgba(255,255,255,.62);
  color: rgba(26,26,26,.72);
  padding: 0 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.audience-option.retail {
  border-color: rgba(177,148,125,.42);
  color: #a88a73;
}
.audience-option:hover {
  transform: translateY(-1px);
  border-color: var(--ink);
  background: #fff;
  color: var(--ink);
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 44px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}
.lang-option {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(26,26,26,.56);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.lang-option.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(26,26,26,.08);
}
.lang-option:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.section, .hero {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}
.hero { min-height: calc(100vh - 80px); }
.hero-copy { max-width: 660px; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; color: var(--ink); }
h1, h2 { font-family: "Playfair Display", serif; font-weight: 700; line-height: 1.03; }
h1 { font-size: clamp(52px, 8vw, 88px); }
h2 { font-size: clamp(40px, 6vw, 64px); }
h3 { font-size: 21px; line-height: 1.25; }
p { color: var(--muted); line-height: 1.8; }
.lead { max-width: 660px; font-size: clamp(18px, 2vw, 22px); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 19px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.pill:hover { transform: translateY(-1px); }
.pill.dark { background: var(--ink); color: #fff; }
.pill.line { border: 1px solid var(--line); background: transparent; color: var(--ink); }
.pill.line:hover { background: #fff; border-color: rgba(26,26,26,.34); }
.image-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-image { min-height: min(620px, 70vh); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.image-frame.tall { min-height: 520px; }

.trust-band {
  width: min(100% - 40px, 1180px);
  margin: clamp(28px, 4vw, 56px) auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(26,26,26,.09);
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 46px rgba(26,26,26,.06);
}
.trust-item {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 18px;
  text-align: center;
  position: relative;
}
.trust-item + .trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: rgba(26,26,26,.13);
}
.trust-item svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #b39272;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-item span {
  max-width: 130px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

.home-about {
  width: min(100% - 40px, 1180px);
  margin: clamp(70px, 9vw, 120px) auto 0;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  padding: clamp(8px, 1vw, 14px) 0;
}
.home-about-copy {
  max-width: 430px;
}
.eyebrow.with-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.eyebrow.with-line::after {
  content: "";
  width: 34px;
  height: 1px;
  background: #b39272;
}
.home-about h2 {
  margin-top: 22px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}
.home-about p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 380px;
  color: rgba(26,26,26,.72);
  font-size: 19px;
  line-height: 1.82;
}
.home-about-image {
  position: relative;
  min-height: clamp(330px, 39vw, 470px);
  overflow: hidden;
  background: #fff;
}
.home-about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  border-bottom: 1px solid rgba(26,26,26,.42);
  padding-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link:hover {
  border-color: #b39272;
  color: #8b6f55;
}
.about .answer-block {
  margin-top: 30px;
  border-left: 3px solid var(--blush);
  padding-left: 22px;
}
.cream {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1240px) / 2));
  padding-right: max(20px, calc((100vw - 1240px) / 2));
  background: var(--cream);
}
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 38px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 70px rgba(26, 26, 26, .12); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.card:hover img { transform: scale(1.04); }
.card div { padding: 26px; }
.card p { font-size: 14px; }
.card a { display: inline-block; margin-top: 8px; font-weight: 800; text-decoration: underline; text-decoration-color: var(--blush); text-decoration-thickness: 2px; text-underline-offset: 5px; }

.ink {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1240px) / 2));
  padding-right: max(20px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: #fff;
}
.ink h2, .ink h3 { color: #fff; }
.ink p, .ink .eyebrow { color: rgba(255,255,255,.64); }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 40px; }
.service-grid article { border: 1px solid rgba(255,255,255,.14); border-radius: 8px; padding: 24px; }

.faq-list { margin-top: 32px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 22px 0; }
summary { cursor: pointer; font-size: 20px; font-weight: 800; }
details p { max-width: 780px; }

.contact { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.contact-list { margin-top: 28px; }
.contact-list p { margin: 6px 0; font-weight: 700; color: var(--ink); }
.contact-form { display: grid; gap: 14px; border-radius: 8px; background: #fff; padding: clamp(22px, 4vw, 34px); box-shadow: var(--shadow); }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 15px 16px;
}
textarea { min-height: 150px; resize: vertical; }
.contact-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 44px clamp(20px, 5vw, 56px);
  background: #000;
  color: #fff;
}
.footer strong { font-family: "Playfair Display", serif; font-size: 28px; }
.footer p { max-width: 520px; color: rgba(255,255,255,.62); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: inline-flex; }
  .nav { display: none; }
  .header-actions { display: flex; grid-column: 1 / -1; justify-content: space-between; padding: 0 0 14px; }
  .site-header.open .nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding: 0 0 14px;
  }
  .site-header.open .nav a { padding: 14px 0; border-top: 1px solid var(--line); }
  .section-grid, .contact, .home-about { grid-template-columns: 1fr; }
  .about .image-frame { order: 2; }
  .home-about { margin-top: 70px; }
  .home-about-copy { max-width: 620px; }
  .trust-band { grid-template-columns: repeat(2, 1fr); margin-top: 32px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section, .hero { width: min(100% - 32px, 1240px); padding: 58px 0; }
  .hero { min-height: auto; }
  .hero-image, .image-frame, .image-frame.tall, .home-about-image { min-height: 340px; }
  .trust-band, .cards, .service-grid { grid-template-columns: 1fr; }
  .trust-band { width: min(100% - 32px, 1180px); }
  .trust-item { min-height: 118px; padding: 20px; }
  .trust-item + .trust-item::before { display: none; }
  .footer { display: block; }
}







.home-pantry-page {
  --hp-orange: #f15a24;
  --hp-warm: #fffaf4;
  --hp-line: rgba(241,90,36,.22);
  background: var(--hp-warm);
}
.pantry-header .brand,
.pantry-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 248px;
  font-family: Inter, system-ui, sans-serif;
}
.pantry-mark {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff7ef;
  border: 1px solid rgba(241,90,36,.16);
}
.pantry-mark img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  display: block;
}
.pantry-wordmark {
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
}
.pantry-brand {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
}
.hp-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: .9fr 1.35fr;
  align-items: center;
  gap: 24px;
  padding: clamp(54px, 8vw, 86px) max(24px, calc((100vw - 1240px) / 2));
  background: linear-gradient(90deg, #fffaf4 0%, #fffaf4 43%, #fff4e9 100%);
  overflow: hidden;
}
.hp-hero-copy h1 {
  max-width: 560px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}
.hp-hero-copy p {
  max-width: 410px;
  margin-top: 28px;
  color: rgba(26,26,26,.78);
  font-size: 18px;
  line-height: 1.65;
}
.hp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.hp-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hp-button.primary {
  background: var(--hp-orange);
  color: #fff;
}
.hp-button.secondary {
  border: 1px solid rgba(26,26,26,.34);
  background: rgba(255,255,255,.7);
  color: var(--ink);
}
.hp-hero-image {
  min-height: 500px;
  position: relative;
}
.hp-hero-image img {
  position: absolute;
  inset: -30px -70px -40px 0;
  width: calc(100% + 90px);
  height: calc(100% + 80px);
  object-fit: cover;
  object-position: center;
}
.hp-benefits,
.hp-service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 26px max(24px, calc((100vw - 1240px) / 2));
  border-top: 1px solid rgba(26,26,26,.08);
  border-bottom: 1px solid rgba(26,26,26,.08);
  background: #fff;
}
.hp-benefits article,
.hp-service-strip article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  border-right: 1px solid rgba(26,26,26,.12);
  padding-right: 24px;
}
.hp-benefits article:last-child,
.hp-service-strip article:last-child { border-right: 0; }
.hp-benefits span,
.hp-service-strip span {
  color: var(--hp-orange);
  font-size: 30px;
  line-height: 1;
}
.hp-benefits h3,
.hp-service-strip b {
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
}
.hp-benefits p,
.hp-service-strip small {
  display: block;
  margin: 4px 0 0;
  color: rgba(26,26,26,.7);
  font-size: 13px;
  line-height: 1.55;
}
.hp-section {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: 54px 0 0;
}
.hp-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.hp-section-head h2,
.hp-ideas h2,
.hp-footer h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.2;
}
.hp-section-head a {
  border: 1px solid var(--hp-orange);
  border-radius: 4px;
  color: var(--hp-orange);
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hp-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.hp-category-grid article,
.hp-product-grid article {
  overflow: hidden;
  border: 1px solid rgba(26,26,26,.1);
  border-radius: 8px;
  background: #fff;
}
.hp-category-grid img {
  width: 100%;
  aspect-ratio: 1 / .9;
  object-fit: cover;
}
.hp-category-grid div {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-weight: 700;
}
.hp-category-grid b { color: var(--hp-orange); font-size: 24px; }
.hp-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.hp-product-grid img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}
.hp-product-grid div {
  position: relative;
  min-height: 142px;
  padding: 16px;
}
.hp-product-grid h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
}
.hp-product-grid p { margin: 12px 0 4px; font-size: 13px; }
.hp-product-grid strong { font-size: 14px; }
.hp-product-grid button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--hp-orange);
  border-radius: 6px;
  background: #fff;
  color: var(--hp-orange);
}
.hp-ideas {
  width: min(100% - 48px, 1240px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(26,26,26,.1);
  border-radius: 8px;
  background: #fff7ef;
  padding: 34px 38px;
}
.hp-ideas p { max-width: 320px; color: rgba(26,26,26,.72); }
.hp-ideas-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hp-ideas-images img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  border-radius: 999px;
}
.hp-service-strip { margin-top: 44px; }
.hp-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding: 46px max(24px, calc((100vw - 1240px) / 2));
  border-top: 1px solid rgba(26,26,26,.1);
  background: #fffaf4;
}
.hp-footer h3 { font-family: Inter, system-ui, sans-serif; font-size: 14px; text-transform: uppercase; }
.hp-footer a { display: block; margin-top: 10px; color: rgba(26,26,26,.72); font-size: 14px; }
.hp-footer p { color: rgba(26,26,26,.68); font-size: 14px; }
.hp-footer form { display: flex; margin-top: 16px; }
.hp-footer input { border-radius: 4px 0 0 4px; }
.hp-footer button {
  width: 54px;
  border: 0;
  border-radius: 0 4px 4px 0;
  background: var(--hp-orange);
  color: #fff;
  font-size: 22px;
}
@media (max-width: 980px) {
  .hp-hero { grid-template-columns: 1fr; }
  .hp-hero-image { min-height: 430px; }
  .hp-benefits, .hp-service-strip, .hp-footer { grid-template-columns: repeat(2, 1fr); }
  .hp-category-grid, .hp-product-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-ideas { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hp-hero { padding-left: 20px; padding-right: 20px; }
  .hp-hero-image { min-height: 320px; }
  .hp-hero-image img { inset: 0; width: 100%; height: 100%; }
  .hp-benefits, .hp-service-strip, .hp-footer, .hp-category-grid, .hp-product-grid, .hp-ideas-images { grid-template-columns: 1fr; }
  .hp-benefits article, .hp-service-strip article { border-right: 0; border-bottom: 1px solid rgba(26,26,26,.1); padding: 12px 0; }
  .hp-section-head { align-items: flex-start; flex-direction: column; }
  .hp-ideas { width: min(100% - 32px, 1240px); padding: 24px; }
}





/* Hero viewport fit */
.hero {
  min-height: calc(100svh - 80px);
  padding-top: clamp(18px, 2.4vw, 34px);
  padding-bottom: clamp(38px, 4.5vw, 64px);
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.1vw, 76px);
  line-height: .98;
}
.hero .lead {
  max-width: 560px;
  margin-top: 24px;
}
.hero-image {
  min-height: clamp(360px, 38vw, 560px);
}
.hero-copy .eyebrow {
  margin-bottom: 18px;
}
@media (min-width: 1200px) {
  .hero.section-grid {
    grid-template-columns: .86fr 1.14fr;
    gap: clamp(42px, 5vw, 80px);
  }
}
@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 58px;
  }
  .hero h1 {
    font-size: clamp(44px, 11vw, 66px);
  }
}


/* Hero final composition */
@media (min-width: 981px) {
  .hero.section-grid {
    width: min(100% - 150px, 1280px);
    min-height: calc(100svh - 98px);
    grid-template-columns: .76fr 1.14fr;
    gap: clamp(38px, 4.2vw, 64px);
    align-items: center;
    padding-top: clamp(10px, 1.6vw, 22px);
    padding-bottom: clamp(18px, 2.4vw, 34px);
  }
  .hero-copy {
    max-width: 460px;
  }
  .hero h1 {
    max-width: 460px;
    font-size: clamp(50px, 4.15vw, 66px);
    line-height: .98;
  }
  .hero .lead {
    max-width: 460px;
    margin-top: 26px;
    font-size: clamp(18px, 1.12vw, 21px);
    line-height: 1.55;
  }
  .hero .button-row {
    margin-top: 32px;
  }
  .hero-image {
    min-height: clamp(390px, 29vw, 500px);
    align-self: center;
    border-radius: 8px;
  }
}
@media (min-width: 1500px) {
  .hero.section-grid {
    width: min(100% - 220px, 1280px);
  }
}





/* Hero CTA compact */
.hero .pill {
  min-height: 42px;
  padding: 0 22px;
  font-size: 13px;
}
.hero .button-row {
  gap: 10px;
}
@media (min-width: 981px) {
  .hero .pill {
    min-height: 44px;
    padding: 0 24px;
    font-size: 14px;
  }
}
