/* Hallmark · pre-emit critique: P5 H4 E4 S4 R5 V4 */
:root {
  --color-paper: #f5ecdc;
  --color-paper-soft: #fbf6ec;
  --color-grain: #e7d4b8;
  --color-wood: #8f633f;
  --color-brown: #4f3422;
  --color-ink: #24201c;
  --color-muted: #7b6a5c;
  --color-line: rgba(79, 52, 34, 0.18);
  --color-white-warm: #fffaf1;
  --shadow-photo: 0 28px 80px rgba(57, 36, 20, 0.18);
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  --font-sans: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  --font-en: Georgia, "Times New Roman", serif;
  --space-page: clamp(20px, 5vw, 72px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-width: 0;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background:
    linear-gradient(rgba(245, 236, 220, 0.9), rgba(245, 236, 220, 0.9)),
    url("../images/background.png") center top / 100% auto repeat-y;
  line-height: 1.9;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--space-page);
  color: var(--color-ink);
  background: linear-gradient(to bottom, rgba(251, 246, 236, 0.82), rgba(251, 246, 236, 0));
}

.brand {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-mark {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.brand-sub,
.nav a,
.eyebrow,
.scroll-cue,
.footer small {
  font-family: var(--font-en);
  letter-spacing: 0.14em;
}

.brand-sub {
  font-size: 10px;
  color: var(--color-muted);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 12px;
}

.nav a {
  color: rgba(36, 32, 28, 0.78);
}

.nav-instagram {
  padding: 8px 14px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.42);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 104px var(--space-page) 34px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 236, 220, 0.1) 0%, rgba(245, 236, 220, 0) 42%),
    linear-gradient(180deg, rgba(245, 236, 220, 0.02) 0%, rgba(245, 236, 220, 0.78) 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  margin-right: auto;
  padding: 28px 0 42px;
}

.kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--color-wood);
  font-size: 12px;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.about h2,
.table h2,
.story-copy h2,
.access h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.hero h1 {
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: 0.08em;
}

.hero-copy p:last-child {
  max-width: 320px;
  margin: 24px 0 0;
  color: var(--color-brown);
  font-size: clamp(13px, 1.2vw, 15px);
}

.scroll-cue {
  position: absolute;
  right: var(--space-page);
  bottom: 32px;
  z-index: 1;
  display: grid;
  gap: 12px;
  justify-items: center;
  color: var(--color-muted);
  font-size: 10px;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 58px;
  background: linear-gradient(var(--color-wood), transparent);
}

.section-pad {
  padding: clamp(88px, 13vw, 176px) var(--space-page);
}

.intro {
  background: var(--color-paper-soft);
}

.intro-inner {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  font-size: clamp(30px, 5.2vw, 68px);
}

.intro p:last-child {
  width: min(620px, 100%);
  margin: 30px auto 0;
  color: var(--color-muted);
}

.about {
  background:
    linear-gradient(rgba(245, 236, 220, 0.76), rgba(245, 236, 220, 0.76)),
    url("../images/background.png") center / cover;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-copy {
  align-self: end;
  padding-bottom: clamp(0px, 5vw, 80px);
}

.about-copy h2,
.table h2,
.story-copy h2,
.access h2 {
  font-size: clamp(30px, 4.6vw, 58px);
}

.about-copy p:last-child {
  margin: 30px 0 0;
  color: var(--color-brown);
}

.about-photo {
  position: relative;
  margin: 0;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-photo);
}

.about-photo figcaption {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 12px;
}

.table {
  background: var(--color-paper);
}

.table-lead {
  width: min(1060px, 100%);
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
}

.table-lead .eyebrow {
  align-self: start;
}

.table-grid {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.table-grid article {
  min-width: 0;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid var(--color-line);
}

.table-grid article:last-child {
  border-right: 0;
}

.table-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--color-wood);
  font-family: var(--font-en);
  font-size: 12px;
}

.table-grid h3 {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
}

.table-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.story-strip {
  min-height: 74svh;
  display: grid;
  align-items: center;
  padding: 90px var(--space-page);
  background:
    linear-gradient(90deg, rgba(36, 32, 28, 0.64), rgba(36, 32, 28, 0.1)),
    url("../images/background.png") center / cover;
  color: var(--color-white-warm);
}

.story-copy {
  width: min(520px, 100%);
}

.story-copy .eyebrow {
  color: rgba(255, 250, 241, 0.7);
}

.story-copy p {
  color: rgba(255, 250, 241, 0.76);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 250, 241, 0.44);
  border-radius: 999px;
  color: var(--color-white-warm);
  font-size: 13px;
}

.access {
  background: var(--color-paper-soft);
}

.access-inner {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.18fr);
  gap: clamp(40px, 8vw, 110px);
}

.access-heading {
  min-width: 0;
}

.access-type {
  color: var(--color-muted);
}

.access-detail {
  min-width: 0;
  display: grid;
  gap: 28px;
}

.access-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--color-line);
}

.access-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-line);
}

.access-list dt {
  color: var(--color-wood);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.access-list dd {
  margin: 0;
  color: var(--color-brown);
}

.map-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 2px;
  background: var(--color-grain);
  box-shadow: 0 20px 52px rgba(57, 36, 20, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(300px, 34vw, 420px);
  border: 0;
  filter: sepia(0.16) saturate(0.82) contrast(0.96);
}

.footer {
  padding: 46px var(--space-page);
  background: var(--color-ink);
  color: var(--color-paper);
  text-align: center;
}

.footer p {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 24px;
}

.footer small {
  color: rgba(245, 236, 220, 0.6);
  font-size: 10px;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .site-header {
    padding: 18px 20px;
  }

  .nav {
    gap: 12px;
    font-size: 10px;
  }

  .nav a:not(.nav-instagram) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 84px 20px 34px;
    align-items: start;
    background:
      linear-gradient(rgba(245, 236, 220, 0.72), rgba(245, 236, 220, 0.92)),
      url("../images/background.png") center / cover;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    width: calc(100% + 40px);
    margin: 0 -20px;
    border-bottom: 1px solid var(--color-line);
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(245, 236, 220, 0) 62%, rgba(245, 236, 220, 0.72) 100%);
  }

  .hero-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero-copy {
    margin-left: 0;
    width: 100%;
    padding: 34px 0 58px;
  }

  .hero-copy p:last-child {
    max-width: 100%;
  }

  .scroll-cue {
    left: 20px;
    right: auto;
    bottom: 24px;
  }

  .scroll-cue::after {
    height: 38px;
  }

  .section-pad {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-layout,
  .table-lead,
  .access-inner {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-bottom: 0;
  }

  .about-photo img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }

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

  .table-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .table-grid article:last-child {
    border-bottom: 0;
  }

  .story-strip {
    min-height: 68svh;
    padding: 72px 20px;
  }

  .access-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .brand-sub {
    display: none;
  }

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

  .hero-copy p:last-child {
    font-size: 14px;
  }

  .intro h2,
  .about-copy h2,
  .table h2,
  .story-copy h2,
  .access h2 {
    font-size: 31px;
  }
}
