@charset "UTF-8";

:root {
  --brown: #5b3a25;
  --brown-dark: #2d1c12;
  --brown-soft: #8a6040;
  --cream: #fff8ed;
  --cream2: #f4e4cc;
  --gold: #b98b44;
  --pink: #b9566c;
  --pink-dark: #914253;
  --ink: #261b14;
  --muted: rgba(38,27,20,.72);
  --shadow: 0 18px 40px rgba(81,45,23,.18);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  background: #f4e4cc;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbf1e2, #f4e4cc);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", system-ui, sans-serif;
  letter-spacing: .035em;
  line-height: 1.75;
  padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
}

img { display: block; width: 100%; }
a { color: inherit; }

.site-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 18px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,248,237,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(91,58,37,.12);
}

.site-header__brand {
  display: grid;
  text-decoration: none;
  line-height: 1.15;
}

.brand-sub {
  font-size: 11px;
  color: var(--brown-soft);
  font-weight: 700;
}

.site-header__brand strong {
  font-size: 22px;
  color: var(--brown-dark);
}

.site-header__reserve {
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pink), var(--pink-dark));
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 720px;
  padding-top: 62px;
  background: linear-gradient(135deg, #fff8ed, #ecd2ad);
}

.hero-photo {
  min-height: 640px;
  overflow: hidden;
}

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

.hero-content {
  display: grid;
  align-content: center;
  padding: 64px 48px;
}

.hero-kicker,
.section-label {
  margin: 0 0 10px;
  color: var(--brown-soft);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-content h1,
.section-heading h2,
.intro-text h2 {
  margin: 0;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.24;
  color: var(--brown-dark);
  font-weight: 900;
  letter-spacing: .05em;
}

.hero-copy {
  margin: 18px 0 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
}

.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges div {
  padding: 14px;
  border-radius: 18px;
  background: #fffaf2;
  border: 1px solid rgba(91,58,37,.12);
  box-shadow: var(--shadow);
}

.hero-badges span {
  display: block;
  color: var(--brown-soft);
  font-size: 12px;
  font-weight: 900;
}

.hero-badges strong {
  display: block;
  margin-top: 3px;
  color: var(--brown-dark);
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.btn-primary,
.btn-secondary {
  min-height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--pink), var(--pink-dark));
  box-shadow: 0 12px 24px rgba(145,66,83,.28);
}

.btn-secondary {
  color: var(--brown-dark);
  background: #fffaf2;
  border: 1px solid rgba(91,58,37,.14);
}

section {
  padding: 56px 22px;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 28px;
}

.section-heading h2 {
  font-size: clamp(30px, 6vw, 44px);
}

.section-heading p:not(.section-label) {
  margin: 10px 0 0;
  color: var(--muted);
}

.intro-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: #fffaf2;
}

.intro-text {
  padding: 20px 4vw;
}

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

.intro-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  max-height: 520px;
  object-fit: cover;
}

.visual-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: #f6e7d1;
}

.visual-row article,
.campaign-card,
.popular-card,
.coupon-card,
.review-grid article,
.access-card {
  background: #fffaf2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(91,58,37,.1);
}

.visual-row img {
  height: 230px;
  object-fit: cover;
}

.visual-row div {
  padding: 18px;
}

.visual-row h3,
.campaign-card h3,
.popular-card span,
.coupon-card strong {
  color: var(--brown-dark);
  font-weight: 900;
}

.visual-row h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

.visual-row p {
  margin: 0;
  color: var(--muted);
}

.news-section,
.coupon-section,
.menu-section,
.access-section {
  background: linear-gradient(180deg, #fff8ed, #f4e4cc);
}

.campaign-grid,
.popular-grid,
.coupon-grid,
.review-grid {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.campaign-card img {
  height: 220px;
  object-fit: cover;
}

.campaign-card__body,
.popular-card div,
.coupon-card,
.review-grid article,
.access-card {
  padding: 20px;
}

.campaign-card__body span {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.campaign-card h3 {
  margin: 8px 0 0;
  color: #ad3446;
  font-size: 46px;
  line-height: 1;
}

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

.campaign-card__body div {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px dashed rgba(91,58,37,.2);
  padding-top: 12px;
}

.campaign-card small {
  text-decoration: line-through;
  color: rgba(38,27,20,.5);
}

.campaign-card strong {
  color: #ad3446;
  font-size: 30px;
}

.note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.popular-section,
.review-section {
  background: #fffaf2;
}

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

.popular-card img {
  height: 210px;
  object-fit: cover;
}

.popular-card span {
  font-size: 30px;
}

.popular-card h3 {
  margin: 6px 0 8px;
}

.popular-card p {
  color: var(--brown);
  font-weight: 900;
}

.gallery-section {
  background: #f6e7d1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img {
  min-height: 240px;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

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

.coupon-card span {
  display: block;
  margin: 4px 0;
  color: #ad3446;
  font-size: 30px;
  font-weight: 900;
}

.coupon-card p {
  margin: 0;
  color: var(--muted);
}

.menu-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr 80px 110px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #fffaf2;
  border-radius: 14px;
  border: 1px solid rgba(91,58,37,.1);
}

.menu-row span {
  text-align: right;
  color: var(--muted);
}

.menu-row em {
  text-align: right;
  color: var(--brown-dark);
  font-style: normal;
  font-weight: 900;
}

.review-score {
  color: var(--brown);
}

.review-score strong {
  color: #ad3446;
}

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

.review-grid article strong {
  color: var(--brown-dark);
}

.review-grid article p {
  color: var(--muted);
}

.access-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.access-photo {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.align-left {
  text-align: left;
}

.access-card dl {
  margin: 0;
}

.access-card dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(91,58,37,.1);
}

.access-card dt {
  color: var(--brown);
  font-weight: 900;
}

.access-card dd {
  margin: 0;
}

.access-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.access-buttons a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff4e2;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(91,58,37,.12);
}

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 9999;
  transform: translateX(-50%);
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: #f4e4cc;
  box-shadow: 0 -8px 22px rgba(81,45,23,.18);
}

.fixed-cta a {
  min-height: 58px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
}

.fixed-cta__reserve {
  color: #fff;
  background: linear-gradient(180deg, var(--pink), var(--pink-dark));
  padding: 0 10px;
}

.fixed-cta__tel {
  color: var(--brown-dark);
  background: #fffaf2;
}

@media (max-width: 760px) {
  .hero-section,
  .intro-section,
  .visual-row,
  .campaign-grid,
  .popular-grid,
  .coupon-grid,
  .review-grid,
  .access-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 58px;
  }

  .hero-photo {
    min-height: auto;
  }

  .hero-photo img {
    height: 360px;
    object-position: center;
  }

  .hero-content {
    padding: 28px 20px 34px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 10px;
  }

  section {
    padding: 42px 18px;
  }

  .intro-text {
    padding: 0;
  }

  .visual-row img,
  .popular-card img,
  .campaign-card img {
    height: 190px;
  }

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

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

  .gallery-grid img {
    min-height: 150px;
    border-radius: 18px;
  }

  .menu-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .menu-row span,
  .menu-row em {
    text-align: left;
  }

  .access-photo {
    min-height: auto;
    height: 260px;
  }

  .access-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
