@charset "UTF-8";

:root {
  --coffee: #2C1A0E;
  --coffee-2: #3A2415;
  --latte: #C8A97E;
  --cream: #E8D5B0;
  --bg: #FAF7F2;
  --bg-2: #F2EDE3;
  --ink: #1A1A1A;
  --ink-soft: #4A4038;
  --rule: rgba(44, 26, 14, .12);
  --rule-strong: rgba(44, 26, 14, .22);
  --serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --mincho: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-size: 1.6rem;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--jp);
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
  overflow-x: hidden;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
}


/* ---------- type ---------- */

.serif {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: .005em;
}

.mono {
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.mincho {
  font-family: var(--mincho);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 400;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--coffee);
  opacity: .5;
}


/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: rgba(250, 247, 242, .15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #FAF7F2;
  transition: background .4s ease, color .4s ease, padding .4s ease;
}

.nav.is-light {
  mix-blend-mode: normal;
  background: rgba(250, 247, 242, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--coffee);
  border-bottom: 1px solid var(--rule);
  padding: 16px 48px;
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.nav-brand .kanji {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: .08em;
}

.nav-brand .latin {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  font-size: 1.1rem;
  font-family: var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .85;
  transition: opacity .2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 9px 16px;
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}

.nav-cta:hover {
  background: currentColor;
}

.nav-cta:hover span {
  color: var(--coffee);
}

.nav.is-light .nav-cta:hover span {
  color: var(--bg);
}


/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--coffee);
  color: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 56px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 70% 30%, rgba(200, 169, 126, .18), transparent 55%),
    radial-gradient(80% 60% at 20% 80%, rgba(232, 213, 176, .08), transparent 60%),
    var(--coffee);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 clamp(3rem, 6vw, 8rem);
  align-items: flex-end;
  position: relative;
}

.hero-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
  animation: heroSlideIn 1.6s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-year-tag {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: .3em;
  color: rgba(232, 213, 176, .35);
  margin-top: 1.6rem;
  animation: heroFadeUp 1s ease both;
  animation-delay: .9s;
}

.hero-image {
  width: 38%;
  flex-shrink: 0;
  opacity: .95;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-meta {
  position: absolute;
  top: 120px;
  left: 48px;
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, .7);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-meta .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--latte);
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

.hero-side {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, .55);
  white-space: nowrap;
}

.hero-title {
  flex: 1;
  min-width: 0;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2.8rem;
  animation: heroFadeUp 1s ease both;
  animation-delay: .3s;
}

.hero-label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--latte);
  transform-origin: left;
  animation: lineGrow .8s ease both;
  animation-delay: .5s;
}

.hero-label span:last-child {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(232, 213, 176, .5);
}

.kanji-big {
  font-family: var(--mincho);
  font-size: clamp(16rem, 28vw, 42rem);
  line-height: .85;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 213, 176, .2);
  letter-spacing: -.02em;
  display: block;
  user-select: none;
}

.hero-title h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(5.6rem, 7.5vw, 12rem);
  line-height: .92;
  letter-spacing: -.02em;
  color: var(--bg);
  animation: heroFadeUp 1.2s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: .5s;
}

.hero-title h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
}

.hero-title .sub {
  margin-top: 2.8rem;
  max-width: 52ch;
  color: rgba(250, 247, 242, .65);
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 300;
  animation: heroFadeUp 1s ease both;
  animation-delay: .75s;
}

.hero-title .sub .copy p + p {
  margin-top: 10px;
}

.hero-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.2rem;
  margin-top: 4rem;
  animation: heroFadeUp 1s ease both;
  animation-delay: 1s;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--latte);
  color: var(--coffee);
  padding: 1.4rem 2.8rem;
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .3s, gap .3s;
}

.hero-btn em {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
  transition: transform .3s;
}

.hero-btn:hover {
  background: var(--cream);
  gap: 1.8rem;
}

.hero-btn--secondary {
  background: rgba(232, 213, 176, .1);
  color: var(--cream);
  border: 1px solid rgba(232, 213, 176, .3);
}

.hero-btn--secondary:hover {
  background: rgba(232, 213, 176, .2);
  gap: 1.8rem;
}

.hero-foot {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  border-top: 1px solid rgba(250, 247, 242, .18);
  padding-top: 24px;
}

.hero-foot .row {
  display: flex;
  gap: 48px;
}

.hero-foot dl {
  font-family: var(--mono);
  font-size: 1.1rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, .55);
}

.hero-foot dt {
  margin-bottom: 6px;
}

.hero-foot dd {
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.scrolldown {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, .7);
}

.scrolldown .line {
  width: 48px;
  height: 1px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.scrolldown .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--coffee);
  transform: translateX(-100%);
  animation: fill 2.6s ease-in-out infinite;
}

@keyframes fill {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}


/* ---------- generic section ---------- */

section {
  position: relative;
}

.section-pad {
  padding: 160px 48px;
}

.section-head {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  margin-bottom: 88px;
  align-items: start;
}

.section-head .num {
  font-family: var(--mono);
  font-size: 1.1rem;
  letter-spacing: .22em;
  color: var(--coffee);
  opacity: .55;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4rem, 5.2vw, 7.6rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--coffee);
  /* max-width: 14ch; */
}

.section-head h2 em {
  font-style: italic;
  color: var(--latte);
}

.section-head .lead {
  margin-top: 18px;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--ink-soft);
  max-width: 46ch;
  font-weight: 300;
}


/* reveal */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.2, .7, .2, 1), transform 1.1s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .4s; }


/* placeholder image slots */

.slot {
  position: relative;
  background: repeating-linear-gradient(135deg, var(--bg-2) 0 14px, var(--bg) 14px 28px);
  border: 1px solid var(--rule);
  overflow: hidden;
}

.slot.dark {
  background: repeating-linear-gradient(135deg, #2A1A0E 0 14px, #221409 14px 28px);
  border-color: rgba(232, 213, 176, .12);
  color: var(--cream);
}

.slot .cap {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: .18em;
  color: var(--coffee);
  opacity: .55;
  text-transform: uppercase;
}

.slot.dark .cap {
  color: var(--cream);
  opacity: .6;
}

.slot .corner {
  position: absolute;
  right: 14px;
  top: 14px;
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: .16em;
  color: var(--coffee);
  opacity: .4;
}

.slot.dark .corner {
  color: var(--cream);
  opacity: .5;
}


/* ---------- craft section ---------- */

#craft {
  background: var(--bg);
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.craft-img {
  aspect-ratio: 4/5;
  position: relative;
}

.craft-copy {
  padding-top: 40px;
}

.craft-copy h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 4.4rem;
  line-height: 1.15;
  color: var(--coffee);
  margin-bottom: 24px;
  letter-spacing: -.005em;
}

.craft-copy p {
  font-size: 1.4rem;
  line-height: 2.1;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: 18px;
  font-weight: 300;
}

.specs {
  margin-top: 48px;
  border-top: 1px solid var(--rule);
}

.specs .row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.specs .row .k {
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coffee);
  opacity: .65;
}

.specs .row .v {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--coffee);
  font-style: italic;
  font-weight: 400;
}

.specs .row .meta {
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: .15em;
  color: var(--ink-soft);
  opacity: .6;
}


/* coffee roast curve */

.curve-card {
  margin-top: 32px;
  border: 1px solid var(--rule);
  padding: 28px;
  background: var(--bg-2);
}

.curve-card .head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.curve-card .head .t {
  font-family: var(--mono);
  font-size: 1.1rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coffee);
}

.curve-card .head .v {
  font-family: var(--serif);
  font-style: italic;
  color: var(--latte);
}

.curve svg {
  width: 100%;
  height: 140px;
  display: block;
}

.curve-legend {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: .15em;
  color: var(--ink-soft);
  opacity: .65;
}


/* ---------- space section ---------- */

#space {
  background: var(--coffee);
  color: var(--bg);
  padding: 180px 48px;
}

#space .section-head h2 {
  color: var(--bg);
}

#space .section-head h2 em {
  color: var(--latte);
}

#space .section-head .num {
  color: var(--cream);
  opacity: .5;
}

#space .section-head .lead {
  color: rgba(250, 247, 242, .7);
}

.space-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 16px;
}

.space-mosaic .m1 { grid-column: 1/7;  grid-row: 1/6; }
.space-mosaic .m2 { grid-column: 7/11; grid-row: 1/4; }
.space-mosaic .m3 { grid-column: 11/13; grid-row: 1/4; }
.space-mosaic .m4 { grid-column: 7/10; grid-row: 4/7; }
.space-mosaic .m5 { grid-column: 10/13; grid-row: 4/8; }
.space-mosaic .m6 { grid-column: 1/7;  grid-row: 6/9; }
.space-mosaic .m7 { grid-column: 7/10; grid-row: 7/9; }

.space-quotes {
  margin-top: 88px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
}

.quote {
  border-top: 1px solid rgba(232, 213, 176, .25);
  padding-top: 24px;
}

.quote .q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 18px;
  font-weight: 300;
}

.quote .who {
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(232, 213, 176, .55);
}


/* ---------- seasonal ---------- */

#seasonal {
  background: var(--bg);
  padding: 180px 0 160px;
}

#seasonal .section-head {
  padding: 0 48px;
}

.season-rail {
  position: relative;
  padding: 0 48px;
}

.season-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
  padding-bottom: 14px;
  align-items: center;
}

.season-tabs button {
  font-family: var(--mono);
  font-size: 1.1rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: .5;
  position: relative;
  padding: 6px 0;
  transition: opacity .2s, color .2s;
}

.season-tabs button .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: 0;
  text-transform: none;
  opacity: .7;
  margin-right: 8px;
}

.season-tabs button:hover {
  opacity: .85;
}

.season-tabs button.is-active {
  opacity: 1;
  color: var(--coffee);
}

.season-tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 1px;
  background: var(--coffee);
}

.season-tabs .spacer {
  flex: 1;
}

.season-tabs .arrows {
  display: flex;
  gap: 6px;
}

.season-tabs .arrows button {
  border: 1px solid var(--rule-strong);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  color: var(--coffee);
  transition: background .2s, color .2s;
}

.season-tabs .arrows button:hover {
  background: var(--coffee);
  color: var(--bg);
}

.season-tabs .arrows button.is-active::after {
  display: none;
}

.season-stage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 560px;
}

.season-img {
  aspect-ratio: 4/5;
  position: relative;
  max-height: 640px;
}

.season-info .ko {
  font-family: var(--mincho);
  font-size: 2.4rem;
  color: var(--latte);
  margin-bottom: 12px;
  letter-spacing: .04em;
}

.season-info h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 7.2rem;
  line-height: 1;
  color: var(--coffee);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

.season-info h3 em {
  font-style: italic;
  color: var(--latte);
}

.season-info .desc {
  font-size: 1.4rem;
  line-height: 2.1;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 32px;
  font-weight: 300;
}

.season-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 36px;
}

.season-notes div {
  background: var(--bg);
  padding: 18px 20px;
}

.season-notes .k {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coffee);
  opacity: .55;
  margin-bottom: 6px;
}

.season-notes .v {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--coffee);
}

.season-price {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.season-price .p {
  font-family: var(--serif);
  font-size: 4.2rem;
  color: var(--coffee);
  font-weight: 400;
}

.season-price .p .yen {
  font-size: 2.4rem;
  margin-right: 2px;
  opacity: .6;
}

.season-price .tax {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: .18em;
  color: var(--ink-soft);
  opacity: .6;
  text-transform: uppercase;
}

.season-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coffee);
  border-bottom: 1px solid var(--coffee);
  padding-bottom: 6px;
}

.season-cta:hover {
  color: var(--latte);
  border-color: var(--latte);
}


/* ---------- pairing ---------- */

#pairing {
  background: var(--bg-2);
  padding: 160px 48px;
}

.pair-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pair-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pair-img {
  aspect-ratio: 1/1;
  position: relative;
}

.pair-card .ko {
  font-family: var(--mincho);
  font-size: 1.3rem;
  color: var(--latte);
  letter-spacing: .08em;
}

.pair-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.15;
  color: var(--coffee);
}

.pair-card h4 em {
  font-style: italic;
}

.pair-card .desc {
  font-size: 1.3rem;
  line-height: 1.95;
  color: var(--ink-soft);
  font-weight: 300;
}

.pair-card .meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}

.pair-card .meta .pair {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coffee);
  opacity: .65;
}

.pair-card .meta .price {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--coffee);
  font-style: italic;
}


/* ---------- access ---------- */

#access {
  background: var(--coffee);
  color: var(--bg);
  padding: 180px 48px 100px;
}

#access .section-head h2 {
  color: var(--bg);
}

#access .section-head h2 em {
  color: var(--latte);
}

#access .section-head .num {
  color: var(--cream);
  opacity: .5;
}

#access .section-head .lead {
  color: rgba(250, 247, 242, .7);
}

.access-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}

.access-map {
  aspect-ratio: 5/4;
  position: relative;
  background: #1A100A;
  border: 1px solid rgba(232, 213, 176, .15);
  overflow: hidden;
}

.access-map svg {
  width: 100%;
  height: 100%;
}

.access-info {
  padding-top: 8px;
}

.access-info .kanji {
  font-family: var(--mincho);
  font-size: 3.2rem;
  color: var(--latte);
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.access-info h3 {
  font-family: var(--serif);
  font-size: 4.8rem;
  line-height: 1.05;
  color: var(--bg);
  margin-bottom: 36px;
  font-weight: 300;
}

.hours {
  border-top: 1px solid rgba(232, 213, 176, .22);
}

.hours .row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(232, 213, 176, .18);
  align-items: baseline;
}

.hours .row .day {
  font-family: var(--mono);
  font-size: 1.1rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(232, 213, 176, .6);
}

.hours .row .time {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--bg);
}

.hours .row .tag {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: .18em;
  color: var(--latte);
  text-transform: uppercase;
}

/* .hours .row.is-closed .time {
  color: rgba(250, 247, 242, .4);
  text-decoration: line-through;
} */

.hours .row.is-now {
  position: relative;
}

/* .hours .row.is-now::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--latte);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(200, 169, 126, .18);
} */

.contact-block {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(232, 213, 176, .2);
  border: 1px solid rgba(232, 213, 176, .2);
}

.contact-block > div {
  background: var(--coffee);
  padding: 24px 22px;
}

.contact-block .k {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(232, 213, 176, .55);
  margin-bottom: 8px;
}

.contact-block .v {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--bg);
}

.contact-block .v a {
  border-bottom: 1px solid rgba(232, 213, 176, .4);
  padding-bottom: 2px;
}

.book-row {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.book-row .btn-primary {
  background: var(--latte);
  color: var(--coffee);
  padding: 18px 34px;
  font-family: var(--mono);
  font-size: 1.1rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background .25s;
}

.book-row .btn-primary:hover {
  background: var(--cream);
}

.book-row .btn-ghost {
  border: 1px solid rgba(232, 213, 176, .35);
  color: var(--bg);
  padding: 18px 28px;
  font-family: var(--mono);
  font-size: 1.1rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}

.book-row .btn-ghost:hover {
  background: rgba(232, 213, 176, .12);
}


/* ---------- footer ---------- */

footer {
  background: #1A0E07;
  color: var(--cream);
  padding: 80px 48px 40px;
  border-top: 1px solid rgba(232, 213, 176, .12);
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(232, 213, 176, .12);
}

.foot-brand .kanji {
  font-family: var(--mincho);
  font-size: 5.6rem;
  color: var(--latte);
  letter-spacing: .04em;
  margin-bottom: 18px;
  line-height: 1;
}

.foot-brand .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: var(--bg);
}

.foot-brand p {
  font-size: 1.25rem;
  line-height: 1.95;
  color: rgba(232, 213, 176, .65);
  max-width: 36ch;
  font-weight: 300;
}

.foot-col h5 {
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(232, 213, 176, .5);
  margin-bottom: 20px;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--bg);
  opacity: .85;
  transition: opacity .2s;
}

.foot-col a:hover {
  opacity: 1;
  color: var(--latte);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(232, 213, 176, .5);
}

.foot-bottom .links {
  display: flex;
  gap: 20px;
}


/* ---------- cursor blob ---------- */

.glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(200, 169, 126, .10), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity .4s;
  will-change: transform;
}


/* ---------- responsive ---------- */

@media (max-width: 1100px) {
  .nav,
  .section-pad,
  #space,
  #seasonal .section-head,
  .season-rail,
  #pairing,
  #access {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav {
    padding: 18px 28px;
  }

  .hero {
    padding: 0 28px 40px;
  }

  .hero-meta {
    left: 28px;
  }

  .craft-grid,
  .season-stage,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .craft-img {
    max-height: 520px;
  }

  .pair-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .space-quotes {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 56px;
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-side {
    display: none;
  }

  .hero-image {
    width: 34%;
  }

  .hero-title .sub {
    max-width: 100%;
  }

  .kanji-big {
    font-size: clamp(14rem, 22vw, 32rem);
  }

  .space-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
  }

  .space-mosaic .m1 { grid-column: 1/2; grid-row: 1/2; }
  .space-mosaic .m2 { grid-column: 2/3; grid-row: 1/2; }
  .space-mosaic .m3 { display: none; }
  .space-mosaic .m4 { grid-column: 1/2; grid-row: 2/3; }
  .space-mosaic .m5 { grid-column: 2/3; grid-row: 2/3; }
  .space-mosaic .m6 { grid-column: 1/3; grid-row: 3/4; }
  .space-mosaic .m7 { display: none; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

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

  .hero-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-foot .row {
    gap: 24px;
    flex-wrap: wrap;
  }

  .contact-block {
    grid-template-columns: 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 20px 32px;
    min-height: 100svh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-graphic {
    display: none;
  }

  .hero-title h1 {
    font-size: clamp(4.8rem, 11vw, 7.2rem);
    line-height: .95;
  }

  .hero-title .sub {
    margin-top: 2rem;
    font-size: 1.3rem;
    line-height: 1.85;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
    margin-top: 3.2rem;
  }

  .hero-foot {
    margin-top: 28px;
  }

  .hero-foot .scrolldown {
    margin-top: 16px;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .space-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .space-mosaic .m1 { grid-column: 1/3; grid-row: 1/2; }
  .space-mosaic .m2 { grid-column: 1/2; grid-row: 2/3; }
  .space-mosaic .m3 { display: none; }
  .space-mosaic .m4 { grid-column: 2/3; grid-row: 2/3; }
  .space-mosaic .m5 { display: none; }
  .space-mosaic .m6 { grid-column: 1/3; grid-row: 3/4; }
  .space-mosaic .m7 { display: none; }
}

/* ---------- back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,126,.4);
  background: rgba(44,26,14,.85);
  backdrop-filter: blur(8px);
  color: var(--latte);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 200;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(200,169,126,.18);
  border-color: var(--latte);
}
