:root {
  --moss: #202f55;
  --moss-dark: #202f55;
  --moss-light: #7281a3;
  --paper: #f5f6f8;
  --paper-deep: #e9ecf2;
  --ink: #1c2436;
  --line: rgba(32, 47, 85, .18);
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  font-feature-settings: "palt" 1;
}
a { color: inherit; text-decoration: none; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(24px, 5vw, 76px);
  color: var(--white);
}
.brand, .footer-brand { display: flex; align-items: center; }
.brand-logo { display: block; width: 86px; height: 86px; object-fit: contain; border-radius: 4px; }
.footer-logo { display: block; width: 118px; height: 118px; object-fit: contain; border-radius: 5px; }
.site-header nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); font-size: 12px; letter-spacing: .08em; }
.site-header nav a { position: relative; }
.site-header nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: currentColor; transition: width .25s ease; }
.site-header nav a:hover::after { width: 100%; }
.menu-button { display: none; width: 42px; height: 42px; padding: 11px 8px; border: 0; background: transparent; color: inherit; cursor: pointer; }
.menu-button span { display: block; width: 100%; height: 1px; margin: 7px 0; background: currentColor; transition: transform .2s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero { min-height: 780px; display: grid; grid-template-columns: 58% 42%; background: var(--moss-dark); color: var(--white); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 140px clamp(28px, 5vw, 76px) 90px; }
.eyebrow { margin: 0 0 26px; font-size: 10px; font-weight: 700; letter-spacing: .27em; }
.hero h1, .intro h2, .section-heading h2, .place h2, .reservation h2 {
  margin: 0;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.035em;
}
.hero h1 { white-space: nowrap; font-size: clamp(27px, 3vw, 46px); letter-spacing: -.05em; }
.hero-lead { max-width: 630px; margin: 34px 0 0; color: rgba(255,255,255,.76); font-size: 14px; line-height: 2.05; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 45px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 52px; padding: 0 25px; border: 1px solid transparent; font-size: 12px; font-weight: 600; letter-spacing: .04em; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--white); color: var(--moss-dark); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); font-size: 11px; }
.text-link:hover { color: var(--white); }
.hero-visual { position: relative; min-height: 680px; margin: 0; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(32,47,85,.28), transparent 30%); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual figcaption { position: absolute; z-index: 2; right: 34px; bottom: 32px; display: flex; align-items: flex-end; gap: 16px; color: var(--white); }
.hero-visual figcaption span { font-size: 44px; font-weight: 300; line-height: 1; }
.hero-visual figcaption p { margin: 0; font-size: 9px; line-height: 1.5; letter-spacing: .17em; }

.intro { display: grid; grid-template-columns: 1fr 2.2fr; gap: 40px; max-width: 1180px; margin: 0 auto; padding: 135px 40px; border-bottom: 1px solid var(--line); }
.section-index { margin: 9px 0 0; color: var(--moss-light); font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.intro h2, .section-heading h2, .place h2, .reservation h2 { font-size: clamp(30px, 3.6vw, 48px); }
.intro div > p { max-width: 690px; margin: 34px 0 0; font-size: 14px; line-height: 2.15; }

.experience { max-width: 1260px; margin: 0 auto; padding: 130px 40px 150px; }
.section-heading { max-width: 760px; margin-bottom: 62px; }
.section-heading .eyebrow, .place .eyebrow { color: var(--moss-light); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-card { position: relative; min-height: 420px; padding: 42px; border: 1px solid var(--line); background: rgba(255,255,255,.25); }
.service-card-dark { border-color: var(--moss); background: var(--moss); color: var(--white); }
.service-number { position: absolute; top: 30px; right: 32px; font-size: 38px; font-weight: 300; opacity: .2; }
.service-icon { display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 80px; border: 1px solid currentColor; border-radius: 50%; }
.service-icon svg { width: 25px; height: 25px; }
.service-card h3 { margin: 0 0 22px; font-size: 25px; font-weight: 600; letter-spacing: -.02em; }
.service-card p { max-width: 480px; margin: 0; font-size: 13px; line-height: 2; opacity: .78; }
.service-card small { position: absolute; left: 42px; bottom: 35px; font-size: 8px; letter-spacing: .2em; opacity: .55; }

.place { display: grid; grid-template-columns: 1.35fr .65fr; min-height: 650px; background: var(--paper-deep); }
.place-copy { padding: 120px clamp(40px, 8vw, 130px); }
.place-copy > p:not(.eyebrow) { max-width: 660px; margin: 34px 0 45px; font-size: 14px; line-height: 2.05; }
.place dl { margin: 0; padding-top: 26px; border-top: 1px solid var(--line); }
.place dl div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.place dt, .place dd { margin: 0; font-size: 12px; line-height: 1.7; }
.place dt { font-weight: 700; }
.place-panel { display: flex; flex-direction: column; justify-content: center; padding: 65px; background: var(--moss); color: var(--white); }
.place-panel p { margin: 0 0 5px; font-size: 13px; font-weight: 600; letter-spacing: .14em; }
.place-panel strong { font-size: clamp(58px, 8vw, 110px); font-weight: 600; line-height: .9; letter-spacing: -.07em; writing-mode: vertical-rl; }
.place-panel span { align-self: flex-end; margin-top: 25px; font-size: 9px; line-height: 1.6; letter-spacing: .2em; }

.reservation { padding: 130px 30px; text-align: center; background: var(--moss-dark); color: var(--white); }
.reservation > p:not(.eyebrow) { margin: 24px 0 36px; color: rgba(255,255,255,.67); font-size: 13px; }
.button-light { border-color: rgba(255,255,255,.55); background: transparent; color: var(--white); }
.button-disabled { cursor: default; opacity: .55; }
.button-disabled:hover { transform: none; }

footer { display: grid; grid-template-columns: 1fr auto; gap: 40px; padding: 65px clamp(25px, 7vw, 105px) 34px; background: #141f3b; color: var(--white); }
.footer-links { display: flex; align-items: center; gap: 26px; color: rgba(255,255,255,.65); font-size: 10px; }
.franchise-note { grid-column: 1 / -1; max-width: 800px; margin: 40px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 9px; line-height: 1.8; }
.copyright { grid-column: 1 / -1; margin: 0; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .12em; }

@media (max-width: 900px) {
  .menu-button { position: relative; z-index: 12; display: block; }
  .site-header nav { position: absolute; z-index: 11; top: 0; right: 0; display: flex; align-items: flex-start; flex-direction: column; width: min(78vw, 340px); min-height: 100vh; padding: 110px 35px; background: var(--moss-dark); box-shadow: -20px 0 50px rgba(0,0,0,.18); transform: translateX(105%); transition: transform .25s ease; }
  .site-header nav.is-open { transform: translateX(0); }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 720px; padding-top: 135px; }
  .hero-visual { min-height: 560px; }
  .intro { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .place { grid-template-columns: 1fr; }
  .place-panel { min-height: 330px; flex-direction: row; align-items: center; justify-content: space-between; }
  .place-panel strong { writing-mode: initial; }
  footer { grid-template-columns: 1fr; }
  .franchise-note, .copyright { grid-column: auto; }
}

@media (max-width: 580px) {
  .site-header { padding: 16px 20px; }
  .brand-logo { width: 70px; height: 70px; }
  .hero-copy { min-height: 680px; padding: 130px 24px 70px; }
  .hero h1 { font-size: clamp(18px, 5.7vw, 26px); letter-spacing: -.06em; }
  .hero-lead br { display: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-visual { min-height: 420px; }
  .intro { padding: 90px 24px; }
  .experience { padding: 90px 18px; }
  .service-card { min-height: 440px; padding: 30px; }
  .service-icon { margin-bottom: 72px; }
  .service-card small { left: 30px; }
  .place-copy { padding: 90px 24px; }
  .place dl div { grid-template-columns: 1fr; gap: 5px; }
  .place-panel { min-height: 270px; padding: 35px 24px; }
  .place-panel strong { font-size: 56px; }
  .reservation { padding: 95px 24px; }
  .footer-links { align-items: flex-start; flex-direction: column; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
