:root {
  --paper: #f4efe5;
  --ink: #20201f;
  --muted: #706d66;
  --line: rgba(32, 32, 31, .35);
  --accent: #793b2a;
  --white: #fffdf8;
  --font-display: "Italiana", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-body: "Manrope", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-label: "DM Mono", "SFMono-Regular", monospace;
  --font-script: "Mrs Saint Delafield", cursive;
  --page-gutter: clamp(24px, 6vw, 96px);
  --section-space: clamp(88px, 10vw, 152px);
  --content-wide: 1240px;
  --content-copy: 680px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .1;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a, button, input, select, textarea, summary { outline-offset: 4px; }
:focus-visible { outline: 2px solid var(--accent); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px var(--page-gutter);
  background: rgba(244, 239, 229, .92);
  border-bottom: 0;
  box-shadow: 0 8px 24px rgba(32, 32, 31, .055);
  backdrop-filter: blur(12px);
}
.monogram {
  text-decoration: none;
  font-family: "Italiana", serif;
  font-size: 24px;
  letter-spacing: .08em;
}
.monogram span {
  display: inline-block;
  margin: 0 .08em;
  color: var(--accent);
  font-family: var(--font-script);
  font-size: 1.35em;
  font-style: normal;
  line-height: .7;
  vertical-align: -.08em;
}
nav { display: flex; align-items: center; gap: clamp(12px, 1.8vw, 28px); }
nav a {
  font-family: var(--font-label);
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
}
nav a { position: relative; }
nav a:hover { color: var(--accent); }
.view-nav a.active { color: var(--accent); }
.view-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
}
.nav-rsvp { padding: 8px 0; }
.mobile-section-nav { display: none; }
.site-view[hidden] { display: none; }
.site-view { min-height: calc(100vh - 72px); }
.site-view:not([data-view="main"]) { padding-top: 72px; }

.section-pad { padding: var(--section-space) var(--page-gutter); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 400;
}
h1, h2, h3, p { margin-top: 0; }
h2 {
  max-width: 980px;
  margin-bottom: var(--space-lg);
  font-family: var(--font-display);
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.02em;
}
.section-heading { max-width: 920px; margin-bottom: var(--space-xl); }
.section-heading > p:last-child { max-width: var(--content-copy); color: var(--muted); }

.hero {
  min-height: 100svh;
  padding: 126px var(--page-gutter) 48px;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 46vw) 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: var(--space-md);
  position: relative;
}
.hero-copy {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 1;
  text-align: center;
  align-self: start;
}
.hero h1 {
  font-family: var(--font-script);
  font-size: clamp(90px, 13vw, 188px);
  line-height: .78;
  font-weight: 400;
  margin: 54px 0 0;
  letter-spacing: 0;
}
.hero h1 span { display: inline-block; margin: 0 .08em; font-size: .6em; color: var(--accent); }
.hero-photo {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  margin: 138px 0 0;
  align-self: center;
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  min-height: 0;
  object-fit: cover;
  filter: saturate(.86) contrast(.98) sepia(.04);
  box-shadow: 0 20px 50px rgba(32, 32, 31, .08);
}
.hero-caption { padding: 22px 5px 4px; text-align: center; }
.hero-thought { margin: 0; font-family: var(--font-display); font-size: 20px; }
.hero-date { margin: 9px 0 0; letter-spacing: .4em; font-size: 12px; }
.hero-date,
.hero-footer,
.scroll-cue,
.venue-location,
.text-link,
.timeline time,
.option-number,
.journey-time,
.access-map-link,
.card-link,
.neighbourhood-list span,
.neighbourhood-list b,
.stay-card > span:last-child,
.explore-card > span,
.explore-card b,
.field label,
fieldset legend,
.submit-button,
.form-note,
.fine-print,
footer a,
.lightbox button {
  font-family: var(--font-label);
}
.hero-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .12em;
}
.scroll-cue {
  position: absolute;
  right: 2.5vw;
  top: 52%;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
  text-decoration: none;
}

.welcome { text-align: center; max-width: 1080px; margin: auto; }
.welcome::before { content: none; }
.welcome h2 { font-size: clamp(48px, 5.8vw, 82px); }
.welcome h2 em { font-family: inherit; font-weight: 400; font-style: italic; color: var(--accent); }
.welcome > p:last-child { max-width: var(--content-copy); margin: var(--space-lg) auto 0; }
.welcome > p:last-child { font-family: var(--font-label); font-weight: 300; }

.story, .venue {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}
.story-image { margin: 0; }
.story-image img, .venue-image img {
  width: 100%;
  height: min(720px, 68vw);
  object-fit: cover;
  object-position: center;
}
.story-image img {
  height: min(660px, 62vw);
  object-position: 64% center;
}
.image-wash img { filter: grayscale(1) contrast(.92); }
.story-copy { max-width: 650px; }
.story-copy h2, .venue h2 { color: var(--paper); }
.story-copy p { color: rgba(244, 239, 229, .78); }
.story-copy p { font-family: var(--font-label); font-weight: 300; }
.signature {
  margin-top: var(--space-lg);
  font-family: var(--font-script) !important;
  font-size: 46px;
  font-style: normal;
  line-height: .8;
  color: var(--paper) !important;
}

.moments {
  padding-top: var(--section-space);
  background: var(--paper);
}
.moments-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 120px);
  align-items: end;
  max-width: var(--content-wide);
  margin: 0 auto var(--space-xl);
}
.moments-heading .eyebrow { grid-column: 1 / -1; }
.moments-heading h2 { margin: 0; }
.moments-heading > p:last-child {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: var(--font-label);
  font-weight: 300;
}
.moments-grid {
  width: min(var(--content-wide), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(190px, 18vw, 280px);
  gap: clamp(12px, 1.6vw, 24px);
}
.moment-photo {
  min-width: 0;
  min-height: 0;
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
}
.moment-photo-wide { grid-column: span 2; grid-row: span 2; }
.moment-photo-tall,
.moment-photo-portrait { grid-row: span 2; }
.moment-photo-landscape { grid-column: span 2; }
.moment-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(.08) contrast(1.02);
  transition: transform .55s ease, filter .35s ease;
}
.moment-photo-wide img { object-position: center 44%; }
.moment-photo-tall img { object-position: 63% center; }
.moment-photo-portrait img { object-position: center 42%; }
.moment-photo-landscape img { object-position: center; }
.moment-photo:hover img,
.moment-photo:focus-visible img {
  transform: scale(1.018);
}
.moment-photo.is-color img,
.moment-photo[aria-pressed="true"] img {
  filter: saturate(.96) contrast(1);
}

.venue { background: #d9cdbb; color: var(--ink); }
.venue { display: block; }
.venue-copy { max-width: none; margin: 0; }
.venue-heading { text-align: left; }
.venue h2 { color: var(--ink); }
.venue-location { text-transform: uppercase; font-size: 12px; letter-spacing: .14em; margin-bottom: 10px; }
.venue-content {
  width: min(1180px, 100%);
  margin: 38px auto 0;
  text-align: center;
}
.venue-watercolor {
  width: min(900px, 100%);
  margin: 0 auto 18px;
}
.venue-watercolor img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}
.venue-content > p {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-label);
  font-weight: 300;
  line-height: 1.75;
}
.venue-facts { margin: 45px 0; border-top: 1px solid var(--ink); }
.venue-facts div { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 17px 0; border-bottom: 1px solid var(--ink); }
.venue-facts dt { text-transform: uppercase; font-size: 10px; letter-spacing: .14em; }
.venue-facts dd { margin: 0; }
.text-link { text-transform: uppercase; font-size: 12px; letter-spacing: .1em; text-underline-offset: 6px; }

.dress-code {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(480px, 1.3fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
}
.dress-code .section-heading { margin-bottom: 0; }
.dress-code #dress-code-title + p {
  color: var(--muted);
  font-family: var(--font-label);
  font-weight: 300;
  line-height: 1.8;
}
.attire-illustration { margin: 0; }
.attire-illustration img {
  width: 100%;
  height: auto;
  filter: saturate(.86) contrast(.98);
}
.kimono-rentals { margin-top: 30px; padding-top: 25px; border-top: 1px solid var(--line); }
.kimono-rentals p {
  font-size: 15px;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 300;
}
.kimono-rentals a {
  display: block;
  width: fit-content;
  margin-top: 10px;
  font-family: var(--font-label);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px;
  text-underline-offset: 5px;
}

.schedule { max-width: none; margin: 0; }
.schedule > * { max-width: 1040px; }
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { display: grid; grid-template-columns: 130px 1fr; gap: 40px; padding: 30px 0; border-top: 1px solid var(--line); }
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline time { color: var(--accent); font-size: 14px; letter-spacing: .08em; }
.timeline h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 29px; font-weight: 400; }
.timeline p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-label);
  font-weight: 300;
}
.schedule-day {
  max-width: 900px;
  margin: 0 0 18px;
}
.schedule-day-two { margin-top: 55px; }
.timeline-day-two li { grid-template-columns: 1fr; gap: 6px; }
.timeline-day-two time { display: block; margin-bottom: 4px; }

.venue-access { background: #d9cdbb; }
.venue-access > * { max-width: var(--content-wide); margin-left: auto; margin-right: auto; }
.route-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: auto;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
}
.station-start {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding: 26px 30px;
  background: rgba(244,239,229,.62);
}
.station-start .route-icon { margin: 0; background: var(--ink); color: var(--paper); }
.station-start .eyebrow { margin: 0 0 3px; }
.station-start h3 { margin: 0; font: 400 clamp(24px, 3vw, 36px) var(--font-display); }
.access-options { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.access-option {
  min-height: 330px;
  display: grid;
  grid-template-rows: 52px 20px auto 1fr auto;
  align-content: start;
  row-gap: 16px;
  padding: clamp(28px, 3vw, 42px);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.transport-icon { width: 52px; height: 52px; margin: 0; }
.transport-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.option-number { align-self: end; color: var(--accent); font-size: 12px; }
.access-option h3 { margin: 0; font: 400 30px var(--font-display); }
.access-option p {
  margin: 0;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 300;
}
.journey-time { align-self: end; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.access-map-link { display: block; margin-top: 22px; text-align: right; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; text-underline-offset: 5px; }
.route-map {
  display: block;
  margin-top: 42px;
  text-decoration: none;
}
.route-map img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(32,32,31,.25);
}
.route-map span {
  display: block;
  margin-top: 12px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.card-link { margin-top: 24px; justify-self: start; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; text-underline-offset: 5px; }
.stay { background: var(--ink); color: var(--paper); }
.stay > .section-heading .eyebrow { color: #bd7f68; }
.stay-map {
  display: grid;
  grid-template-columns: minmax(390px, .44fr) minmax(0, 1fr);
  min-height: 650px;
  margin: 0 0 var(--space-xl);
  overflow: hidden;
  background: #f5f1e8;
  color: var(--ink);
}
.stay-map-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 3.6vw, 54px);
  border-right: 1px solid rgba(32, 32, 31, .16);
}
.stay-map-copy .eyebrow { margin: 0 0 22px; color: var(--accent); }
.stay-map-copy h3 {
  margin: 0;
  font: 400 clamp(44px, 4.4vw, 68px)/.98 var(--font-display);
}
.stay-map-copy > p:not(.eyebrow):not(.stay-map-key) {
  max-width: 330px;
  margin: 22px 0 0;
  font-family: var(--font-label);
  font-size: 13px;
  line-height: 1.75;
}
.stay-map-copy #stay-map-description { margin-top: 0; }
.stay-map-key {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 24px 0 0;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.stay-map-key span {
  width: 38px;
  border-top: 2px dotted var(--ink);
}
.stay-map-art {
  position: relative;
  min-width: 0;
  padding: 22px 22px 16px;
  background: #f7f4ed;
}
.stay-map-art svg {
  display: block;
  width: 100%;
  height: 610px;
  overflow: hidden;
}
.map-sea { fill: url(#bay-wash); opacity: .82; }
.map-land { fill: #f7f4ed; }
.map-coast { fill: none; stroke: #9bb3b9; stroke-width: 1.5; }
.map-roads path {
  fill: none;
  stroke: #b9b7ae;
  stroke-width: 1;
  opacity: .45;
}
.rail-line,
.venue-link {
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-dasharray: 3 7;
  stroke-linecap: round;
}
.venue-link { stroke: #75845b; }
.map-stop circle:first-child { fill: #f7f4ed; stroke: var(--ink); stroke-width: 4; }
.map-stop-inner { fill: var(--ink); }
.map-stop text {
  fill: var(--ink);
  font: 500 22px var(--font-label);
}
.map-venue text,
.map-airport text {
  fill: var(--ink);
  font: 500 19px var(--font-label);
}
.map-stop .map-jp,
.map-venue .map-jp,
.map-airport .map-jp {
  font-size: 15px;
  font-weight: 400;
  opacity: .7;
}
.map-label-left { text-anchor: end; }
.map-stop circle:first-child { transition: stroke .22s ease, stroke-width .22s ease; }
.stay-map-art a:hover .map-stop circle:first-child { stroke: var(--accent); stroke-width: 5; }
.stay-map-art a:focus-visible { outline: none; }
.stay-map-art a:focus-visible .map-stop circle:first-child { stroke: var(--accent); stroke-width: 6; }
.map-airport-outer { fill: #e6f1f5; stroke: #8aaab3; stroke-width: 3; }
.map-airport-inner { fill: transparent; stroke: #8aaab3; stroke-width: 2.2; }
.map-airport path {
  fill: #517987;
  stroke: none;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.map-landmark {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .78;
}
.map-tokyo-tower { color: var(--accent); }
.map-yokohama-skyline {
  stroke: #75845b;
  opacity: .72;
}
.map-venue circle { fill: #eef1e7; stroke: #75845b; stroke-width: 3; }
.map-venue path { fill: none; stroke: #75845b; stroke-width: 2; }
.stay-map-note {
  position: absolute;
  right: 28px;
  bottom: 18px;
  max-width: 430px;
  margin: 0;
  color: rgba(32, 32, 31, .6);
  font-family: var(--font-label);
  font-size: 9px;
  line-height: 1.5;
  text-align: right;
}
.stay-location-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(32,32,31,.18);
}
.stay-location-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(32,32,31,.14);
}
.stay-location-list span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font: 300 9px var(--font-label);
}
.stay-location-list h4 { margin: 0 0 4px; font: 400 22px/1.05 var(--font-display); }
.stay-location-list p { margin: 0; font: 300 11px/1.55 var(--font-label); }
.stay-location-list a {
  align-self: start;
  padding-top: 5px;
  color: var(--ink);
  font: 300 10px var(--font-label);
  letter-spacing: .08em;
  text-underline-offset: 5px;
  text-transform: uppercase;
}
.neighbourhood-guide {
  margin-bottom: 55px;
  padding: 0;
}
.neighbourhood-guide .eyebrow { margin: 0 0 14px; color: #bd7f68; }
.neighbourhood-guide > p:last-child { max-width: none; margin: 0; color: rgba(244,239,229,.7); font-size: clamp(9px, .9vw, 13px); white-space: nowrap; }
.neighbourhood-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 var(--space-xl);
  padding: 0;
  list-style: none;
}
.neighbourhood-list li {
  min-height: 260px;
  display: block;
  background: rgba(244,239,229,.045);
}
.neighbourhood-list li + li { border-left: 1px solid rgba(244,239,229,.22); }
.neighbourhood-list a {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  text-decoration: none;
  transition: background .25s;
}
.neighbourhood-list a:hover { background: rgba(255,255,255,.045); }
.neighbourhood-list span { color: #bd7f68; font-size: 10px; }
.neighbourhood-list div { margin-top: auto; }
.neighbourhood-list h3 { margin: 0 0 12px; font: 400 28px var(--font-display); }
.neighbourhood-list p { margin: 0; color: rgba(244,239,229,.7); font-size: 13px; }
.neighbourhood-list b { margin-top: 18px; color: rgba(244,239,229,.8); font-size: 9px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; }
.accommodation-heading {
  padding-bottom: 25px;
}
.accommodation-heading .eyebrow { margin: 0; color: #bd7f68; }
.stay-list { border-top: 1px solid rgba(244,239,229,.45); }
.stay-card {
  display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 30px;
  padding: 32px 10px; border-bottom: 1px solid rgba(244,239,229,.45); text-decoration: none;
  transition: padding .25s, background .25s;
}
.stay-card:hover { padding-left: 25px; background: rgba(255,255,255,.04); }
.stay-number { color: #bd7f68; }
.stay-card h3 { margin: 0 0 6px; font-family: var(--font-display); font-size: clamp(27px, 3vw, 40px); font-weight: 400; }
.stay-card p { margin: 0; color: rgba(244,239,229,.7); font: 300 14px/1.65 var(--font-label); }
.stay-card > span:last-child { text-transform: uppercase; font-size: 10px; letter-spacing: .1em; }
.fine-print { margin: 25px 0 0; color: rgba(244,239,229,.55); font-size: 14px; }
.kamakura-favourites {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(244,239,229,.28);
}
.recommendations-heading {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  margin-bottom: 46px;
}
.recommendations-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  color: #bd7f68;
}
.recommendations-heading h2 { margin: 0; }
.recommendations-heading > p:last-child {
  max-width: 900px;
  margin: 24px 0 0;
  color: rgba(244,239,229,.7);
  font-family: var(--font-label);
  font-size: 14px;
  line-height: 1.75;
}
.recommendation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}
.recommendation-card {
  min-width: 0;
  border-bottom: 1px solid rgba(244,239,229,.28);
}
.recommendation-card button {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--paper);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.recommendation-card button::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(23,22,20,.78));
  pointer-events: none;
}
.recommendation-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .55s ease, filter .35s ease;
}
.recommendation-card button:hover img { transform: scale(1.018); }
.recommendation-card button:focus-visible { outline: 1px solid var(--paper); outline-offset: 5px; }
.recommendation-card button > span {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: end;
}
.recommendation-card b { color: #e3aa91; font: 300 10px var(--font-label); }
.recommendation-card strong { font: 400 clamp(25px, 2.7vw, 38px)/1.05 var(--font-display); }
.recommendation-card i {
  font: normal 300 24px/1 var(--font-label);
  transition: transform .25s ease;
}
.recommendation-card button[aria-expanded="true"] i { transform: rotate(45deg); }
.recommendation-detail {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 20px 4px 24px;
}
.recommendation-detail[hidden] { display: none; }
.recommendation-detail p { margin: 0; color: rgba(244,239,229,.72); font: 300 13px/1.65 var(--font-label); }
.recommendation-detail a {
  color: var(--paper);
  font: 300 10px var(--font-label);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

@media (min-width: 901px) {
  .stay-map {
    min-height: 500px;
    height: 500px;
  }
  .stay-map-copy {
    height: 500px;
    padding: 24px 34px 20px;
  }
  .stay-map-copy .eyebrow { margin-bottom: 12px; }
  .stay-map-copy h3 { font-size: clamp(40px, 3.4vw, 52px); }
  .stay-map-copy > p:not(.eyebrow):not(.stay-map-key) {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.55;
  }
  .stay-location-list { margin-top: 14px; }
  .stay-location-list li {
    padding: 8px 0;
    gap: 10px;
  }
  .stay-location-list span {
    width: 22px;
    height: 22px;
    font-size: 8px;
  }
  .stay-location-list h4 { font-size: 19px; }
  .stay-location-list p { font-size: 11px; line-height: 1.4; }
  .stay-map-key { margin-top: 10px; }
  .stay-map-art {
    height: 500px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .stay-map-art svg { height: 484px; }
}

.explore { background: var(--paper); }
.explore-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.explore-card {
  min-height: 310px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background .25s, color .25s;
}
.explore-card:hover { background: var(--ink); color: var(--paper); }
.explore-card > span { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }
.explore-card h3 { margin: auto 0 18px; font-family: var(--font-display); font-size: clamp(32px, 4vw, 50px); font-weight: 400; }
.explore-card p { max-width: 480px; margin-bottom: 25px; color: var(--muted); font-size: 12px; }
.explore-card:hover p { color: rgba(244,239,229,.7); }
.explore-card b { font-size: 10px; font-weight: 400; text-transform: uppercase; letter-spacing: .1em; }

.album { padding-left: 3vw; padding-right: 3vw; }
.album .section-heading { margin-left: 4vw; }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 12px; }
.photo { border: 0; padding: 0; background: none; cursor: zoom-in; overflow: hidden; }
.photo-grid .photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) sepia(.1); transition: filter .4s, transform .5s; }
.photo-grid .photo:hover img { filter: none; transform: scale(1.025); }
.photo.tall { grid-row: span 2; }
.photo.wide { grid-column: span 2; }

.questions { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; background: #d9cdbb; }
.questions > * { min-width: 0; }
.faq-list { border-top: 1px solid var(--ink); }
details { border-bottom: 1px solid var(--ink); padding: 26px 0; }
summary { list-style: none; cursor: pointer; font-family: var(--font-display); font-size: 24px; display: flex; justify-content: space-between; gap: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-family: var(--font-body); font-size: 18px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 720px; margin: 18px 50px 5px 0; color: #54514c; font: 300 14px/1.7 var(--font-label); }
details p a { text-underline-offset: 4px; }

.rsvp {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(480px, 1.28fr);
  gap: clamp(56px, 8vw, 128px);
  max-width: 1480px;
  margin: 0 auto;
}
.rsvp-intro { max-width: 520px; }
.rsvp-intro h2 { font-size: clamp(48px, 5.5vw, 76px); }
.rsvp-intro > p:last-child { font: 300 14px/1.8 var(--font-label); }
#rsvp-form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 20px; }
.full { grid-column: 1 / -1; }
.field label, fieldset legend { display: block; margin-bottom: 9px; text-transform: uppercase; font-size: 10px; letter-spacing: .13em; }
input[type="text"], select, textarea {
  width: 100%; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; padding: 13px 0;
  background: transparent; color: var(--ink); outline: none;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
.attendance { border: 0; padding: 0; margin: 0; display: flex; gap: 12px; }
.attendance legend { width: 100%; }
.attendance label { flex: 1; cursor: pointer; }
.attendance input { position: absolute; opacity: 0; }
.attendance span { display: block; padding: 14px; text-align: center; border: 1px solid var(--ink); font-size: 12px; transition: .2s; }
.attendance input:checked + span { background: var(--ink); color: var(--paper); }
.choice-group { margin-top: 6px; }
.attending-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 20px;
}
.attending-details[hidden] { display: none; }
.submit-button {
  border: 0; padding: 17px 25px; background: var(--ink); color: var(--paper); cursor: pointer;
  text-transform: uppercase; letter-spacing: .12em; font-size: 11px;
}
.submit-button:hover { background: var(--accent); }
.form-note { color: var(--muted); font-size: 10px; }
.rsvp-success { padding: 60px; border: 1px solid var(--ink); align-self: start; }
.rsvp-success h3 { font-family: var(--font-display); font-size: 38px; font-weight: 400; }
.rsvp-success button { border: 0; border-bottom: 1px solid; background: none; padding: 0 0 4px; cursor: pointer; }

footer { padding: 80px var(--page-gutter) 50px; background: var(--ink); color: var(--paper); text-align: center; }
.footer-japanese { letter-spacing: .3em; font-size: 11px; opacity: .65; }
.footer-script {
  font-family: var(--font-script);
  font-size: 40px;
  font-style: normal;
  line-height: .72;
  margin: 26px 0 32px;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
footer a { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
footer p:nth-child(3) { font-family: var(--font-label); font-weight: 300; }
footer a { display: inline-block; margin-top: 30px; }

.lightbox { width: min(1000px, 90vw); border: 0; padding: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(20, 18, 16, .92); }
.lightbox img { max-height: 84vh; margin: auto; object-fit: contain; }
.lightbox button { position: fixed; right: 3vw; top: 3vw; color: white; border: 0; background: none; text-transform: uppercase; letter-spacing: .12em; cursor: pointer; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root {
    --page-gutter: clamp(24px, 5vw, 48px);
    --section-space: clamp(84px, 12vw, 112px);
  }
  .site-header { gap: 25px; }
  .view-nav { gap: 18px; overflow-x: auto; scrollbar-width: none; }
  .view-nav::-webkit-scrollbar { display: none; }
  .view-nav a { flex: 0 0 auto; white-space: nowrap; }
  .hero { grid-template-columns: 1fr; padding-top: 136px; }
  .hero-copy, .hero-photo, .hero-footer { grid-column: 1; }
  .hero-copy, .hero-photo { grid-row: auto; }
  .hero-copy { align-self: center; }
  .hero h1 { font-size: clamp(78px, 19vw, 128px); margin-top: 40px; }
  .hero h1 span { display: block; margin: 0; line-height: .6; }
  .hero-photo { margin: 12px auto 0; max-width: 680px; }
  .hero-photo img { height: auto; min-height: 0; }
  .scroll-cue { display: none; }
  .story, .venue, .questions, .rsvp, .dress-code { grid-template-columns: 1fr; }
  .story-copy, .questions .section-heading, .rsvp-intro { max-width: 720px; }
  .dress-code .section-heading { margin-bottom: 20px; }
  .attire-illustration { max-width: 760px; }
  .moments-heading { grid-template-columns: 1fr; }
  .moments-heading > p:last-child { margin-top: 24px; }
  .moments-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: minmax(240px, 42vw);
    grid-auto-flow: row;
  }
  .moment-photo-wide,
  .moment-photo-landscape { grid-column: 1 / -1; grid-row: span 1; }
  .moment-photo-tall,
  .moment-photo-portrait { grid-row: span 2; }
  .access-options { grid-template-columns: 1fr; }
  .access-option { min-height: 270px; }
  .stay-map { display: block; min-height: 0; }
  .stay-map-copy { padding: 40px 32px; border-right: 0; border-bottom: 1px solid rgba(32, 32, 31, .16); }
  .stay-map-copy h3 { font-size: 44px; }
  .stay-map-art { padding: 24px 18px 28px; overflow: hidden; }
  .stay-map-art svg { width: 100%; max-width: 560px; height: auto; aspect-ratio: 860 / 760; margin: 0 auto; }
  .map-stop .map-jp, .map-venue .map-jp, .map-airport .map-jp { font-size: 18px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  :root {
    --page-gutter: 24px;
    --section-space: 72px;
  }
  body { font-size: 14px; line-height: 1.68; }
  .site-header {
    min-height: 64px;
    padding: 0;
    display: block;
    background: rgba(244, 239, 229, .96);
  }
  .monogram { display: none; }
  .view-nav {
    width: 100%;
    min-height: 64px;
    padding: 0 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: visible;
  }
  .view-nav a {
    min-width: 0;
    min-height: 64px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    text-align: center;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: .08em;
  }
  .view-nav .nav-extra { display: none; }
  .view-nav a.active::after { bottom: 10px; width: 20px; }
  .mobile-section-nav { display: none !important; }
  .site-view:not([data-view="main"]) { padding-top: 64px; }
  section[id], figure[id], .accommodation-heading[id] { scroll-margin-top: 74px; }
  .section-pad { padding: var(--section-space) var(--page-gutter); }
  h2 {
    margin-bottom: 28px;
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.03;
  }
  .section-heading { margin-bottom: 46px; }
  .eyebrow { margin-bottom: 14px; font-size: 12px; letter-spacing: .14em; }
  .hero {
    padding: 118px 20px 40px;
    min-height: auto;
  }
  .hero-footer { display: grid; grid-template-columns: minmax(0, 1fr); width: 100%; justify-items: center; text-align: center; }
  .hero-footer > * { width: 100%; justify-self: center; text-align: center; }
  .hero-footer span:last-child { order: -1; }
  .hero h1 { font-size: clamp(78px, 25vw, 104px); line-height: .72; }
  .hero-photo { width: 100%; }
  .hero-caption { padding-top: 18px; }
  .hero-thought { font-size: 19px; }
  .story, .venue { gap: 50px; }
  .story-image img, .venue-image img { height: auto; aspect-ratio: 4 / 5; }
  .story-image img { object-position: 65% center; }
  .story-copy p { color: rgba(244, 239, 229, .82); }
  .signature { font-size: 46px; }
  .moments { padding-top: var(--section-space); }
  .moments-heading > p:last-child { margin-top: 18px; }
  .moments-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 24px;
  }
  .moment-photo,
  .moment-photo-wide,
  .moment-photo-tall,
  .moment-photo-landscape,
  .moment-photo-portrait {
    display: block;
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .moment-photo-tall { aspect-ratio: 4 / 5; }
  .moment-photo-landscape { aspect-ratio: 4 / 3; }
  .moment-photo-portrait { aspect-ratio: 4 / 5; }
  .moment-photo img { object-position: center; }
  .venue-content { margin-top: 30px; }
  .venue-watercolor {
    width: calc(100% + 24px);
    max-width: none;
    margin: 0 -12px 12px;
  }
  .venue-content > p {
    max-width: 34rem;
    font-size: 14px;
    line-height: 1.65;
  }
  .timeline li { grid-template-columns: 85px 1fr; gap: 18px; }
  .timeline li { padding: 25px 0; }
  .timeline h3 { font-size: 25px; line-height: 1.12; }
  .timeline p { font-size: 14px; }
  .station-start { grid-template-columns: auto 1fr; padding: 22px; }
  .access-option { min-height: 250px; }
  .access-map-link { text-align: left; }
  .schedule-day { margin-left: 0; }
  .timeline-day-two li { grid-template-columns: 1fr; gap: 4px; }
  .timeline-day-two time { display: block; margin-bottom: 6px; }
  .stay-map { display: block; min-height: 0; }
  .stay-map-copy {
    min-height: 0;
    padding: 32px 28px 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(32, 32, 31, .16);
  }
  .stay-map-copy h3 { font-size: 46px; }
  .stay-map-copy > p:not(.eyebrow):not(.stay-map-key) { margin-top: 24px; font-size: 12px; }
  .stay-map-key { margin-top: 26px; }
  .stay-location-list { margin-top: 24px; }
  .stay-location-list li { grid-template-columns: 28px 1fr; }
  .stay-location-list a { grid-column: 2; padding-top: 0; }
  .stay-location-list p { font-size: 11px; }
  .stay-map-art { padding: 8px 0 30px; overflow: hidden; }
  .stay-map-art svg { width: 100%; max-width: 480px; height: auto; aspect-ratio: 860 / 760; margin: 0 auto; }
  .map-stop text { font-size: 30px; }
  .map-venue text, .map-airport text { font-size: 28px; }
  .map-stop .map-jp, .map-venue .map-jp, .map-airport .map-jp { font-size: 22px; }
  .stay-map-note { right: 20px; bottom: 14px; left: 20px; max-width: none; text-align: left; }
  .recommendations-heading { grid-template-columns: 1fr; gap: 20px; }
  .recommendations-heading .eyebrow { grid-column: 1; }
  .recommendations-heading > p:last-child { font-size: 14px; }
  .recommendation-list { grid-template-columns: 1fr; gap: 24px; }
  .recommendation-card button > span { right: 16px; bottom: 16px; left: 16px; }
  .recommendation-card strong { font-size: 28px; }
  .recommendation-detail { grid-template-columns: 1fr; gap: 12px; }
  .stay-card { grid-template-columns: 28px 1fr; gap: 14px; padding: 28px 0; }
  .stay-card h3 { font-size: 28px; line-height: 1.08; }
  .stay-card p, .neighbourhood-list p { font-size: 14px; }
  .stay-card > span:last-child { display: none; }
  .photo-grid { grid-auto-rows: 170px; }
  .explore-grid { grid-template-columns: 1fr; }
  .explore-card { min-height: 270px; }
  .photo.tall { grid-row: span 2; }
  .photo.wide { grid-column: span 2; }
  .questions .section-heading { margin-bottom: 10px; }
  summary { font-size: 22px; line-height: 1.2; }
  details p { margin-right: 0; font-size: 14px; }
  #rsvp-form { grid-template-columns: 1fr; }
  #rsvp-form > * { grid-column: 1; }
  .attendance { flex-direction: column; }
  .rsvp { gap: 52px; }
  .rsvp-intro h2 { font-size: clamp(44px, 12.5vw, 58px); }
  .attending-details { grid-template-columns: 1fr; }
  .rsvp-success { padding: 35px 25px; }
  footer { padding-top: 64px; }
  .footer-script { font-size: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
