:root {
  --ink: #1d1d1f;
  --muted: #62676f;
  --paper: #f7f4ee;
  --white: #ffffff;
  --line: #ded8ce;
  --red: #b4372d;
  --green: #486b57;
  --indigo: #243b53;
  --shadow: 0 18px 45px rgba(24, 24, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 0 6vw;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0));
}

.brand {
  font-size: 20px;
  font-weight: 800;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  opacity: 0.92;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 6vw 92px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.08)),
    url("https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd9d4;
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 9vw, 118px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 24px 0 30px;
  font-size: 20px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.intro,
.content-section,
.sake-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 24px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.25;
}

p {
  margin: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.32fr) minmax(340px, 1fr) minmax(260px, 0.62fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading p:last-child,
.intro p,
.story-card p,
.photo-story p,
.sake-intro p:last-child,
.sake-feature p,
.sake-grid p,
.culture-grid p,
.season-grid p,
.band-text p {
  color: var(--muted);
}

.story-grid {
  display: grid;
  gap: 18px;
}

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

.story-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-card img {
  aspect-ratio: 16 / 10;
}

.story-card div {
  padding: 22px;
}

.story-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wide-photo {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.band-text h2 {
  margin-bottom: 20px;
}

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

.photo-story article {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.1);
}

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

.photo-story div {
  padding: 20px;
}

.sake-section {
  border-top: 1px solid var(--line);
}

.sake-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 28px;
}

.sake-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.1);
}

.sake-feature img {
  min-height: 320px;
  border-radius: 6px;
}

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

.sake-grid article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.sake-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 850;
}

.sake-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 5px solid var(--red);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.sake-note strong {
  color: var(--ink);
}

.culture-band {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  background: var(--indigo);
  color: var(--white);
}

.culture-band .section-kicker {
  color: #ffd0c8;
}

.culture-band .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

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

.culture-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.culture-grid img {
  aspect-ratio: 4 / 3;
}

.culture-grid div {
  padding: 20px;
}

.culture-grid p {
  color: rgba(255, 255, 255, 0.78);
}

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

.season-grid article {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.1);
}

.season-grid img {
  aspect-ratio: 1 / 1;
}

.season-grid h3,
.season-grid p {
  padding-left: 18px;
  padding-right: 18px;
}

.season-grid h3 {
  padding-top: 18px;
}

.season-grid p {
  padding-bottom: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 6vw;
  color: var(--muted);
  background: var(--white);
  font-size: 14px;
}

@media (max-width: 1050px) {
  .section-heading,
  .photo-story,
  .sake-grid,
  .culture-grid,
  .season-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    min-height: 104px;
    padding-top: 18px;
  }

  .hero {
    min-height: 86vh;
    padding-bottom: 64px;
  }

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

  .intro,
  .story-grid-large,
  .image-band,
  .sake-intro,
  .sake-feature {
    grid-template-columns: 1fr;
  }

  .wide-photo,
  .sake-feature img {
    min-height: 320px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
    gap: 10px;
  }

  .nav {
    justify-content: flex-start;
    gap: 8px 14px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .intro,
  .content-section,
  .sake-section {
    padding: 56px 18px;
  }

  .section-heading,
  .photo-story,
  .sake-grid,
  .culture-grid,
  .season-grid {
    grid-template-columns: 1fr;
  }
}
