@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --paper: #f4efe5;
  --stock: #ebe1cd;
  --bone: #fffaf0;
  --ink: #11100e;
  --muted: #675f54;
  --wine: #8f1f2d;
  --gold: #f2b544;
  --green: #274c36;
  --rule: 2px solid var(--ink);
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--wine);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--ink);
}

.concept-bar {
  border-bottom: var(--rule);
  background: var(--ink);
  color: var(--bone);
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 82px;
  padding: 0.65rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: var(--rule);
  background: rgba(244, 239, 229, 0.96);
  backdrop-filter: blur(10px);
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.6rem);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.site-nav a,
.header-call {
  text-decoration: none;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.1rem;
  border: var(--rule);
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.header-call {
  background: var(--gold);
}

.nav-toggle {
  display: none;
}

.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 4vw, 2rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 120px);
}

.eyebrow,
.card-kicker {
  margin: 0 0 0.75rem;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 9vw, 6.8rem);
}

h2 {
  font-size: clamp(2.1rem, 5.8vw, 4rem);
}

h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.15;
}

p {
  margin: 0;
}

.hero__lead {
  max-width: 680px;
  margin: 1.2rem 0 1.6rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button--primary {
  background: var(--wine);
  color: var(--bone);
}

.button--primary:hover {
  background: var(--ink);
  color: var(--gold);
}

.button--secondary {
  background: var(--bone);
  color: var(--ink);
}

.button--secondary:hover,
.header-call:hover {
  background: var(--green);
  color: var(--bone);
}

.brew-board {
  border: var(--rule);
  background: var(--bone);
  border-radius: 8px;
  overflow: hidden;
}

.brew-board__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--rule);
  background: var(--green);
  color: var(--bone);
  padding: 0.9rem 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brew-board__header strong {
  color: var(--gold);
}

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

.brew-board__grid a {
  position: relative;
  min-height: 190px;
  border-right: var(--rule);
  border-bottom: var(--rule);
  color: var(--bone);
  overflow: hidden;
  text-decoration: none;
}

.brew-board__grid a:nth-child(2n) {
  border-right: 0;
}

.brew-board__grid a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.brew-board__grid img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05) brightness(0.75);
  transition: transform 180ms ease;
}

.brew-board__grid span {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.45rem 0.6rem;
  border: var(--rule);
  border-color: var(--bone);
  background: rgba(17, 16, 14, 0.78);
  font-weight: 900;
  text-transform: uppercase;
}

.brew-board__grid a:hover img {
  transform: scale(1.04);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: var(--rule);
  background: var(--gold);
}

.fact-strip div {
  min-height: 132px;
  padding: 1rem;
  border-right: var(--rule);
}

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

.fact-strip span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-strip strong {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.2;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  color: var(--muted);
  font-weight: 600;
}

.section-heading--compact {
  display: block;
  max-width: 820px;
}

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

.product-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(0, 1fr);
  border: var(--rule);
  border-radius: 8px;
  background: var(--bone);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.product-card div {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.product-card p:not(.card-kicker) {
  color: var(--muted);
}

.product-card a {
  margin-top: auto;
  font-weight: 900;
  text-transform: uppercase;
}

.process-section {
  width: 100%;
  max-width: none;
  border-block: var(--rule);
  background: var(--green);
  color: var(--bone);
}

.process-section > * {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.process-section .eyebrow {
  color: var(--gold);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 2rem auto;
  list-style: none;
}

.process-list li {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 260px;
  padding: 1.2rem;
  border: 2px solid var(--bone);
  border-radius: 8px;
}

.process-list span {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}

.process-list p {
  color: rgba(255, 250, 240, 0.86);
}

.action-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid var(--bone);
  border-radius: 8px;
}

.quality-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  border: var(--rule);
  border-radius: 8px;
  background: var(--bone);
  overflow: hidden;
}

.quality-card img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.quality-card div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  padding: clamp(1.5rem, 5vw, 3rem);
}

.quality-card p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 600;
}

.story-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.72fr);
  gap: 2rem;
}

.story-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.story-copy a {
  font-weight: 900;
  text-transform: uppercase;
}

.owner-cta {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: var(--rule);
  border-radius: 8px;
  background: var(--gold);
}

.owner-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 0.8rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 4vw, 2.5rem);
  border-top: var(--rule);
  background: var(--ink);
  color: var(--bone);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--gold);
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 920px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: var(--rule);
    border-radius: 6px;
    background: var(--bone);
  }

  .nav-toggle__bar,
  .nav-toggle__bar::before,
  .nav-toggle__bar::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    content: "";
  }

  .nav-toggle__bar {
    position: relative;
  }

  .nav-toggle__bar::before,
  .nav-toggle__bar::after {
    position: absolute;
    left: 0;
  }

  .nav-toggle__bar::before {
    top: -7px;
  }

  .nav-toggle__bar::after {
    top: 7px;
  }

  .site-nav {
    position: fixed;
    inset: 114px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: var(--rule);
    border-radius: 8px;
    background: var(--bone);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .header-call {
    justify-self: end;
  }

  .hero,
  .section-heading,
  .story-grid,
  .quality-card,
  .owner-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .fact-strip,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .concept-bar {
    font-size: 0.68rem;
  }

  .site-header {
    min-height: 76px;
    gap: 0.65rem;
  }

  .brand img {
    width: 66px;
  }

  .header-call {
    min-height: 44px;
    padding-inline: 0.65rem;
    font-size: 0.74rem;
  }

  .site-nav {
    inset: 108px 0.75rem auto;
  }

  .section {
    padding-inline: 1rem;
  }

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

  .hero__lead,
  .quality-card p:not(.eyebrow),
  .story-copy {
    font-size: 1rem;
  }

  .brew-board__grid,
  .fact-strip,
  .process-list,
  .product-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .brew-board__grid a,
  .brew-board__grid a:nth-child(2n),
  .brew-board__grid a:nth-last-child(-n + 2),
  .fact-strip div {
    border-right: 0;
    border-bottom: var(--rule);
  }

  .brew-board__grid a:last-child,
  .fact-strip div:last-child {
    border-bottom: 0;
  }

  .product-card img {
    min-height: 220px;
  }

  .quality-card img {
    min-height: 250px;
  }

  .action-panel,
  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .owner-cta .button,
  .action-panel .button,
  .cta-row .button {
    width: 100%;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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