:root {
  --ink: #26312a;
  --muted: #706e66;
  --line: #ded9cf;
  --paper: #fffdf8;
  --mist: #f4f2ec;
  --sage: #60785e;
  --sage-dark: #485f48;
  --salmon: #d28b7d;
  --wood: #c7a87d;
  --cream: #faf5ec;
  --shadow: 0 22px 70px rgba(38, 49, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  padding-bottom: 0;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 78px;
  padding: 16px clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(222, 217, 207, 0.78);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  box-shadow: 0 10px 34px rgba(38, 49, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 160px;
}

.brand-mark {
  width: 46px;
  height: 29px;
  background:
    linear-gradient(var(--sage), var(--sage)) 0 0 / 46px 5px no-repeat,
    linear-gradient(var(--sage), var(--sage)) 0 50% / 27px 5px no-repeat,
    linear-gradient(var(--sage), var(--sage)) 31px 50% / 15px 5px no-repeat,
    linear-gradient(var(--sage), var(--sage)) 0 100% / 46px 5px no-repeat;
}

.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: #706a62;
  font-size: 0.82rem;
}

.main-nav a {
  padding: 8px 0;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 23px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
}

.header-cta,
.button-primary {
  background: var(--salmon);
  color: #fffaf7;
  box-shadow: 0 10px 24px rgba(210, 139, 125, 0.26);
}

.button-ghost {
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(96, 120, 94, 0.26);
}

.hero {
  position: relative;
  min-height: 720px;
  padding-top: 78px;
  overflow: hidden;
  background: #e7e1d6;
}

.hero-media {
  position: absolute;
  inset: 78px 0 0;
}

.hero-media picture,
.access-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 49, 42, 0.58), rgba(38, 49, 42, 0.1) 62%),
    linear-gradient(0deg, rgba(38, 49, 42, 0.26), transparent 42%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(690px, calc(100% - 40px));
  padding: clamp(98px, 12vw, 170px) 0 0 clamp(20px, 7vw, 100px);
  color: #fff;
  text-shadow: 0 2px 28px rgba(38, 49, 42, 0.34);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.95rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px clamp(18px, 6vw, 96px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  padding: 10px 18px;
  color: var(--sage-dark);
  font-weight: 800;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-strip span:last-child {
  border-right: 0;
}

.concept-section,
.menu-section,
.style-section,
.staff-section,
.first-section,
.access-section,
.reserve-section {
  padding: clamp(68px, 9vw, 122px) clamp(20px, 6vw, 96px);
}

.concept-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(96, 120, 94, 0.12), transparent 32%),
    var(--paper);
}

.section-copy {
  max-width: 820px;
}

.section-copy h2,
.section-heading h2,
.access-card h2,
.reserve-box h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.section-copy p,
.section-heading p,
.feature-card p,
.price-table p,
.style-main p,
.style-side p,
.staff-panel p,
.first-section p,
.access-card dd,
.reserve-box p,
.future-note {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.feature-card,
.flow-grid article {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card span,
.flow-grid span {
  color: var(--salmon);
  font-family: Georgia, serif;
  font-weight: 700;
}

.feature-card h3,
.flow-grid h3 {
  margin: 8px 0;
}

.menu-section,
.staff-section {
  background: var(--mist);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: 28px;
  align-items: start;
}

.menu-cards {
  display: grid;
  gap: 14px;
}

.menu-cards article,
.price-table,
.staff-panel,
.faq-list,
.access-card,
.reserve-box,
.style-main,
.style-side {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(38, 49, 42, 0.07);
}

.menu-cards article {
  padding: 22px;
}

.menu-cards h3,
.menu-cards p,
.price-table p,
.style-main p,
.style-side p {
  margin-bottom: 0;
}

.price-table {
  padding: clamp(22px, 3vw, 34px);
}

.price-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-table strong {
  white-space: nowrap;
  color: var(--sage-dark);
}

.price-table p {
  margin: 18px 0 0;
  font-size: 0.86rem;
}

.style-section {
  background: linear-gradient(176deg, var(--paper) 0 52%, var(--mist) 52.2%);
}

.style-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(260px, 0.75fr);
  gap: 24px;
  margin-top: 34px;
}

.style-main,
.style-side {
  overflow: hidden;
}

.style-main img,
.style-side img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.style-main div,
.style-side div {
  padding: 24px;
}

.staff-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.staff-layout img {
  min-height: 420px;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.staff-panel {
  padding: clamp(28px, 4vw, 46px);
}

.staff-role {
  margin-bottom: 8px;
  color: var(--sage-dark);
  font-weight: 900;
}

blockquote {
  margin: 24px 0;
  padding-left: 18px;
  color: var(--ink);
  border-left: 4px solid var(--salmon);
}

.staff-details {
  display: grid;
  gap: 12px;
}

.staff-details div,
.access-card dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--sage-dark);
  font-weight: 900;
}

dd {
  margin: 0;
}

.first-section {
  background: var(--paper);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px 0;
}

.faq-list {
  padding: clamp(18px, 3vw, 30px);
}

details {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

details:last-child {
  border-bottom: 0;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 10px 0 0;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
  background: var(--mist);
}

.access-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.access-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parking-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  font-weight: 900;
  line-height: 1.35;
  background: var(--sage-dark);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(38, 49, 42, 0.24);
}

.access-card {
  padding: clamp(28px, 4vw, 46px);
}

.access-card dl {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
}

.access-card .highlight {
  margin: 8px 0;
  padding: 14px;
  background: #fff7ee;
  border: 1px solid rgba(210, 139, 125, 0.34);
  border-radius: 8px;
}

.map-button {
  margin-top: 22px;
}

.reserve-section {
  background: var(--paper);
}

.reserve-box {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px);
  text-align: center;
}

.reserve-box p {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
}

.reserve-actions {
  justify-content: center;
}

.future-note {
  margin-top: 16px;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 96px);
  color: #d8d4ca;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.mobile-fixed-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .trust-strip,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-layout,
  .style-grid,
  .staff-layout,
  .access-section {
    grid-template-columns: 1fr;
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand-sub {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 15px;
  }

  .hero {
    min-height: 720px;
    padding-top: 66px;
  }

  .hero-media {
    inset: 66px 0 0;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(38, 49, 42, 0.52), rgba(38, 49, 42, 0.12) 72%),
      linear-gradient(0deg, rgba(38, 49, 42, 0.36), transparent 54%);
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-copy {
    width: 100%;
    padding: 46px 20px 0;
  }

  h1 {
    font-size: clamp(2rem, 10.4vw, 2.75rem);
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .reserve-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 310px;
  }

  .trust-strip,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 16px 20px;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip span:last-child {
    border-bottom: 0;
  }

  .concept-section,
  .menu-section,
  .style-section,
  .staff-section,
  .first-section,
  .access-section,
  .reserve-section {
    padding: 58px 20px;
  }

  .price-table div,
  .staff-details div,
  .access-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .access-photo {
    min-height: 520px;
  }

  .access-photo img {
    object-position: center top;
  }

  .parking-badge {
    right: 18px;
    bottom: 18px;
    width: 118px;
    height: 118px;
  }

  .site-footer {
    display: block;
    padding-bottom: 84px;
  }

  .mobile-fixed-cta {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 14px 44px rgba(38, 49, 42, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-fixed-cta a {
    display: grid;
    min-height: 46px;
    place-items: center;
    color: #fff;
    font-weight: 900;
    background: var(--sage-dark);
    border-radius: 8px;
  }

  .mobile-fixed-cta a:first-child {
    background: var(--salmon);
  }
}
