:root {
  --paper: #f8f5ee;
  --paper-soft: #efe8dc;
  --ink: #191511;
  --muted: #7a7167;
  --line: rgba(25, 21, 17, 0.16);
  --red: #b63627;
  --green: #536847;
  --blue: #657984;
  --wood: #b48552;
  --max: 1180px;
  --serif-display: "Bodoni 72", Didot, "Georgia", "Yu Mincho", serif;
  --serif-text: "Yu Mincho", "Hiragino Mincho ProN", "Songti SC", "Noto Serif JP", serif;
}

html[lang="en"] {
  --serif-text: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(25, 21, 17, 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper);
  color: var(--ink);
  font-family: var(--serif-text);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

body::selection {
  background: rgba(182, 54, 39, 0.22);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  height: 1px;
  background: rgba(182, 54, 39, 0.68);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem clamp(1.2rem, 5vw, 4.8rem);
  background: rgba(248, 245, 238, 0.78);
  border-bottom: 1px solid rgba(25, 21, 17, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.header-right,
.site-nav,
.language-switcher {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.72rem;
  font-family: var(--serif-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--serif-text);
  font-size: 1rem;
}

.header-right {
  gap: 1.6rem;
}

.site-nav {
  gap: 1.45rem;
  color: var(--muted);
  font-family: var(--serif-display);
  font-size: 1rem;
}

.language-switcher {
  gap: 0.16rem;
  padding: 0.18rem;
  border: 1px solid rgba(25, 21, 17, 0.18);
  border-radius: 999px;
}

.language-option {
  min-width: 2.15rem;
  height: 1.72rem;
  padding: 0 0.54rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--serif-display);
  font-size: 0.78rem;
  line-height: 1;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.language-option.is-active {
  background: var(--ink);
  color: var(--paper);
}

.language-option:focus-visible {
  outline: 1px solid var(--red);
  outline-offset: 3px;
}

.site-nav a,
.text-link {
  position: relative;
}

.site-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.28rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.site-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 6.5rem;
  min-height: 100vh;
  min-height: 100svh;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(5.8rem, 9svh, 7.6rem) clamp(1.4rem, 6vw, 6rem) clamp(4.8rem, 8svh, 6.4rem);
}

.hero-copy {
  align-self: center;
  max-width: 690px;
  padding-bottom: 0;
}

.eyebrow,
.section-label,
.detail-label {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif-display);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}

.hero h1 {
  max-width: 8.5ch;
  margin: 1.2rem 0 2rem;
  font-family: var(--serif-display);
  font-size: 6.6rem;
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-line {
  max-width: 16ch;
  margin: 0 0 1.9rem;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.65;
}

.hero-body {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif-display);
  font-size: 1.26rem;
  line-height: 1.62;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin-top: 2.4rem;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--ink);
  font-family: var(--serif-display);
  font-size: 1.12rem;
  font-weight: 600;
}

.text-link.muted {
  color: var(--muted);
}

.hero-media {
  align-self: center;
  width: min(100%, 470px);
  margin: 0;
  overflow: hidden;
}

.hero-media img {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  filter: saturate(0.92) contrast(0.95);
}

.hero-media figcaption {
  margin-top: 1rem;
  color: var(--muted);
  font-family: var(--serif-display);
  font-size: 0.96rem;
}

.vertical-note {
  position: absolute;
  right: clamp(1.2rem, 3vw, 3.2rem);
  bottom: 6.3rem;
  margin: 0;
  color: rgba(182, 54, 39, 0.62);
  font-size: 0.92rem;
  writing-mode: vertical-rl;
}

.manifesto {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8.8rem clamp(1.4rem, 6vw, 6rem) 10.5rem;
  border-top: 1px solid var(--line);
}

.manifesto p {
  max-width: 940px;
  margin: 0;
  font-family: var(--serif-display);
  font-size: 3.15rem;
  line-height: 1.18;
}

.split-section,
.sake-section,
.gather-section,
.visit-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9.4rem clamp(1.4rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
}

.split-section {
  display: grid;
  grid-template-columns: 0.26fr 0.74fr 0.68fr;
  gap: 4.5rem;
  align-items: start;
}

.section-copy {
  max-width: 520px;
}

.section-copy h2,
.gather-copy h2,
.visit-heading h2 {
  margin: 1rem 0 1.6rem;
  font-size: 2.65rem;
  font-weight: 300;
  line-height: 1.4;
}

.section-copy p,
.gather-copy p {
  margin: 0;
  color: var(--muted);
}

.quiet-list {
  display: grid;
  gap: 0.75rem;
  margin: 2.6rem 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.quiet-list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: baseline;
}

.quiet-list li::before {
  width: 1.25rem;
  height: 1px;
  content: "";
  background: var(--red);
}

.section-image {
  width: 100%;
  margin: 0;
  padding-top: 3.2rem;
  overflow: hidden;
}

.section-image img {
  aspect-ratio: 0.92 / 1;
  border-radius: 2px;
  filter: saturate(0.9);
}

.sake-section {
  padding-bottom: 11rem;
}

.sake-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.76fr) minmax(260px, 0.78fr) minmax(210px, 0.5fr);
  gap: 4.2rem;
  align-items: center;
}

.sake-bottle,
.sake-counter {
  margin: 0;
  overflow: hidden;
}

.sake-bottle {
  align-self: end;
}

.sake-bottle img {
  aspect-ratio: 4 / 5.25;
}

.sake-counter {
  align-self: start;
  padding-top: 6rem;
}

.sake-counter img {
  aspect-ratio: 0.78 / 1;
}

.sake-bottle img,
.sake-counter img,
.wide-photo img {
  border-radius: 2px;
  filter: saturate(0.88) contrast(0.97);
}

.gather-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.54fr);
  gap: 4.8rem;
}

.gather-copy {
  max-width: 610px;
}

.event-line {
  display: grid;
  align-self: end;
  border-top: 1px solid var(--line);
}

.event-line span {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-family: var(--serif-display);
  font-size: 1.24rem;
}

.wide-photo {
  grid-column: 1 / -1;
  width: min(100%, 920px);
  margin: 4.6rem 0 0 auto;
  overflow: hidden;
}

.wide-photo img {
  aspect-ratio: 16 / 8.4;
}

.visit-section {
  display: grid;
  grid-template-columns: 0.64fr 1fr;
  gap: 4.5rem;
  padding-bottom: 7.2rem;
}

.visit-heading h2 {
  max-width: 9ch;
  margin-bottom: 0;
  font-family: var(--serif-display);
  font-size: 4rem;
  line-height: 0.98;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-top: 0.5rem;
}

.visit-details p,
.address {
  margin: 0.7rem 0 0;
  color: var(--ink);
  font-size: 0.97rem;
  font-style: normal;
  line-height: 1.8;
}

.address {
  grid-column: 2;
  max-width: 520px;
  margin-top: 2.8rem;
  color: var(--muted);
}

.visit-actions {
  grid-column: 2;
  margin-top: 2.2rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.2rem clamp(1.4rem, 6vw, 6rem) 3.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif-display);
}

.site-footer p {
  margin: 0;
  color: var(--ink);
}

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

  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 6.6rem;
  }

  .hero-copy {
    align-self: start;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-line {
    font-size: 1.65rem;
  }

  .hero-media {
    width: min(100%, 620px);
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

  .vertical-note {
    display: none;
  }

  .manifesto p {
    font-size: 2.35rem;
  }

  .split-section,
  .sake-grid,
  .gather-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .section-label {
    margin-bottom: 0.8rem;
  }

  .section-image,
  .sake-counter {
    padding-top: 0;
  }

  .section-image img,
  .sake-bottle img,
  .sake-counter img {
    aspect-ratio: 4 / 3;
  }

  .sake-grid {
    gap: 3rem;
  }

  .sake-counter {
    width: min(100%, 460px);
    margin-left: auto;
  }

  .wide-photo {
    margin-top: 2.8rem;
  }

  .visit-details,
  .address,
  .visit-actions {
    grid-column: auto;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    align-items: flex-start;
    padding: 0.95rem 1rem;
  }

  .brand {
    font-size: 0.96rem;
  }

  .site-nav {
    display: none;
  }

  .header-right {
    margin-top: -0.1rem;
  }

  .hero {
    padding: 4.5rem 1rem 4.2rem;
  }

  .hero h1 {
    margin-bottom: 1.35rem;
    font-size: 3.25rem;
  }

  .hero-line {
    max-width: 14ch;
    font-size: 1.35rem;
  }

  .hero-body {
    font-size: 1.08rem;
  }

  .hero-actions,
  .visit-actions {
    gap: 1rem 1.4rem;
  }

  .manifesto,
  .split-section,
  .sake-section,
  .gather-section,
  .visit-section {
    padding: 5.8rem 1rem;
  }

  .manifesto p {
    font-size: 1.78rem;
    line-height: 1.34;
  }

  .section-copy h2,
  .gather-copy h2 {
    font-size: 1.84rem;
  }

  .visit-heading h2 {
    font-size: 2.8rem;
  }

  .visit-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .site-footer {
    flex-direction: column;
    padding: 2rem 1rem 2.6rem;
  }
}
