:root {
  --ink: #2f2d2b;
  --sub: #6f6a64;
  --paper: #f7f4ef;
  --white: #ffffff;
  --line: #ded7cf;
  --brown: #8f735d;
  --brown-dark: #5f493b;
  --sage: #76836f;
  --soft: #eee8df;
  --shadow: 0 18px 48px rgba(64, 51, 40, 0.14);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  min-height: 86px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(47, 45, 43, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 46px auto;
  gap: 12px;
  align-items: center;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.brand-name {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.site-nav {
  justify-self: end;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  color: var(--white);
  background: var(--brown-dark);
  border: 1px solid var(--brown-dark);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease;
}

.site-header:not(.is-scrolled):not(.is-open) .reserve-button {
  background: rgba(47, 45, 43, 0.52);
  border-color: rgba(255, 255, 255, 0.72);
}

.reserve-button:hover,
.outline-link:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  width: 17px;
  height: 1px;
  margin: 3px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 92svh;
  overflow: hidden;
  background: #d8d0c5;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(33, 30, 27, 0.58), rgba(33, 30, 27, 0.12) 54%, rgba(33, 30, 27, 0.1)),
    linear-gradient(0deg, rgba(33, 30, 27, 0.4), rgba(33, 30, 27, 0.02) 46%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 7vw, 104px);
  bottom: clamp(92px, 14vh, 150px);
  max-width: 720px;
  color: var(--white);
}

.hero-kicker {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p:last-child {
  max-width: 620px;
  margin: 0;
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 800;
}

.hero-reserve {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 72px);
  bottom: 40px;
  display: grid;
  min-width: 274px;
  padding: 20px 26px;
  color: var(--white);
  background: rgba(95, 73, 59, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-reserve span {
  font-size: 13px;
  font-weight: 800;
}

.hero-reserve strong {
  font-size: 24px;
  line-height: 1.4;
}

.news-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 160px 1fr;
  width: min(1080px, calc(100% - 36px));
  margin: -36px auto 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.news-strip h2 {
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--white);
  background: var(--brown-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: 0.04em;
}

.news-strip a {
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 72px;
  padding: 18px 26px;
  font-size: 14px;
  font-weight: 700;
}

.news-strip time {
  color: var(--brown);
  white-space: nowrap;
}

.section,
.feature-section,
.gallery-section {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: clamp(78px, 11vw, 136px);
}

.section-title {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 38px;
}

.section-title.centered {
  display: block;
  text-align: center;
}

.section-title span {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.35;
  letter-spacing: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.text-block {
  padding: clamp(12px, 2vw, 22px) 0;
}

.text-block p {
  color: var(--sub);
  font-weight: 600;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 9px 22px;
  color: var(--brown-dark);
  background: transparent;
  border: 1px solid var(--brown);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.outline-link:hover {
  background: var(--white);
}

.photo-panel {
  position: relative;
  margin: 0;
}

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

.photo-panel figcaption {
  position: absolute;
  right: -18px;
  bottom: -18px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--sage);
  border-radius: var(--radius);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.feature-section {
  width: 100%;
  max-width: none;
  margin-top: clamp(80px, 10vw, 128px);
  padding: clamp(78px, 10vw, 122px) max(18px, calc((100vw - 1080px) / 2));
  background: var(--soft);
}

.feature-section .section-title,
.feature-grid {
  width: min(1080px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 250px;
  padding: 34px 28px;
  background: var(--white);
  border: 1px solid rgba(95, 73, 59, 0.12);
  border-radius: var(--radius);
}

.feature-card span {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 700;
}

.feature-card h3 {
  margin: 18px 0 12px;
  font-size: 21px;
  line-height: 1.45;
}

.feature-card p,
.small-note {
  margin-bottom: 0;
  color: var(--sub);
}

.menu-board {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 28px 34px;
  border-bottom: 1px solid var(--line);
}

.menu-row:last-child {
  border-bottom: 0;
}

.menu-row h3 {
  margin: 0 0 5px;
  font-size: 21px;
}

.menu-row p {
  margin: 0;
  color: var(--sub);
}

.menu-row strong {
  color: var(--brown-dark);
  font-size: 20px;
}

.small-note {
  margin-top: 16px;
  font-size: 13px;
}

.gallery-section {
  text-align: center;
}

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

.gallery-grid a {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-grid a:hover img {
  transform: scale(1.035);
}

.gallery-grid span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 14px;
  color: var(--white);
  background: rgba(47, 45, 43, 0.74);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.gallery-link {
  margin-top: 28px;
}

.access {
  padding-bottom: clamp(86px, 11vw, 140px);
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 24px;
}

.shop-card,
.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.shop-card {
  padding: clamp(28px, 4vw, 44px);
}

.shop-card h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

dl {
  margin: 0 0 28px;
}

dl div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

dl div:last-child {
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
}

dd {
  margin: 0;
  font-weight: 700;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reserve-button.large {
  min-height: 48px;
}

.map-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(35deg, rgba(118, 131, 111, 0.16) 25%, transparent 26% 74%, rgba(143, 115, 93, 0.18) 75%),
    #ece9e2;
}

.road {
  position: absolute;
  display: block;
  background: rgba(118, 131, 111, 0.36);
  border-radius: 999px;
}

.road-a {
  width: 86%;
  height: 18px;
  left: 8%;
  top: 51%;
  transform: rotate(-10deg);
}

.road-b {
  width: 18px;
  height: 86%;
  left: 58%;
  top: 7%;
  transform: rotate(24deg);
}

.road-c {
  width: 58%;
  height: 14px;
  left: 20%;
  top: 28%;
  transform: rotate(22deg);
  opacity: 0.55;
}

.pin {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 30px;
  height: 30px;
  background: var(--brown);
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(47, 45, 43, 0.2);
}

.map-panel p {
  position: absolute;
  left: 50%;
  top: calc(47% + 40px);
  margin: 0;
  padding: 9px 14px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(47, 45, 43, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  transform: translateX(-40%);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--brown-dark);
}

.site-footer p,
.site-footer strong {
  margin: 0;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: none;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: var(--brown-dark);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(95, 73, 59, 0.34);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 72px;
  }

  .site-nav,
  .site-header > .reserve-button {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav a {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-reserve {
    left: 24px;
    right: auto;
    bottom: 28px;
    min-width: min(330px, calc(100% - 48px));
  }

  .news-strip,
  .section-title,
  .split-layout,
  .feature-grid,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .section-title {
    gap: 8px;
  }

  .feature-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .photo-panel figcaption {
    right: 12px;
    bottom: 12px;
  }

  .floating-call {
    display: grid;
  }
}

@media (max-width: 620px) {
  .brand {
    grid-template-columns: 40px auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-copy {
    left: 18px;
    right: 18px;
    bottom: 140px;
  }

  .hero-copy p:last-child {
    font-size: 16px;
  }

  .news-strip a {
    display: grid;
    gap: 4px;
    padding: 18px;
  }

  .menu-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px;
  }

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

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

  .info-actions,
  .info-actions .reserve-button,
  .info-actions .outline-link {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}
