/* ==========================================================================
   Torasan Coffee — Zen ink-on-paper
   Canvas: washi cream · Ink: bottle green · Accent: hanko vermillion
   ========================================================================== */

:root {
  /* palette (OKLCH) */
  --cream:       oklch(96.5% 0.014 92);   /* washi paper canvas */
  --cream-deep:  oklch(92%   0.02  90);   /* cup band / recessed surface */
  --ink:         oklch(31%   0.055 158);  /* bottle green — owns the page */
  --ink-soft:    oklch(45%   0.05  158);  /* secondary green */
  --ink-faint:   oklch(31% 0.055 158 / 0.16);
  --text:        oklch(24%   0.03  158);  /* near-black green */
  --text-soft:   oklch(42%   0.025 150);
  --cup-green:   oklch(38%   0.07  155);
  --roast:       oklch(28%   0.05  60);   /* coffee surface */
  --vermillion:  oklch(54%   0.17  32);   /* hanko seal — 10% accent */

  --font-display: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  --font-body:    "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;

  /* radius scale: sharp by default — paper doesn't have rounded corners */
  --r-0: 0px;
  --r-1: 2px;
  --r-pill: 999px;

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --measure: 34rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--cream);
  /* washi grain + faint warm depth */
  background-image:
    radial-gradient(ellipse 90% 60% at 85% -10%, oklch(90% 0.03 95 / 0.55), transparent 60%),
    radial-gradient(ellipse 70% 50% at -10% 110%, oklch(88% 0.035 150 / 0.35), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.18 0 0 0 0 0.12 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  touch-action: manipulation;
}

h1, h2, h3, blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}

p { text-wrap: pretty; }

em { font-style: italic; }

a { color: inherit; }

::selection { background: var(--ink); color: var(--cream); }

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

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem var(--gutter);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-badge { display: block; }

.badge-text {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  fill: var(--cream);
}
.badge-text-lg { font-size: 8.5px; }

.brand-word {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-word em { font-weight: 400; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-soft);
  padding: 0.5rem 0;
  transition: color 200ms ease-out;
}
@media (hover: hover) {
  .site-nav a:hover { color: var(--ink); }
}

.site-nav .nav-contact {
  color: var(--vermillion);
  font-weight: 700;
}

/* language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: clamp(0.25rem, 1.5vw, 1rem);
  padding-left: clamp(0.6rem, 2vw, 1.25rem);
  border-left: 1px solid var(--ink-faint);
}

.lang-btn {
  padding: 0.4rem 0.15rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 200ms ease-out, border-color 200ms ease-out;
}
@media (hover: hover) {
  .lang-btn:hover { color: var(--ink); }
}
.lang-btn.is-active {
  color: var(--ink);
  font-weight: 700;
  border-bottom-color: var(--vermillion);
}

.lang-sep { color: var(--ink-faint); font-size: 0.85rem; }

/* ==========================================================================
   Hero — asymmetric: type left, inked cup right
   ========================================================================== */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  grid-template-areas:
    "eyebrow art"
    "title   art"
    "sub     art"
    "cta     art";
  align-content: start;
  column-gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2.5rem, 7vh, 6rem) var(--gutter) clamp(4rem, 10vh, 8rem);
}

.hero-eyebrow {
  grid-area: eyebrow;
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-eyebrow .dot {
  color: var(--vermillion);
  font-size: 0.5em;
  vertical-align: 0.25em;
  margin: 0 0.4em;
}

.hero-title {
  grid-area: title;
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0 0 1.75rem;
}
.hero-title .line { display: block; }
.hero-title em { color: var(--ink); position: relative; }
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0.04em; right: 0.04em; bottom: 0.02em;
  height: 0.06em;
  background: var(--vermillion);
}

.hero-sub {
  grid-area: sub;
  max-width: var(--measure);
  margin: 0 0 2.25rem;
  font-size: 1.125rem;
  color: var(--text-soft);
}

.hero-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--r-1);
  cursor: pointer;
  transition-property: transform, background-color, box-shadow;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:active { transform: scale(0.96); }

.btn-ink {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 2px 10px oklch(31% 0.055 158 / 0.25);
}
@media (hover: hover) {
  .btn-ink:hover {
    background: oklch(26% 0.055 158);
    box-shadow: 0 4px 16px oklch(31% 0.055 158 / 0.3);
  }
}

.link-quiet {
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 2px;
  transition: color 200ms ease-out, border-color 200ms ease-out;
}
@media (hover: hover) {
  .link-quiet:hover { color: var(--ink); border-color: var(--ink); }
}

/* hero art */
.hero-art {
  grid-area: art;
  position: relative;
  margin: 0;
  align-self: center;
  display: flex;
  justify-content: center;
}

.cup-svg {
  width: min(100%, 330px);
  height: auto;
}

.steam path {
  stroke-dasharray: 120;
  stroke-dashoffset: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .steam path {
    animation: steam-drift 5s ease-in-out infinite;
  }
  .steam-2 { animation-delay: -1.6s; }
  .steam-3 { animation-delay: -3.2s; }
  @keyframes steam-drift {
    0%, 100% { transform: translateY(0);    opacity: 0.5; }
    50%      { transform: translateY(-7px); opacity: 0.25; }
  }
}

.vertical-accent {
  position: absolute;
  top: 12%;
  right: -0.5rem;
  margin: 0;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.55em;
  color: var(--ink-soft);
}

.hanko {
  position: absolute;
  bottom: 4%;
  right: 2%;
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--cream);
  background: var(--vermillion);
  border-radius: var(--r-1);
  transform: rotate(-4deg);
  box-shadow: 0 2px 8px oklch(54% 0.17 32 / 0.3);
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */

.section-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 clamp(2rem, 5vh, 3.5rem);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.kicker-rule {
  flex: 0 1 8rem;
  height: 1px;
  background: var(--ink-faint);
}

/* ==========================================================================
   Story
   ========================================================================== */

.story {
  padding: clamp(4rem, 10vh, 7rem) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  column-gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.story .section-kicker { grid-column: 1 / -1; }

.story-quote {
  font-size: clamp(1.9rem, 4.2vw, 3.3rem);
  line-height: 1.25;
  letter-spacing: -0.012em;
}
.story-quote em {
  color: var(--vermillion);
  font-style: normal;
}

.story-body {
  color: var(--text-soft);
  max-width: var(--measure);
}
.story-body p { margin: 0 0 1.25rem; }
.story-body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Process — big editorial numbers, drawn rules, no cards
   ========================================================================== */

.process {
  padding: clamp(4rem, 10vh, 7rem) var(--gutter);
}

.step {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2rem, 5vh, 3.5rem) 0;
  max-width: 64rem;
}
.step-alt { margin-left: auto; }

.step-no {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 1;
  color: var(--ink-faint);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.step-rule {
  width: 1px;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 150ms;
}
.step.is-visible .step-rule { transform: scaleY(1); }

.step-jp {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.5em;
  color: var(--vermillion);
}

.step-body h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  letter-spacing: -0.012em;
  margin-bottom: 0.9rem;
}

.step-body p {
  margin: 0;
  max-width: var(--measure);
  color: var(--text-soft);
}

/* ==========================================================================
   Taste
   ========================================================================== */

.taste {
  padding: clamp(4rem, 10vh, 7rem) var(--gutter);
}

.taste-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 64rem;
}

.taste-divider { background: var(--ink-faint); }

.taste-jp {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.5em;
  color: var(--vermillion);
}

.taste-item h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  letter-spacing: -0.012em;
  margin-bottom: 0.75rem;
}

.taste-item p {
  margin: 0;
  color: var(--text-soft);
}

/* ==========================================================================
   Coffee / product
   ========================================================================== */

.coffee {
  padding: clamp(4rem, 10vh, 7rem) var(--gutter);
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 60rem;
}

/* visual: coffee bag, off-centre on the paper */
.product-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bag-svg {
  width: min(100%, 260px);
  height: auto;
  filter: drop-shadow(0 12px 28px oklch(31% 0.055 158 / 0.18));
}
.bag-label-o {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  fill: var(--ink);
}
.bag-label-s {
  font-family: var(--font-body);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.34em;
  fill: var(--ink-soft);
}
.bag-label-b {
  font-family: var(--font-display);
  font-size: 15px;
  fill: var(--vermillion);
}

.hanko-product {
  position: absolute;
  top: 2%;
  right: 6%;
}

/* body */
.product-origin {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.5em;
  color: var(--vermillion);
}

.product-name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.022em;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.product-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.product-note {
  margin: 0 0 2rem;
  max-width: 32rem;
  color: var(--text-soft);
}

.product-meta {
  margin: 0 0 2.25rem;
  padding: 0;
  border-top: 1px solid var(--ink-faint);
}
.product-meta-row {
  display: flex;
  gap: 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ink-faint);
}
.product-meta dt {
  flex: 0 0 6.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 0.15rem;
}
.product-meta dd {
  margin: 0;
  color: var(--text);
}

.product-buy {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  flex-wrap: wrap;
}

.product-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.price-unit {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 500;
}

.product-fineprint {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  column-gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
  padding: clamp(4rem, 10vh, 7rem) var(--gutter) clamp(5rem, 12vh, 8rem);
}

.contact-intro { position: relative; }

.contact-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: 1.5rem;
}
.contact-title em { color: var(--vermillion); font-style: italic; }

.contact-sub {
  color: var(--text-soft);
  max-width: 26rem;
  margin: 0;
}

.vertical-accent-contact {
  position: absolute;
  top: 0;
  right: 0;
}

/* form — inked hairline fields on the paper, no card box */
.contact-form { max-width: 34rem; }

.field { margin-bottom: 1.75rem; }

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.1rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-faint);
  border-radius: var(--r-0);
  transition: border-color 200ms ease-out;
}
.field textarea { resize: vertical; min-height: 7rem; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none; /* replaced by the ink underline above */
  border-bottom: 2px solid var(--ink);
  margin-bottom: -1px;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%232c4a3a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.3rem center;
  cursor: pointer;
}

.field.has-error input,
.field.has-error textarea { border-bottom-color: var(--vermillion); }

.field-error {
  margin: 0.35rem 0 0;
  min-height: 1.2em;
  font-size: 0.85rem;
  color: var(--vermillion);
}

.field-hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.btn-submit {
  position: relative;
  min-width: 12rem;
}
.btn-submit .btn-sending { display: none; }
.btn-submit.is-sending .btn-label { visibility: hidden; }
.btn-submit.is-sending .btn-sending {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
}
.btn-submit[disabled] { cursor: wait; opacity: 0.85; }

.form-status {
  margin: 1rem 0 0;
  min-height: 1.5em;
  font-size: 0.95rem;
  color: var(--vermillion);
}

/* success state */
.form-success {
  align-self: center;
  text-align: left;
  padding: 1rem 0;
}
.form-success h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 1.25rem 0 0.75rem;
}
.form-success p { color: var(--text-soft); margin: 0; max-width: 26rem; }

.hanko-stamp {
  position: static;
  width: 4rem;
  height: 4rem;
  font-size: 2.2rem;
}
@media (prefers-reduced-motion: no-preference) {
  .form-success:not([hidden]) .hanko-stamp {
    animation: stamp-in 450ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  @keyframes stamp-in {
    from { transform: rotate(-14deg) scale(1.6); opacity: 0; }
    to   { transform: rotate(-4deg)  scale(1);   opacity: 1; }
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 3rem var(--gutter) 3.5rem;
  background: var(--ink);
  color: oklch(93% 0.02 95);
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}
.footer-brand em { font-weight: 400; }

.footer-line {
  margin: 0 0 2rem;
  color: oklch(78% 0.03 150);
  font-size: 0.95rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: oklch(65% 0.03 150);
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  /* page-load stagger (hero) */
  .reveal-load {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
    animation: rise-in 600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--d, 0) * 110ms);
  }
  @keyframes rise-in {
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
  }

  /* scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition-property: opacity, transform;
    transition-duration: 650ms;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .step-rule { transform: scaleY(1); transition: none; }
}

/* ==========================================================================
   Japanese-language typography
   CJK glyphs need: no negative tracking, no synthetic italics,
   taller line-heights, and slightly smaller display sizes.
   ========================================================================== */

html[lang="ja"] .hero-title,
html[lang="ja"] .story-quote,
html[lang="ja"] .contact-title,
html[lang="ja"] .step-body h2,
html[lang="ja"] .taste-item h2,
html[lang="ja"] .product-name {
  letter-spacing: 0.04em;
  font-feature-settings: "palt"; /* proportional CJK spacing */
}

/* JA product origin accent flips to small-caps Latin, like other sections */
html[lang="ja"] .product-origin {
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

html[lang="ja"] .hero-title {
  font-size: clamp(2.2rem, 5.8vw, 4.5rem);
  line-height: 1.28;
}

html[lang="ja"] .story-quote { line-height: 1.5; }

html[lang="ja"] .contact-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.35;
}

html[lang="ja"] .hero-sub,
html[lang="ja"] .story-body,
html[lang="ja"] .step-body p,
html[lang="ja"] .taste-item p,
html[lang="ja"] .contact-sub {
  line-height: 1.95;
}

/* mincho has no true italic — render emphasis upright */
html[lang="ja"] em { font-style: normal; }
html[lang="ja"] .brand-word em,
html[lang="ja"] .footer-brand em { font-style: italic; } /* Latin wordmark keeps its italic */

/* Latin accents inside JA layout mirror the JP accents of the EN layout */
html[lang="ja"] .step-jp,
html[lang="ja"] .taste-jp {
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

html[lang="ja"] .vertical-accent {
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "eyebrow"
      "title"
      "sub"
      "art"
      "cta";
  }
  .hero-art { margin: 1rem 0 2.5rem; }
  .cup-svg { width: min(72vw, 300px); }
  .vertical-accent { right: 4vw; }

  .story { grid-template-columns: minmax(0, 1fr); row-gap: 2rem; }

  .step,
  .step-alt {
    grid-template-columns: auto 1px minmax(0, 1fr);
    margin-left: 0;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 3rem;
  }
  .vertical-accent-contact { display: none; }

  .product {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2.5rem;
  }
  .product-visual { order: -1; }
  .bag-svg { width: min(60vw, 220px); }
}

@media (max-width: 560px) {
  .site-header { flex-wrap: wrap; }
  .site-nav { gap: 1.1rem; font-size: 0.9rem; }

  .step { grid-template-columns: minmax(0, 1fr); gap: 0.75rem; }
  .step-rule { display: none; }
  .step-no { font-size: 2.6rem; }

  .taste-grid { grid-template-columns: minmax(0, 1fr); }
  .taste-divider { height: 1px; width: 6rem; }

  .hero-cta .btn { width: 100%; text-align: center; }

  .product-buy { gap: 1.25rem; }
  .product-order { width: 100%; text-align: center; }
  .product-meta dt { flex-basis: 5rem; }
}
