:root {
  --surface: #fffdf8;
  --surface-muted: #eef5f0;
  --ink: #231712;
  --text: #43342d;
  --text-muted: #6e625b;
  --green: #173f2b;
  --green-strong: #0f3322;
  --green-soft: #dce9de;
  --red: #7d2725;
  --gold: #ad8843;
  --line: #ddd6c9;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(23, 63, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: rgba(220, 233, 222, 0.42);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--white);
  color: var(--green);
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 63, 43, 0.12);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(23, 63, 43, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  color: var(--green);
  padding: 0 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--green-soft);
  color: var(--green-strong);
  outline: none;
}

.hero {
  position: relative;
  min-height: clamp(560px, 78svh, 720px);
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  border-bottom: 1px solid rgba(23, 63, 43, 0.14);
  background: var(--surface-muted);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(255, 253, 248, 0.86);
}

.hero-mark {
  position: absolute;
  right: max(-80px, calc((100vw - 1180px) / 2));
  bottom: 18px;
  z-index: -2;
  width: min(48vw, 560px);
  min-width: 380px;
  opacity: 0.78;
  filter: drop-shadow(0 24px 60px rgba(35, 23, 18, 0.18));
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0;
}

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

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 6.4rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  touch-action: manipulation;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(23, 63, 43, 0.22);
}

.button.primary:hover {
  background: var(--green-strong);
}

.button.secondary {
  border-color: rgba(23, 63, 43, 0.22);
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
}

.promise-band {
  background: var(--green);
  color: var(--white);
}

.promise-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.promise-grid article {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 4px;
  background: var(--green);
  padding: 24px;
}

.promise-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promise-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.two-column,
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 7vw, 72px);
  align-items: start;
}

.origin-section {
  background: var(--white);
}

.origin-section p {
  max-width: 680px;
  font-size: 1.08rem;
}

.quality-list {
  display: grid;
  gap: 12px;
}

.quality-list div {
  border-left: 4px solid var(--gold);
  background: var(--surface-muted);
  padding: 18px 20px;
}

.quality-list strong,
.quality-list span {
  display: block;
}

.quality-list strong {
  color: var(--green);
  font-size: 1.02rem;
}

.quality-list span {
  margin-top: 4px;
  color: var(--text-muted);
}

.product-section {
  background: var(--surface-muted);
}

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

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

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

.product-card {
  min-height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 12px 32px rgba(23, 63, 43, 0.08);
}

.product-card.featured {
  border-color: rgba(173, 136, 67, 0.74);
  box-shadow: var(--shadow);
}

.bag-size {
  width: fit-content;
  margin-bottom: auto;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 900;
}

.product-card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.order-section {
  background: var(--white);
}

.order-copy p {
  max-width: 620px;
  font-size: 1.05rem;
}

.order-copy a {
  color: var(--green);
  font-weight: 800;
}

.contact-box {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.contact-box span,
.contact-box a {
  display: block;
}

.contact-box span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-box a {
  margin-top: 4px;
  color: var(--red);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  text-decoration: none;
  word-break: break-word;
}

.order-form {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: var(--shadow);
}

.order-form label {
  color: var(--ink);
  font-weight: 850;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfc5b7;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
}

.order-form textarea {
  resize: vertical;
}

.submit-button {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 840px) {
  .nav-shell {
    min-height: auto;
    padding: 12px 0;
  }

  .brand span {
    max-width: 142px;
    line-height: 1.1;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 0 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0 52px;
  }

  .hero-mark {
    right: -120px;
    bottom: 16px;
    width: 470px;
    min-width: 0;
    opacity: 0.2;
  }

  .promise-grid,
  .product-grid,
  .two-column,
  .order-layout {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    min-height: 190px;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    width: min(100% - 24px, 1120px);
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand span {
    max-width: none;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links a {
    flex: 1;
    justify-content: center;
  }

  .hero-content,
  .section-inner,
  .promise-grid,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .hero-content {
    padding-top: 52px;
  }

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

  .button {
    width: 100%;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
  }
}

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