:root {
  --ink: #24231f;
  --muted: #6d675d;
  --paper: #f6efe2;
  --wash: #fffaf0;
  --cedar: #365247;
  --charcoal: #20251f;
  --red: #a93b2f;
  --saffron: #c99134;
  --rice: #e4d3ab;
  --line: rgba(36, 35, 31, 0.14);
  --shadow: 0 18px 50px rgba(36, 35, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 250, 240, 0.93), rgba(255, 250, 240, 0.93)),
    repeating-linear-gradient(90deg, rgba(36, 35, 31, 0.035) 0 1px, transparent 1px 9px);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 239, 226, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 224px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--wash);
  background: var(--red);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
  color: var(--cedar);
  font-size: 14px;
}

.nav a {
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--red);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  padding: clamp(28px, 6vw, 72px);
  overflow: hidden;
  color: var(--wash);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 37, 31, 0.84), rgba(32, 37, 31, 0.32) 58%, rgba(32, 37, 31, 0.6)),
    url("https://images.unsplash.com/photo-1553621042-f6e147245754?auto=format&fit=crop&w=1800&q=82") center / cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 36px;
  width: min(34vw, 430px);
  aspect-ratio: 5 / 3;
  border: 1px solid rgba(255, 250, 240, 0.55);
  background:
    linear-gradient(rgba(54, 82, 71, 0.24), rgba(54, 82, 71, 0.24)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=78") center / cover;
  box-shadow: var(--shadow);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding-bottom: 46px;
}

.eyebrow,
.section-kicker,
.tag {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c78d;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 850px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.38;
}

.hero p {
  max-width: 690px;
  color: rgba(255, 250, 240, 0.9);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 250, 240, 0.65);
  border-radius: 4px;
  font-weight: 700;
}

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

.button.ghost {
  color: var(--wash);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 4vw, 56px);
}

.intro-grid,
.section-head,
.whatif {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro {
  border-bottom: 1px solid var(--line);
}

.intro p,
.section-head p,
.whatif-copy p {
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  align-items: end;
  margin-bottom: 34px;
}

.stories .section-head {
  display: block;
  max-width: 940px;
}

.stories .section-head p {
  max-width: 760px;
}

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

.article-card,
.culture-item,
.season-strip div {
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(36, 35, 31, 0.06);
}

.article-card {
  display: block;
}

.article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card-body p,
.culture-item p {
  color: var(--muted);
  line-break: strict;
}

.culture {
  background: var(--paper);
}

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

.culture-item {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.culture-item span,
.season-strip span {
  width: fit-content;
  padding: 4px 10px;
  color: var(--wash);
  background: var(--cedar);
  font-size: 13px;
}

.culture-item h3,
.culture-item p {
  margin-bottom: 0;
}

.whatif {
  background:
    linear-gradient(rgba(32, 37, 31, 0.9), rgba(32, 37, 31, 0.9)),
    url("https://images.unsplash.com/photo-1518977676601-b53f82aba655?auto=format&fit=crop&w=1600&q=80") center / cover;
  color: var(--wash);
}

.whatif .section-kicker,
.whatif .whatif-copy p {
  color: #f2c78d;
}

.whatif-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.whatif-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 250, 240, 0.2);
}

.whatif-list span {
  color: var(--saffron);
  font-weight: 800;
}

.whatif-panel {
  position: relative;
  align-self: stretch;
  min-height: 420px;
}

.whatif-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 240, 0.34);
}

.panel-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px;
  background: rgba(248, 243, 233, 0.94);
  color: var(--ink);
}

.panel-note strong,
.panel-note span {
  display: block;
}

.panel-note span {
  color: var(--muted);
  font-size: 13px;
}

.season {
  background:
    linear-gradient(rgba(246, 239, 226, 0.94), rgba(246, 239, 226, 0.94)),
    repeating-linear-gradient(0deg, rgba(169, 59, 47, 0.08) 0 1px, transparent 1px 12px);
}

.season-copy {
  max-width: 720px;
}

.season-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.season-strip div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.season-strip strong {
  font-size: 20px;
  line-height: 1.4;
}

.closing {
  padding: clamp(58px, 8vw, 96px) 18px;
  text-align: center;
  background: var(--red);
  color: var(--wash);
}

.closing p {
  margin: 0;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.35;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: var(--charcoal);
  color: var(--wash);
}

.footer p {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.72);
}

.sns {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 10px 16px;
}

.sns a {
  color: #f2c78d;
  border-bottom: 1px solid rgba(242, 199, 141, 0.5);
}

.story-page {
  background: var(--wash);
}

.story-hero {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 8vw, 140px) clamp(34px, 5vw, 64px);
  background:
    linear-gradient(rgba(32, 37, 31, 0.74), rgba(32, 37, 31, 0.74)),
    url("https://images.unsplash.com/photo-1512058564366-18510be2db19?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: var(--wash);
}

.story-hero-table {
  background:
    linear-gradient(rgba(32, 37, 31, 0.74), rgba(32, 37, 31, 0.74)),
    url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.story-hero-rice {
  background:
    linear-gradient(rgba(32, 37, 31, 0.74), rgba(32, 37, 31, 0.74)),
    url("https://images.unsplash.com/photo-1516684732162-798a0062be99?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.story-hero .section-kicker {
  color: #f2c78d;
}

.story-hero h1 {
  max-width: 920px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.story-hero p {
  max-width: 760px;
  color: rgba(255, 250, 240, 0.9);
  font-size: 18px;
}

.story-image {
  width: min(1120px, calc(100% - 36px));
  max-height: 520px;
  margin: clamp(28px, 5vw, 56px) auto 0;
  object-fit: cover;
  aspect-ratio: 16 / 7;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-body {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 82px) 0 clamp(70px, 9vw, 120px);
}

.story-body p,
.story-body li {
  color: var(--muted);
  font-size: 18px;
}

.story-body h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 36px);
}

.story-body h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--cedar);
  font-size: clamp(21px, 2.2vw, 26px);
}

.story-body ul {
  padding-left: 1.2em;
}

.story-body blockquote {
  margin: 34px 0;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  border-left: 5px solid var(--red);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.note,
.recipe-box {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.recipe-box {
  margin-top: 44px;
}

.recipe-box h2 {
  margin-top: 0;
}

.recipe-box p {
  margin-bottom: 0;
}

.back-link a {
  display: inline-flex;
  margin-top: 34px;
  color: var(--red);
  font-weight: 800;
  border-bottom: 1px solid rgba(169, 59, 47, 0.45);
}

@media (max-width: 1000px) {
  .culture-grid,
  .season-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav,
  .sns {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    opacity: 0.72;
    width: min(62vw, 360px);
  }

  .intro-grid,
  .section-head,
  .whatif {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 590px;
    padding: 28px 18px;
  }

  .hero::after {
    display: none;
  }

  body > main > .hero h1 {
    font-size: 40px;
  }

  .story-hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .article-grid,
  .culture-grid,
  .season-strip {
    grid-template-columns: 1fr;
  }

  .whatif-panel,
  .whatif-panel img {
    min-height: 310px;
  }

  .card-body,
  .culture-item,
  .season-strip div {
    padding: 18px;
  }

  .story-image {
    aspect-ratio: 4 / 3;
  }
}
