:root {
  --gold: #f2b705;
  --gold-dark: #c88d00;
  --orange: #e15b25;
  --ink: #1f1a14;
  --muted: #6f665b;
  --cream: #fff8ea;
  --paper: #ffffff;
  --line: rgba(43, 34, 24, 0.12);
  --shadow: 0 18px 45px rgba(61, 43, 15, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.65;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 248, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.header-actions,
.main-nav,
.hero-buttons,
.menu-tabs {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(242, 183, 5, 0.35);
}

.main-nav {
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  color: rgba(31, 26, 20, 0.78);
}

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

.header-actions {
  gap: 0.5rem;
}

.call-link,
.language-toggle {
  border-radius: 999px;
  font-weight: 800;
}

.call-link {
  display: none;
  padding: 0.55rem 0.85rem;
  color: var(--ink);
  background: var(--gold);
}

.language-toggle {
  min-width: 4rem;
  padding: 0.55rem 0.85rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at center, rgba(255, 193, 7, 0.12), transparent 34rem),
    linear-gradient(0deg, rgba(18, 12, 7, 0.58), rgba(18, 12, 7, 0.36));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(920px, calc(100% - 2rem));
  padding: 8rem 0 5.75rem;
  text-align: center;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.9rem;
  color: #ffe08a;
  background: rgba(31, 26, 20, 0.48);
  border: 1px solid rgba(255, 224, 138, 0.46);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(3.1rem, 7.2vw, 6.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-tagline {
  max-width: 760px;
  margin-bottom: 0.9rem;
  font-size: clamp(1.25rem, 2.7vw, 2rem);
  font-weight: 800;
}

.hero-support {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-buttons {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(242, 183, 5, 0.32);
}

.button.secondary {
  color: var(--ink);
  background: #fff9e8;
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(8px);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 1180px;
  margin: -3.25rem auto 0;
  padding: 0 1rem;
  position: relative;
  z-index: 3;
}

.quick-info article {
  display: grid;
  align-content: center;
  gap: 0.25rem;
  min-height: 6.5rem;
  padding: 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-info span {
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quick-info strong {
  color: var(--ink);
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  line-height: 1.35;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.about-section,
.location-section {
  display: grid;
  gap: 2rem;
}

.section-copy h2,
.section-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p {
  max-width: 760px;
  color: var(--muted);
}

.highlight-list {
  display: grid;
  gap: 0.75rem;
  align-self: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.highlight-list li,
.category-grid article,
.menu-card,
.compact-list,
.map-card,
.photo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.highlight-list li {
  padding: 1rem 1.1rem;
  font-weight: 800;
}

.highlight-list li::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 0.75rem;
  border-radius: 50%;
  background: var(--gold);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin: 3rem 0 1.2rem;
}

.menu-tabs {
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
}

.menu-tabs a {
  padding: 0.58rem 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-tabs a:hover {
  color: var(--ink);
  border-color: rgba(242, 183, 5, 0.7);
}

.menu-group {
  margin-top: 2.5rem;
}

.menu-group h3 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.menu-grid,
.category-grid,
.photo-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.menu-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 10rem;
  padding: 1.15rem;
}

.menu-card.featured {
  background: linear-gradient(135deg, #fff, #fff3c7);
  border-color: rgba(242, 183, 5, 0.55);
}

.menu-card h4 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  line-height: 1.35;
}

.menu-card p,
.compact-list p,
.category-grid p {
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-card strong {
  color: var(--orange);
  white-space: nowrap;
}

.split-groups {
  display: grid;
  gap: 1rem;
}

.compact-list {
  padding: 0.6rem 1rem;
}

.compact-list p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0.82rem 0;
  border-bottom: 1px solid var(--line);
}

.compact-list p:last-child {
  border-bottom: 0;
}

.compact-list strong {
  color: var(--ink);
  white-space: nowrap;
}

.photo-grid.two {
  grid-template-columns: 1fr;
}

.photo-card {
  display: block;
  width: 100%;
  min-height: 14rem;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: linear-gradient(135deg, #fff1bc, #fff);
  cursor: pointer;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-card:hover img {
  transform: scale(1.025);
}

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

.menu-photo-card {
  overflow: hidden;
  padding: 0;
  border: none;
  border-radius: 24px;
  background: #fffaf0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.menu-photo-card img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: contain;
  object-position: center;
  background: #fffaf0;
}

.category-grid {
  grid-template-columns: repeat(2, 1fr);
}

.category-grid article {
  padding: 1.2rem;
}

.category-grid h3 {
  margin-bottom: 0.4rem;
}

.category-grid h3::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 0.2rem;
  margin-top: 0.5rem;
  background: var(--gold);
}

.gallery-grid {
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: 260px;
  gap: 24px;
}

.gallery-grid.is-single {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  grid-auto-rows: auto;
}

.gallery-card {
  display: block;
  width: 100%;
  min-height: 240px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card-large {
  min-height: 520px;
}

.gallery-section h2 {
  max-width: 100%;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-list span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 800;
}

.contact-list p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
}

.map-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 420px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  color: #fff;
  background: #20160d;
}

.site-footer div {
  display: grid;
  gap: 0.2rem;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(15, 10, 5, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1040px, 100%);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10001;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox img {
  display: block;
  max-width: 96vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  z-index: 10000;
}

.image-lightbox .lightbox-close {
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  color: #111;
  background: #fff;
  border: none;
  font-size: 2rem;
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.35rem;
    font-size: 0.82rem;
  }

  .main-nav a {
    flex: 1;
    text-align: center;
  }

  .hero-content {
    padding-top: 10rem;
    padding-bottom: 5.25rem;
  }

  .hero {
    min-height: 90vh;
    background-position: center top;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .button {
    width: 100%;
  }

  .gallery-card-large {
    min-height: 360px;
  }
}

@media (min-width: 680px) {
  .call-link {
    display: inline-flex;
  }

  .quick-info {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid.three,
  .split-groups,
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  .about-section,
  .location-section {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-grid.is-single {
    grid-template-columns: minmax(0, 860px);
    grid-auto-rows: auto;
  }

  .gallery-card-large {
    grid-row: span 2;
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-grid.is-single {
    grid-template-columns: minmax(0, 760px);
    grid-auto-rows: auto;
  }

  .gallery-card-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .menu-photo-grid {
    grid-template-columns: 1fr;
  }

  .menu-photo-card img {
    height: auto;
    max-height: none;
  }
}

@media (max-width: 600px) {
  .compact-list p {
    flex-direction: column;
    gap: 0.25rem;
  }

  .compact-list strong {
    white-space: normal;
  }

  .gallery-grid,
  .gallery-grid.is-single {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-card,
  .gallery-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .gallery-card img {
    min-height: 240px;
  }
}
