:root {
  --navy: #151d31;
  --navy-2: #202b46;
  --cream: #f4eddf;
  --paper: #fbf7ee;
  --orange: #ef5b35;
  --yellow: #f5bd35;
  --ink: #17191e;
  --line: rgba(23, 25, 30, .18);
  --sans: "Aptos", "Segoe UI", "Yu Gothic UI", "Hiragino Kaku Gothic ProN", sans-serif;
  --jp: "Yu Gothic UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 100; top: 8px; left: 8px; padding: 8px 14px;
  color: #fff; background: var(--navy); transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed; z-index: 50; top: 0; left: 0; width: 100%; height: 82px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw; color: var(--cream); mix-blend-mode: difference;
}
.wordmark { display: flex; align-items: center; gap: 10px; font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.wordmark .mark {
  display: grid; place-items: center; width: 48px; height: 48px; border: 2px solid currentColor;
  border-radius: 50%; font-size: 17px; transform: rotate(-7deg);
}
.global-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.global-nav a { position: relative; }
.global-nav a:not(.nav-reserve)::after {
  content: ""; position: absolute; bottom: -5px; left: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s;
}
.global-nav a:hover::after, .global-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-reserve { padding: 11px 17px; border: 1px solid currentColor; border-radius: 99px; }
.menu-toggle { display: none; border: 0; background: transparent; color: inherit; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: currentColor; transition: .25s; }

.hero {
  min-height: 100svh; position: relative; overflow: hidden; display: flex; align-items: center;
  padding: 130px 8vw 80px; color: var(--cream); background: var(--navy);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 5px 5px; opacity: .35;
}
.hero-copy { position: relative; z-index: 2; max-width: 920px; }
.eyebrow { margin: 0 0 28px; font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.hero h1 {
  margin: 0; font-family: var(--jp); font-size: clamp(54px, 8.3vw, 128px); line-height: .99;
  letter-spacing: -.075em; font-weight: 900;
}
.hero h1 span { display: block; }
.hero h1 span:last-child { color: var(--orange); transform: translateX(8vw); }
.hero-lead { margin: 38px 0 30px; font-size: clamp(15px, 1.5vw, 20px); font-weight: 500; }
.hero-actions, .access-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 28px;
  min-width: 190px; padding: 15px 20px; border: 1px solid transparent; border-radius: 2px;
  font-size: 13px; font-weight: 700; transition: transform .2s, background .2s, color .2s;
}
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-primary { background: var(--orange); color: var(--navy); }
.button-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.button-dark { color: #fff; background: var(--navy); }
.button-outline-light { color: var(--cream); border-color: rgba(255,255,255,.4); }
.hero-sign {
  position: absolute; z-index: 1; top: 14%; right: 5%; width: clamp(210px, 25vw, 390px); aspect-ratio: 1;
  border: 2px solid var(--yellow); border-radius: 50%; transform: rotate(10deg);
  display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--yellow);
}
.sign-question { font-size: clamp(100px, 13vw, 210px); font-weight: 900; line-height: 1; }
.sign-copy { font-size: clamp(14px, 2vw, 26px); font-weight: 900; line-height: 1.15; }
.hero-hours { position: absolute; right: 4vw; bottom: 34px; margin: 0; font-size: 22px; font-weight: 700; }
.hero-hours span { color: var(--yellow); font-size: 10px; letter-spacing: .2em; margin-right: 8px; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orbit-one { width: 55vw; height: 55vw; left: -28vw; bottom: -35vw; }
.orbit-two { width: 22vw; height: 22vw; right: 21vw; bottom: -13vw; }

.section { padding: 120px 7vw; }
.section-label { display: flex; gap: 16px; align-items: center; margin-bottom: 70px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.section-label::after { content: ""; width: 100px; height: 1px; background: currentColor; opacity: .35; }
.section-label span { color: var(--orange); }
.section-label:not(.light) span { color: #a9331b; }
.section-label.light { color: var(--cream); }
.section h2 { margin: 0; font-family: var(--jp); font-size: clamp(42px, 6vw, 90px); line-height: 1.15; letter-spacing: -.055em; }

.section-about { padding-bottom: 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: start; max-width: 1280px; margin: 0 auto; }
.about-copy { padding-top: 22px; max-width: 560px; }
.about-copy .lead { margin-top: 0; font-size: clamp(18px, 2vw, 27px); font-weight: 700; line-height: 1.75; }
.marquee { overflow: hidden; width: calc(100% + 14vw); margin: 110px -7vw 0; padding: 18px 0; color: var(--cream); background: var(--orange); transform: rotate(-2deg); }
.marquee div { width: max-content; white-space: nowrap; font-size: clamp(24px, 4vw, 58px); font-weight: 900; line-height: 1; animation: marquee 22s linear infinite; }
.marquee i { color: var(--yellow); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-menu { color: var(--cream); background: var(--navy); padding-top: 150px; }
.menu-head { display: grid; grid-template-columns: 1.4fr .6fr; gap: 8vw; align-items: end; max-width: 1350px; margin: 0 auto 70px; }
.menu-head h2 { max-width: 850px; }
.menu-head > p { max-width: 440px; color: rgba(244,237,223,.72); }
.menu-cards { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1350px; margin: 0 auto; border: 1px solid rgba(255,255,255,.16); }
.menu-card { min-height: 380px; position: relative; padding: 35px; border-right: 1px solid rgba(255,255,255,.16); overflow: hidden; }
.menu-card:last-child { border: 0; }
.menu-card::after { content: "?"; position: absolute; right: -12px; bottom: -90px; color: rgba(255,255,255,.035); font-size: 300px; font-weight: 900; line-height: 1; }
.menu-card.feature { color: var(--ink); background: var(--yellow); transform: translateY(-18px) rotate(1deg); border: 0; }
.menu-card.feature::after { color: rgba(21,29,49,.08); }
.menu-no { display: block; margin-bottom: 110px; font-size: 11px; letter-spacing: .15em; }
.menu-card h3 { position: relative; z-index: 1; margin: 0; font-size: clamp(26px, 3vw, 44px); line-height: 1; letter-spacing: -.04em; }
.menu-card p { position: relative; z-index: 1; margin: 15px 0; font-family: var(--jp); }
.menu-jp { position: absolute; right: 30px; top: 30px; writing-mode: vertical-rl; font-size: 12px; letter-spacing: .2em; }
.menu-note { max-width: 1350px; margin: 24px auto 0; color: rgba(244,237,223,.55); font-size: 11px; }

.section-gallery { background: var(--paper); }
.gallery-layout { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: 340px 340px; gap: 14px; max-width: 1350px; margin: 0 auto; }
.gallery-title { grid-row: 1 / 3; padding: 40px 30px 40px 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.gallery-title h2 { font-size: clamp(46px, 6.2vw, 92px); }
.gallery-title h2 em { color: var(--orange); font-style: normal; }
.gallery-title p { margin: 34px 0; }
.text-link { padding-bottom: 6px; border-bottom: 1px solid; font-size: 13px; font-weight: 700; }
.gallery-card { position: relative; overflow: hidden; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s; }
.gallery-card:hover, .gallery-card:focus-visible { transform: scale(.98); }
.gallery-card::before, .gallery-card::after { content: ""; position: absolute; border-radius: 50%; }
.gallery-card span, .gallery-card strong, .gallery-card i { position: relative; z-index: 2; }
.gallery-card span { font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.gallery-card strong { font-family: var(--jp); font-size: clamp(34px, 4vw, 60px); line-height: 1; letter-spacing: -.05em; }
.gallery-card i { position: absolute; right: 24px; top: 22px; font-style: normal; }
.card-food { color: var(--cream); background: var(--orange); grid-row: 1 / 3; }
.card-food::before { width: 280px; height: 280px; background: var(--yellow); right: -90px; top: 80px; }
.card-food::after { width: 180px; height: 180px; border: 28px solid var(--navy); left: -60px; bottom: -30px; }
.card-space { color: var(--cream); background: var(--navy-2); }
.card-space::before { width: 220px; height: 50px; border: 20px solid var(--orange); transform: rotate(-28deg); left: 70px; top: 130px; }
.card-night { color: var(--navy); background: var(--yellow); }
.card-night::before { width: 120px; height: 120px; border: 42px solid var(--cream); right: 30px; top: 80px; }

.section-news { color: var(--navy); background: var(--orange); }
.section-news .section-label span { color: var(--navy); }
.news-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10vw; align-items: end; max-width: 1250px; margin: 0 auto; }
.news-grid p { max-width: 470px; margin: 0 0 30px; font-weight: 500; }

.section-access { color: var(--cream); background: var(--navy); }
.access-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; max-width: 1350px; margin: 0 auto; align-items: center; }
.access-copy h2 { margin-bottom: 48px; }
.access-copy dl { margin: 0 0 24px; border-top: 1px solid rgba(255,255,255,.2); }
.access-copy dl div { display: grid; grid-template-columns: 100px 1fr; gap: 15px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.access-copy dt { color: var(--yellow); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.access-copy dd { margin: 0; font-family: var(--jp); font-size: 14px; }
.access-note { color: rgba(244,237,223,.55); font-size: 11px; }
.access-actions { margin-top: 28px; }
.map-graphic { position: relative; min-height: 670px; overflow: hidden; color: var(--navy); background: var(--cream); }
.map-graphic::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(21,29,49,.17) 1px, transparent 1px); background-size: 10px 10px; opacity: .35; }
.map-line { position: absolute; z-index: 1; display: block; height: 16px; background: var(--paper); border: 1px solid rgba(21,29,49,.12); transform-origin: left; }
.line-a { width: 130%; left: -10%; top: 23%; transform: rotate(22deg); }
.line-b { width: 110%; left: 12%; top: 70%; transform: rotate(-38deg); }
.line-c { width: 100%; left: -8%; top: 45%; transform: rotate(-8deg); }
.station, .map-name, .map-pin, .map-open { position: absolute; z-index: 3; }
.station { top: 20%; left: 12%; padding: 7px 12px; color: #fff; background: var(--navy); font-size: 11px; font-weight: 700; }
.map-pin { top: 42%; left: 52%; display: grid; place-items: center; width: 84px; height: 84px; color: #fff; background: var(--orange); border-radius: 50% 50% 50% 0; font-size: 48px; font-weight: 900; transform: rotate(-45deg); box-shadow: 0 12px 30px rgba(21,29,49,.2); }
.map-pin::first-letter { transform: rotate(45deg); }
.map-name { top: 57%; left: 48%; font-family: var(--jp); font-size: 18px; font-weight: 900; line-height: 1.35; }
.map-open { right: 28px; bottom: 24px; font-size: 11px; font-weight: 700; letter-spacing: .12em; }

.section-contact { text-align: center; color: var(--navy); background: var(--yellow); }
.section-contact .eyebrow { margin-bottom: 30px; }
.section-contact h2 { font-size: clamp(70px, 11vw, 170px); line-height: .9; }
.section-contact > p:not(.eyebrow) { margin: 45px auto 28px; font-family: var(--jp); }
.contact-link {
  max-width: 720px; margin: 0 auto; padding: 22px 0; border-top: 1px solid var(--navy); border-bottom: 1px solid var(--navy);
  display: flex; align-items: center; justify-content: space-between; font-size: clamp(24px, 4vw, 56px); font-weight: 700;
}
.contact-link i { font-style: normal; transition: transform .2s; }
.contact-link:hover i { transform: translate(5px, -5px); }

.site-footer { padding: 80px 7vw 30px; color: var(--cream); background: #0d1220; }
.footer-top { min-height: 260px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.17); }
.footer-logo { font-size: clamp(21px, 3vw, 40px); }
.footer-logo .mark { width: 68px; height: 68px; }
.footer-top > p { color: rgba(244,237,223,.65); font-family: var(--jp); }
.instagram-round { width: 140px; height: 140px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: .25s; }
.instagram-round:hover { color: var(--navy); background: var(--yellow); transform: rotate(6deg); }
.instagram-round span { font-size: 12px; font-weight: 700; }
.footer-bottom { padding-top: 28px; display: grid; grid-template-columns: 1fr auto auto; gap: 45px; align-items: center; color: rgba(244,237,223,.5); font-size: 10px; }
.footer-bottom nav { display: flex; gap: 22px; }

@media (max-width: 900px) {
  .site-header { height: 68px; padding: 0 20px; mix-blend-mode: normal; color: var(--cream); background: rgba(21,29,49,.94); backdrop-filter: blur(10px); }
  .wordmark { font-size: 13px; }
  .wordmark .mark { width: 39px; height: 39px; font-size: 14px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .global-nav {
    position: fixed; inset: 0; padding: 105px 8vw 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    color: var(--cream); background: var(--navy); font-size: 28px; transform: translateX(100%); transition: transform .3s;
  }
  .global-nav.open { transform: none; }
  .nav-reserve { margin-top: 15px; font-size: 16px; }
  .hero { align-items: flex-end; padding: 120px 24px 100px; }
  .hero h1 { font-size: clamp(50px, 14vw, 92px); }
  .hero h1 span:last-child { transform: none; }
  .hero-sign { top: 12%; right: -8%; width: 210px; opacity: .68; }
  .hero-hours { right: 24px; }
  .section { padding: 90px 24px; }
  .section-label { margin-bottom: 50px; }
  .about-grid, .menu-head, .news-grid, .access-grid { grid-template-columns: 1fr; gap: 45px; }
  .marquee { width: calc(100% + 48px); margin-left: -24px; margin-right: -24px; }
  .menu-cards { grid-template-columns: 1fr; }
  .menu-card { min-height: 270px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .menu-card.feature { transform: none; }
  .menu-no { margin-bottom: 60px; }
  .gallery-layout { grid-template-columns: 1fr 1fr; grid-template-rows: auto 340px 280px; }
  .gallery-title { grid-column: 1 / 3; grid-row: auto; padding: 0 0 30px; }
  .card-food { grid-row: 2 / 4; }
  .map-graphic { min-height: 480px; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top > p { grid-column: 1 / 2; }
  .instagram-round { grid-column: 2; grid-row: 1 / 3; }
  .footer-bottom { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 13vw; letter-spacing: -.08em; }
  .hero-lead { margin-top: 28px; }
  .button { min-width: 0; width: 100%; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { padding: 13px 14px; gap: 8px; font-size: 11px; }
  .section { padding-left: 20px; padding-right: 20px; }
  .section h2 { font-size: 11vw; }
  .gallery-layout { display: grid; grid-template-columns: 1fr; grid-template-rows: auto repeat(3, 270px); }
  .gallery-title, .card-food { grid-column: auto; grid-row: auto; }
  .access-copy dl div { grid-template-columns: 80px 1fr; }
  .map-graphic { min-height: 400px; }
  .map-pin { width: 66px; height: 66px; font-size: 36px; }
  .footer-top { display: flex; flex-direction: column; align-items: flex-start; }
  .instagram-round { align-self: flex-end; width: 110px; height: 110px; }
  .footer-bottom nav { flex-wrap: wrap; }
}

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