:root {
  --bg: #fbf8f3;
  --paper: #ffffff;
  --cream: #f2eadf;
  --brown: #432d25;
  --brown-2: #6f4b35;
  --camel: #c98d52;
  --green: #2f5f56;
  --muted: #6f6863;
  --line: rgba(67, 45, 37, 0.14);
  --shadow: 0 22px 60px rgba(67, 45, 37, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  background: var(--bg);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 48px));
}

.center {
  text-align: center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 8vw;
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--brown);
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 700;
  font-size: 14px;
}

.nav-cta {
  padding: 12px 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--camel);
  box-shadow: 0 8px 18px rgba(201, 141, 82, 0.25);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.atmosphere-bg {
  position: absolute;
  inset: 0;
  background: url("assets/photo-06.jpg") center/cover no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 18, 13, 0.76) 0%, rgba(28, 18, 13, 0.45) 48%, rgba(28, 18, 13, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 48px));
  margin-left: 8vw;
  padding-top: 74px;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--camel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.hero h1,
.section h2,
.atmosphere h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.22;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 112px);
  letter-spacing: 0.03em;
}

.hero-lead {
  margin: 26px 0 36px;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
}

.hero-actions,
.service-pills,
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(67, 45, 37, 0.18);
}

.btn-primary {
  color: #fff;
  background: var(--camel);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-dark {
  color: #fff;
  background: var(--brown);
}

.hero-pills {
  position: absolute;
  right: 6vw;
  top: 28vh;
  z-index: 3;
  flex-direction: column;
}

.hero-pills span,
.service-pills span {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brown);
}

.section {
  padding: 112px 0;
}

.section h2,
.atmosphere h2 {
  font-size: clamp(34px, 4.8vw, 62px);
}

.section-copy {
  margin: 16px auto 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 76px;
  align-items: center;
}

.about-text p:not(.section-label) {
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.feature-list strong {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
}

.feature-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rating-card {
  position: absolute;
  left: -26px;
  bottom: -28px;
  width: 160px;
  padding: 22px;
  border-radius: 20px;
  color: #fff;
  background: var(--camel);
  box-shadow: var(--shadow);
}

.rating-card strong {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  line-height: 1.25;
}

.rating-card span {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 54px;
}

.tab {
  padding: 12px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brown);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.tab.active {
  color: #fff;
  background: var(--brown);
}

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

.menu-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  margin: 0 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
}

.card-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.price {
  color: var(--camel);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 18px;
  margin-top: 44px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.atmosphere {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.atmosphere-bg {
  background-image: linear-gradient(90deg, rgba(45, 33, 26, 0.75), rgba(45, 33, 26, 0.35)), url("assets/photo-12.jpg");
}

.atmosphere-content {
  position: relative;
  z-index: 1;
}

.atmosphere .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.atmosphere h2 {
  margin-bottom: 30px;
  color: #fff;
}

.service-pills span {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
}

.insta-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.insta-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.insta-action {
  margin-top: 34px;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 48px;
}

.map-card {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 36px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream);
}

.map-pin {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--camel);
  background: #fff7ef;
  font-size: 30px;
}

.map-card h3 {
  margin: 18px 0 0;
  font-family: "Noto Serif JP", serif;
}

.map-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.map-card a {
  padding: 9px 22px;
  border: 1px solid rgba(201, 141, 82, 0.45);
  border-radius: 999px;
  color: var(--camel);
  background: #fffaf4;
  font-weight: 700;
  font-size: 13px;
}

.info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.info-row:first-child {
  border-top: 1px solid var(--line);
}

.info-row span {
  color: var(--muted);
  font-size: 14px;
}

.info-row strong {
  font-size: 18px;
  font-weight: 600;
}

.access-info .btn {
  margin-top: 32px;
}

.footer {
  padding: 70px 0 34px;
  color: #fff;
  background: var(--brown);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer h2 {
  margin: 0 0 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
}

.footer p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.7);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    height: 68px;
    padding: 0 24px;
  }

  .nav-toggle {
    display: block;
    color: inherit;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    color: var(--brown);
    background: rgba(251, 248, 243, 0.98);
    box-shadow: 0 18px 40px rgba(67, 45, 37, 0.12);
  }

  .site-header.open .site-nav {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-pills {
    display: none;
  }

  .about-grid,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

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

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: 92vh;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 280px);
  }

  .btn {
    width: 100%;
  }

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

  .rating-card {
    position: static;
    width: auto;
    margin-top: 16px;
  }

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

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

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

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

  .info-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }
}

/* Minimal image ratio fix: keeps the current design while preventing portrait source images from stretching cards. */
.menu-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid img,
.insta-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
