@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

:root {
  --paper: #efe8d7;
  --paper-light: #f8f4e9;
  --ink: #2f372f;
  --muted: #6f756c;
  --line: rgba(47, 55, 47, .22);
  --green: #687b5a;
  --deep-green: #405444;
  --gold: #bd925a;
  --pink: #c98c8e;
  --lavender: #867a9a;
  --shadow: 0 18px 45px rgba(43, 48, 40, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.75;
}

button, input { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

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

.paper-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: 999;
  background-image:
    repeating-radial-gradient(circle at 30% 40%, rgba(60,50,35,.12) 0 1px, transparent 1px 5px);
  background-size: 11px 13px;
  mix-blend-mode: multiply;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 16px;
}

.brand strong {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  letter-spacing: .08em;
}

.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--muted);
}

.global-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
}

.global-nav a {
  position: relative;
  padding: 6px 0;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width .25s ease;
}

.global-nav a:hover::after { width: 100%; }

.menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  position: relative;
}

.menu-button span {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 1px;
  background: var(--ink);
}

.menu-button span:first-child { top: 16px; }
.menu-button span:last-child { top: 24px; }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 610px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 60px;
}

.hero-copy { padding: 60px 0; }

.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .19em;
  color: var(--deep-green);
}

h1, h2, h3 {
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5.2vw, 68px);
  letter-spacing: .03em;
}

.hero h1 em {
  color: var(--deep-green);
  font-style: normal;
}

.hero-text {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 16px;
}

.search-box {
  max-width: 650px;
  padding: 18px;
  background: rgba(248,244,233,.72);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(43,48,40,.06);
}

.search-box label {
  display: block;
  margin-bottom: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.search-row input {
  min-width: 0;
  border: 1px solid var(--ink);
  border-right: 0;
  padding: 13px 14px;
  background: transparent;
  outline: none;
}

.search-row button {
  padding: 0 22px;
  border: 1px solid var(--ink);
  color: var(--paper-light);
  background: var(--ink);
  cursor: pointer;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.search-tags button {
  border: 0;
  padding: 2px 0;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.hero-map {
  height: 470px;
  position: relative;
  overflow: hidden;
  border-radius: 48% 52% 47% 53% / 55% 42% 58% 45%;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 30%, rgba(255,255,255,.7), transparent 22%),
    linear-gradient(140deg, rgba(183,170,128,.5), rgba(112,138,115,.4));
  box-shadow: var(--shadow);
}

.hero-map::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: inherit;
}

.sun {
  position: absolute;
  right: 58px;
  top: 52px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(47,55,47,.35);
  box-shadow: inset 0 0 0 14px rgba(255,255,255,.12);
}

.map-shape {
  position: absolute;
  opacity: .82;
  background: rgba(66,86,67,.58);
  filter: drop-shadow(0 9px 14px rgba(47,55,47,.12));
}

.shape-a {
  width: 210px; height: 150px;
  left: 35px; top: 90px;
  border-radius: 60% 40% 52% 48% / 44% 62% 38% 56%;
  transform: rotate(-16deg);
}

.shape-b {
  width: 170px; height: 225px;
  right: 30px; bottom: 58px;
  border-radius: 40% 60% 40% 60% / 48% 33% 67% 52%;
  transform: rotate(17deg);
  background: rgba(103,82,119,.45);
}

.shape-c {
  width: 128px; height: 95px;
  left: 130px; bottom: 45px;
  border-radius: 65% 35% 55% 45%;
  background: rgba(185,139,102,.6);
}

.route {
  position: absolute;
  border-top: 2px dashed rgba(248,244,233,.8);
  width: 230px;
  height: 110px;
  border-radius: 50%;
}

.route-a { left: 100px; top: 150px; transform: rotate(25deg); }
.route-b { left: 125px; bottom: 80px; transform: rotate(-15deg); }

.map-label {
  position: absolute;
  padding: 4px 7px;
  background: rgba(248,244,233,.82);
  border: 1px solid rgba(47,55,47,.25);
  font-size: 9px;
  letter-spacing: .13em;
}

.label-a { left: 65px; top: 155px; }
.label-b { right: 30px; top: 270px; }
.label-c { left: 100px; bottom: 63px; }

.compass {
  position: absolute;
  left: 43px;
  bottom: 35px;
  text-align: center;
  font-family: serif;
  font-size: 11px;
}

.compass span { font-size: 23px; }

.announcement {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: stretch;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.announcement > div {
  padding: 18px 24px;
}

.announcement > div + div { border-left: 1px solid var(--line); }

.announcement span {
  display: block;
  margin-bottom: 5px;
  color: var(--deep-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.announcement p {
  margin: 0;
  font-size: 13px;
}

.announcement-warning { background: rgba(201,140,142,.12); }

.announcement button {
  width: 55px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.section-heading.compact { margin-bottom: 28px; }

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.destination-card {
  overflow: hidden;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(45,50,42,.07);
}

.destination-art {
  min-height: 285px;
  position: relative;
  overflow: hidden;
}

.elf-art {
  background: linear-gradient(160deg, #b7c0a5, #64765a 72%);
}

.elf-art::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -80px;
  width: 420px;
  height: 300px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  border: 22px solid rgba(241,234,213,.8);
  border-bottom: 0;
}

.moon-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 45px;
  top: 35px;
  border: 1px solid rgba(248,244,233,.7);
  border-radius: 50%;
  box-shadow: inset 0 0 0 14px rgba(248,244,233,.06);
}

.tower {
  position: absolute;
  bottom: 0;
  width: 58px;
  border-radius: 50% 50% 0 0;
  background: rgba(43,58,45,.82);
}

.tower::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -52px;
  transform: translateX(-50%);
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 60px solid rgba(43,58,45,.82);
}

.t1 { height: 150px; left: 160px; }
.t2 { height: 105px; left: 250px; opacity: .72; }

.tree-crown {
  position: absolute;
  bottom: -15px;
  width: 165px;
  height: 170px;
  border-radius: 50%;
  background: rgba(46,69,49,.7);
}

.c1 { left: -35px; }
.c2 { right: -25px; width: 190px; }
.c3 { left: 50px; bottom: -80px; width: 280px; }

.fairy-art {
  background: linear-gradient(145deg, #d8b9b9, #907ca1 72%);
}

.flower {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #efe7c9 0 14%, transparent 15%),
    repeating-conic-gradient(from 0deg, rgba(249,241,218,.8) 0 15deg, transparent 15deg 45deg);
}

.f1 { left: 35px; top: 40px; }
.f2 { right: 50px; top: 55px; transform: scale(.72); }
.f3 { left: 180px; top: 115px; transform: scale(1.25); opacity: .6; }

.stall {
  position: absolute;
  bottom: 0;
  width: 190px;
  height: 115px;
  background: rgba(77,59,79,.82);
}

.stall::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -34px;
  width: 210px;
  height: 42px;
  background: repeating-linear-gradient(90deg, #f0dfc6 0 25px, #ae7a83 25px 50px);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.s1 { left: 20px; }
.s2 { right: -28px; transform: scale(.8); transform-origin: bottom; }

.spark {
  position: absolute;
  color: #fff8d9;
  font-size: 26px;
}

.sp1 { right: 160px; top: 28px; }
.sp2 { left: 120px; top: 150px; }

.destination-body { padding: 28px; }

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.card-meta span {
  padding: 4px 8px;
  border: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}

.destination-body h3 {
  margin-bottom: 13px;
  font-size: 27px;
}

.destination-body > p {
  color: var(--muted);
  font-size: 13px;
}

.destination-body ul {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.destination-body li {
  padding: 9px 0;
  border-bottom: 1px dotted var(--line);
  font-size: 13px;
}

.destination-body li::before {
  content: "◌";
  margin-right: 10px;
  color: var(--gold);
}

.card-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0 9px;
  border: 0;
  border-top: 1px solid var(--ink);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.soon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.soon-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px dashed var(--line);
  background: rgba(248,244,233,.36);
}

.soon-grid span {
  color: var(--gold);
  font-family: serif;
  font-size: 12px;
}

.soon-grid h3 {
  margin: 42px 0 7px;
  font-size: 17px;
}

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

.article-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 26px;
}

.feature-article {
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--deep-green);
  color: var(--paper-light);
}

.article-number {
  font-family: serif;
  font-size: 64px;
  color: rgba(255,255,255,.25);
}

.article-tag {
  font-size: 11px;
  letter-spacing: .12em;
  color: #d8d0b9;
}

.feature-article h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 40px);
}

.feature-article p { color: rgba(248,244,233,.78); }

.feature-article a {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.4);
}

.article-list {
  border-top: 1px solid var(--ink);
}

.article-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.article-list article > span {
  font-family: serif;
  color: var(--gold);
}

.article-list p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .1em;
}

.article-list h3 {
  margin: 0;
  font-size: 17px;
}

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

.notes-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(248,244,233,.45);
}

.note-icon {
  display: inline-grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--deep-green);
}

.notes-grid h3 {
  margin: 28px 0 10px;
  font-size: 18px;
}

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

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

.review-grid blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.review-grid blockquote.odd-review {
  background: rgba(134,122,154,.11);
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  letter-spacing: .12em;
}

.review-grid blockquote p {
  min-height: 100px;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
}

.review-grid footer {
  margin-top: 20px;
  color: var(--muted);
  font-size: 11px;
}

.updates ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.updates li {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.updates time {
  color: var(--gold);
  font-family: serif;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 55px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--ink);
}

.site-footer strong {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
}

.site-footer p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-note { max-width: 430px; text-align: right; }

dialog {
  width: min(680px, calc(100% - 34px));
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 26px 90px rgba(22,25,20,.35);
}

dialog::backdrop { background: rgba(29,34,28,.58); }

.modal-close {
  position: absolute;
  right: 15px;
  top: 13px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-light);
  cursor: pointer;
  font-size: 22px;
}

.modal-inner { padding: 48px 42px 40px; }

.modal-inner .eyebrow { margin-bottom: 9px; }

.modal-inner h2 { font-size: 36px; }

.modal-inner ul {
  padding-left: 20px;
  color: var(--muted);
}

.modal-note {
  margin-top: 25px;
  padding: 17px;
  background: rgba(201,140,142,.12);
  border-left: 3px solid var(--pink);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  z-index: 1000;
  transform: translate(-50%, 20px);
  padding: 12px 18px;
  color: var(--paper-light);
  background: var(--ink);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.search-hit {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  animation: blink 1s ease 2;
}

@keyframes blink {
  50% { outline-color: transparent; }
}

@media (max-width: 850px) {
  .global-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 15px 20px;
    background: var(--paper-light);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .global-nav.open { display: flex; }

  .global-nav a { padding: 12px 0; }

  .menu-button { display: block; }

  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 55px;
  }

  .hero-copy { padding: 55px 0 35px; }

  .hero-map { height: 350px; }

  .announcement { grid-template-columns: 1fr auto; }

  .announcement > div { grid-column: 1; }
  .announcement > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .announcement button { grid-column: 2; grid-row: 1 / span 2; }

  .destination-grid,
  .article-grid { grid-template-columns: 1fr; }

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

  .notes-grid,
  .review-grid { grid-template-columns: 1fr; }

  .section-heading { align-items: flex-start; flex-direction: column; }

  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-note { text-align: left; }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .announcement,
  .section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header { min-height: 74px; }

  .brand strong { font-size: 17px; }
  .brand small { display: none; }

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

  .search-row { grid-template-columns: 1fr; }
  .search-row input { border-right: 1px solid var(--ink); }
  .search-row button { min-height: 46px; margin-top: 7px; }

  .hero-map { height: 290px; border-radius: 38% 62% 55% 45% / 48% 45% 55% 52%; }

  .announcement { margin-bottom: 55px; }

  .section { padding: 62px 0; }

  .destination-art { min-height: 225px; }

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

  .feature-article { min-height: 380px; padding: 28px; }

  .review-grid blockquote p { min-height: auto; }

  .updates li { grid-template-columns: 60px 1fr; }

  .modal-inner { padding: 50px 24px 30px; }
  .modal-inner h2 { font-size: 28px; }
}
