@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Jost:wght@300;400;500;600&display=swap");

:root {
  --cream: #f4f0e6;
  --cream-soft: #faf7ef;
  --cream-deep: #e8dfce;
  --ink: #282720;
  --ink-soft: #686354;
  --green: #2e3a2b;
  --green-deep: #1f2b21;
  --green-muted: #71815c;
  --gold: #ae9150;
  --gold-soft: #d1bb82;
  --red: #a54032;
  --line: rgba(40, 39, 32, 0.14);
  --line-strong: rgba(40, 39, 32, 0.22);
  --shadow: 0 22px 50px rgba(40, 39, 32, 0.11);
  --max: 1180px;
  --pad: clamp(20px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: "Jost", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.eyebrow {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-shell {
  background:
    radial-gradient(circle at 12% 22%, rgba(174, 145, 80, 0.08), transparent 28%),
    linear-gradient(180deg, var(--cream-soft), var(--cream) 42%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 72px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  color: var(--green);
}

.brand-word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  padding-left: 0.34em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 44px);
}

.nav-links a,
.nav-actions a,
.nav-toggle {
  color: var(--ink);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.nav-links a {
  position: relative;
  padding: 24px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 180px;
}

.icon-link {
  width: 22px;
  height: 22px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream-soft);
  padding: 10px var(--pad) 18px;
}

.mobile-panel a {
  display: block;
  padding: 10px 0;
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 585px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(var(--pad), 1fr) minmax(0, 560px) minmax(0, 620px) minmax(var(--pad), 1fr);
  align-items: stretch;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  height: 46%;
  background:
    linear-gradient(135deg, transparent 42%, rgba(132, 125, 104, 0.13) 43%, transparent 44%),
    linear-gradient(25deg, rgba(132, 125, 104, 0.17), transparent 62%);
  clip-path: polygon(0 100%, 0 58%, 14% 35%, 28% 57%, 43% 28%, 62% 62%, 78% 43%, 100% 72%, 100% 100%);
  opacity: 0.62;
  pointer-events: none;
}

.hero-copy {
  grid-column: 2;
  position: relative;
  z-index: 2;
  padding: 86px 42px 82px 80px;
  align-self: center;
}

.hero-media {
  grid-column: 3 / 5;
  position: relative;
  min-height: 585px;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(244, 240, 230, 0.58) 16%, rgba(244, 240, 230, 0) 42%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 585px;
  object-fit: cover;
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.hero-body {
  max-width: 425px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.vertical-note {
  position: absolute;
  z-index: 3;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.vertical-note.left {
  left: clamp(18px, 4vw, 46px);
  top: 96px;
}

.vertical-note.right {
  right: clamp(18px, 4vw, 46px);
  top: 96px;
}

.seal {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 52px;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-seal {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 62px;
  z-index: 3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 13px 30px;
  background: var(--green);
  color: var(--cream-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.13rem;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  background: var(--green-deep);
}

.btn.secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn.secondary:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream-soft);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  color: var(--ink);
  font-size: 0.88rem;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.section {
  border-bottom: 1px solid var(--line);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px var(--pad);
}

.section-head {
  max-width: 620px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-title {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  font-weight: 500;
  line-height: 1.04;
}

.section-copy {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-deep);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-wide {
  aspect-ratio: 1.42;
}

.ratio-photo {
  aspect-ratio: 1.25;
}

.cards-3,
.cards-2,
.cards-4,
.product-grid,
.variety-grid,
.tool-grid,
.moment-grid {
  display: grid;
  gap: 28px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: rgba(250, 247, 239, 0.72);
  padding: 26px;
}

.card h3,
.product-card h3,
.variety-card h3,
.tool-card h3,
.moment-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.1;
}

.card p,
.product-card p,
.variety-card p,
.tool-card p,
.moment-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.product-grid {
  grid-template-columns: 0.8fr repeat(3, minmax(0, 1fr));
  align-items: start;
}

.product-intro {
  padding-right: 18px;
}

.product-card {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.product-img {
  height: 230px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 22px;
  mix-blend-mode: multiply;
}

.product-kicker,
.variety-kicker,
.tool-kicker {
  display: block;
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: 0.78fr repeat(5, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.step {
  position: relative;
  text-align: center;
}

.step:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -18px;
  top: 54px;
  color: var(--gold);
}

.step-num {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
}

.step-icon {
  width: 74px;
  height: 74px;
  margin: 10px auto 14px;
  color: var(--green-muted);
}

.step h3 {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.55;
}

.moment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.moment-card img,
.tool-card img {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.brew-grid {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, minmax(0, 1fr));
  gap: 46px;
  align-items: start;
}

.variety-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 32px;
}

.variety-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  min-height: 150px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.variety-pile {
  width: 92px;
  height: 74px;
  align-self: center;
  filter: drop-shadow(0 8px 7px rgba(40, 39, 32, 0.12));
}

.variety-pile.powder {
  background: radial-gradient(ellipse at center, #9cb75e 0 24%, #6f8d31 25% 52%, transparent 53%);
  clip-path: polygon(4% 84%, 50% 22%, 96% 84%, 50% 100%);
}

.variety-pile.green {
  background:
    repeating-linear-gradient(135deg, #314728 0 3px, #6f8142 3px 6px, transparent 6px 11px),
    radial-gradient(ellipse at center, #4a6034, #263720);
  clip-path: ellipse(45% 28% at 50% 64%);
}

.variety-pile.roasted {
  background:
    repeating-linear-gradient(150deg, #5b3f27 0 4px, #9c7044 4px 7px, transparent 7px 12px),
    radial-gradient(ellipse at center, #7b5331, #40291a);
  clip-path: ellipse(45% 28% at 50% 64%);
}

.variety-pile.genmai {
  background:
    radial-gradient(circle at 26% 52%, #dac47f 0 4px, transparent 5px),
    radial-gradient(circle at 62% 58%, #dac47f 0 4px, transparent 5px),
    radial-gradient(circle at 45% 38%, #efe2b8 0 4px, transparent 5px),
    repeating-linear-gradient(140deg, #435f32 0 3px, #789045 3px 6px, transparent 6px 10px),
    radial-gradient(ellipse at center, #425832, #263720);
  clip-path: ellipse(46% 30% at 50% 64%);
}

.note-card {
  border: 1px solid var(--line-strong);
  padding: 26px;
  background: rgba(232, 223, 206, 0.65);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.category {
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.category:first-child {
  border-left: 0;
  padding-left: 0;
}

.category h3 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.category p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.tool-grid {
  grid-template-columns: 0.82fr repeat(5, minmax(0, 1fr));
}

.tool-card {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.tool-card img {
  object-fit: contain;
  background: rgba(250, 247, 239, 0.75);
}

.guide-image {
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.guide-image img {
  width: 100%;
  height: auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  position: relative;
  padding-top: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-strong);
}

.milestone {
  position: relative;
}

.milestone::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.milestone strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  letter-spacing: 0.08em;
}

.milestone p {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.cta {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--cream-soft);
  text-align: center;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 190px;
  height: 118px;
  transform: translateY(-50%);
  opacity: 0.32;
  background:
    radial-gradient(circle at 68% 56%, var(--gold) 0 18%, transparent 19%),
    radial-gradient(circle at 48% 62%, var(--gold) 0 15%, transparent 16%),
    linear-gradient(28deg, transparent 44%, var(--gold) 45% 47%, transparent 48%);
}

.cta::before {
  left: 74px;
}

.cta::after {
  right: 74px;
  transform: translateY(-50%) scaleX(-1);
}

.cta .section-inner {
  position: relative;
  z-index: 1;
  padding-top: 62px;
  padding-bottom: 62px;
}

.cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
}

.cta p {
  margin: 14px 0 30px;
  color: rgba(250, 247, 239, 0.82);
}

.cta .btn {
  background: var(--cream-soft);
  color: var(--green-deep);
}

.site-footer {
  background: var(--green);
  color: rgba(250, 247, 239, 0.76);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: var(--pad) 1fr var(--pad);
  }

  .hero-copy {
    grid-column: 2;
    padding: 56px 0 62px;
  }

  .hero-media {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 360px;
    opacity: 0.42;
  }

  .hero-media img {
    min-height: 360px;
  }

  .hero-media::after {
    background: rgba(244, 240, 230, 0.52);
  }

  .vertical-note,
  .hero-seal {
    display: none;
  }

  .product-grid,
  .brew-grid,
  .steps,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-intro,
  .tool-grid > .section-head {
    grid-column: 1 / -1;
  }

  .variety-grid,
  .moment-grid,
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .category:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 66px;
  }

  .brand {
    min-width: auto;
  }

  .brand-word {
    font-size: 1.1rem;
    letter-spacing: 0.24em;
    padding-left: 0.24em;
  }

  .nav-links,
  .nav-actions .icon-link {
    display: none;
  }

  .nav-actions {
    min-width: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-panel.open {
    display: block;
  }

  .hero {
    min-height: 520px;
  }

  .hero-media,
  .hero-media img {
    min-height: 520px;
  }

  .hero-title {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .hero-actions {
    gap: 16px;
  }

  .split,
  .cards-2,
  .cards-3,
  .cards-4,
  .product-grid,
  .brew-grid,
  .steps,
  .variety-grid,
  .tool-grid,
  .moment-grid,
  .category-strip,
  .timeline {
    grid-template-columns: 1fr;
  }

  .product-card,
  .tool-card,
  .category {
    border-left: 0;
    padding-left: 0;
  }

  .step::after,
  .timeline::before,
  .milestone::before {
    display: none;
  }

  .variety-card {
    grid-template-columns: 78px 1fr;
  }

  .cta::before,
  .cta::after {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
