:root {
  --ink: #172126;
  --muted: #617077;
  --line: #d9e2e0;
  --paper: #fbfcfb;
  --soft: #eef5f2;
  --blue: #133f63;
  --blue-deep: #0d2e47;
  --green: #7f9f92;
  --gold: #b99558;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(19, 63, 99, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 251, 0.92);
  border-bottom: 1px solid rgba(217, 226, 224, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  line-height: 1.1;
}

.brand-mark {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  letter-spacing: 0;
}

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

.nav {
  display: flex;
  gap: clamp(12px, 2.6vw, 30px);
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blue-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 46, 71, 0.82), rgba(13, 46, 71, 0.38) 48%, rgba(13, 46, 71, 0.06)),
    linear-gradient(0deg, rgba(13, 46, 71, 0.42), rgba(13, 46, 71, 0));
}

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

.hero-copy {
  position: relative;
  max-width: 780px;
  padding: clamp(74px, 11vw, 150px) clamp(22px, 7vw, 96px);
  color: var(--white);
}

.hero .eyebrow {
  color: #f4d889;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}

.eyebrow,
.section-label,
.menu-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.45;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.3;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.button.light.primary {
  color: var(--blue-deep);
  background: var(--white);
  border-color: var(--white);
}

.button.light.secondary {
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.section {
  padding: clamp(70px, 10vw, 126px) clamp(22px, 6vw, 88px);
}

.concerns {
  background: var(--white);
  text-align: center;
}

.concern-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 880px;
  margin: 28px auto 0;
}

.concern-list span {
  min-width: 112px;
  padding: 12px 18px;
  color: var(--blue-deep);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 0.94fr);
}

.care {
  background: linear-gradient(180deg, var(--paper), var(--soft));
}

.care p,
.venue p,
.profile p,
.section-heading p,
.info-item p {
  color: var(--muted);
}

.image-frame,
.profile-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-frame img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.menu-section {
  background: var(--white);
}

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

.section-heading p {
  max-width: 420px;
  margin-bottom: 18px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-card.featured,
.menu-card.online {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
}

.menu-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-card.featured p,
.menu-card.online p {
  color: rgba(255, 255, 255, 0.78);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.menu-card.featured .price-row,
.menu-card.online .price-row {
  border-color: rgba(255, 255, 255, 0.22);
}

.price-row span {
  color: var(--green);
  font-weight: 700;
}

.price-row strong {
  font-size: 1.45rem;
  white-space: nowrap;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: var(--soft);
}

.gallery img {
  height: clamp(280px, 42vw, 560px);
  object-fit: cover;
  border-radius: 8px;
}

.gallery img:first-child {
  object-position: center center;
}

.gallery img:nth-child(2) {
  object-position: center center;
}

.venue {
  background: var(--paper);
}

.venue-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center bottom;
}

.profile {
  background: var(--white);
  display: grid;
  gap: 34px;
}

.profile-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 40%;
}

.profile-photo {
  width: min(100%, 720px);
  margin-inline: auto;
}

.qualification {
  color: var(--blue);
  font-weight: 700;
}

.info-section {
  background: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.info-item {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.info-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 1.18rem;
}

.info-item a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reserve {
  padding: clamp(64px, 9vw, 104px) clamp(22px, 6vw, 88px);
  background: var(--blue-deep);
  color: var(--white);
}

.reserve-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.reserve h2 {
  max-width: 720px;
}

.reserve p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 6vw, 88px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .menu-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .section-heading,
  .reserve-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

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

  .gallery img:first-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: start;
    min-height: 92px;
    flex-direction: column;
    gap: 8px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: calc(100svh - 92px);
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(13, 46, 71, 0.9), rgba(13, 46, 71, 0.42) 55%, rgba(13, 46, 71, 0.1)),
      linear-gradient(90deg, rgba(13, 46, 71, 0.28), rgba(13, 46, 71, 0));
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-copy {
    padding-top: 220px;
  }

  .hero-actions,
  .reserve-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .menu-grid,
  .info-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img:first-child {
    grid-column: auto;
  }

  .menu-card {
    min-height: 250px;
  }

  .footer {
    flex-direction: column;
  }
}
