:root {
  --navy: #044271;
  --navy-dark: #032c4a;
  --navy-darker: #021c30;
  --gold: #cc9a44;
  --gold-light: #e0b768;
  --ink: #10202f;
  --paper: #ffffff;
  --paper-alt: #f5f7f9;
  --line: #e2e6ea;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  background: var(--navy-darker);
}

h1, h2 {
  font-family: 'Lexend', sans-serif;
  margin: 0;
}

a { text-decoration: none; }

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

/* --- Top bar --- */
.topbar {
  background: var(--navy-darker);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.topbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar__logo { width: 36px; height: 36px; border-radius: 50%; }
.topbar__name {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  font-size: 15px;
}

/* --- Hero --- */
.hero {
  position: relative;
  color: #fff;
  padding: 100px 24px 116px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -40px;
  background-image: url('assets/hero-main.jpg');
  background-size: cover;
  background-position: center 55%;
  filter: brightness(0.65) contrast(1.08) saturate(0.95);
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 26%, rgba(224,183,104,0.16) 0%, transparent 55%),
    linear-gradient(180deg, rgba(2,17,31,0.62) 0%, rgba(3,25,43,0.8) 45%, rgba(2,14,25,0.95) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.hero__logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 20px 40px rgba(0,0,0,0.45);
  animation: heroRise 0.9s ease-out both, logoGlow 4.5s ease-in-out 0.9s infinite;
}
.hero__eyebrow {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  animation: heroRise 0.9s ease-out 0.12s both;
}
.hero__title {
  font-size: clamp(40px, 6.5vw, 108px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  animation: heroRise 0.9s ease-out 0.22s both;
}
.hero__kanji {
  margin: 14px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: rgba(255,255,255,0.65);
  animation: heroRise 0.9s ease-out 0.32s both;
}
.hero__place {
  margin: 6px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 30px);
  letter-spacing: 0.55em;
  color: var(--gold-light);
  text-indent: 0.55em;
  animation: heroRise 0.9s ease-out 0.4s both;
}
.hero__tagline {
  margin: 30px auto 42px;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  animation: heroRise 0.9s ease-out 0.5s both;
}
.hero__content .btn {
  animation: heroRise 0.9s ease-out 0.6s both, btnGlow 3.6s ease-in-out 1.5s infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 12px 28px rgba(204,154,68,0.35); }
  50% { box-shadow: 0 14px 40px rgba(224,183,104,0.65), 0 0 26px 6px rgba(224,183,104,0.4); }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 20px 40px rgba(0,0,0,0.45), 0 0 0 rgba(224,183,104,0); }
  50% { box-shadow: 0 0 0 1px rgba(255,255,255,0.2), 0 20px 40px rgba(0,0,0,0.45), 0 0 30px 4px rgba(224,183,104,0.4); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__logo, .hero__eyebrow, .hero__title, .hero__kanji, .hero__place, .hero__tagline, .hero__content .btn, .btn--gold {
    animation: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 999px;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-darker);
  box-shadow: 0 12px 28px rgba(204,154,68,0.35);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: #fff; }

/* --- CTA strip --- */
.cta-strip {
  position: relative;
  overflow: hidden;
  background: var(--navy-darker);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  padding: 56px 24px;
  text-align: center;
  isolation: isolate;
}
.cta-strip__wave {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
}
.cta-strip p {
  position: relative;
  z-index: 1;
  margin: 0 auto 18px;
  max-width: 560px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 12px rgba(2,15,26,0.6);
}
.cta-strip .btn {
  position: relative;
  z-index: 1;
}

/* --- Info --- */
.info {
  max-width: 1000px;
  margin: 0 auto;
  padding: 72px 24px 40px;
}
.info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.info__card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.info__address {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
}
.info__link {
  display: block;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  padding: 6px 0;
}
.info__link--map { color: var(--gold-light); font-weight: 600; }

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.hours td {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
.hours td:first-child { color: rgba(255,255,255,0.6); }
.hours td:last-child { text-align: right; font-weight: 600; }

.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.social a {
  font-family: 'Lexend', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
}
.social a:hover { color: var(--gold-light); }

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 28px 24px 40px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  background: var(--navy-darker);
}

@media (max-width: 640px) {
  .info__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 72px 20px 88px; }
}

@media (min-width: 1440px) {
  .topbar__inner { max-width: 1320px; }
  .hero { padding: 140px 24px 156px; }
  .hero__content { max-width: 820px; }
  .hero__logo { width: 100px; height: 100px; }
  .hero__tagline { max-width: 560px; font-size: 18px; }
  .btn { padding: 18px 44px; font-size: 16px; }
  .info { max-width: 1200px; padding: 96px 24px 56px; }
  .info__grid { gap: 80px; }
}
