:root {
  color-scheme: light;
  --ink: #241b17;
  --muted: #6c7464;
  --line: #dce8d4;
  --paper: #f7fbf0;
  --surface: #fffef9;
  --cream: #edf6df;
  --sage-soft: #eef6e6;
  --sage-deep: #253619;
  --olive: #71894a;
  --olive-dark: #3e5427;
  --tomato: #6f934f;
  --wine: #496530;
  --gold: #b9a45b;
  --shadow: 0 24px 70px rgba(50, 74, 35, 0.14);
  --shadow-soft: 0 14px 44px rgba(50, 74, 35, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(247, 251, 240, 0) 0%, rgba(237, 246, 223, 0.42) 100%),
    var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 251, 240, 0.72);
  border-bottom: 1px solid rgba(220, 232, 212, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 251, 240, 0.96);
  box-shadow: 0 10px 30px rgba(50, 74, 35, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-text {
  white-space: nowrap;
  color: var(--ink);
  font-family: "Brush Script MT", "Segoe Script", "Playfair Display", cursive;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(220, 232, 212, 0.78);
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.7);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  background: var(--cream);
  color: var(--tomato);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 118px clamp(18px, 5vw, 72px) 54px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(111, 147, 79, 0.34), rgba(111, 147, 79, 0));
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 254, 249, 0.82) 0%, rgba(247, 251, 240, 0.5) 38%, rgba(247, 251, 240, 0) 62%),
    linear-gradient(90deg, rgba(247, 251, 240, 0.82) 0%, rgba(247, 251, 240, 0.58) 40%, rgba(247, 251, 240, 0.2) 68%, rgba(247, 251, 240, 0.04) 100%),
    linear-gradient(0deg, rgba(247, 251, 240, 0.72) 0%, rgba(247, 251, 240, 0.1) 34%, rgba(247, 251, 240, 0) 68%);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--tomato);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: "Playfair Display", "Noto Sans JP", serif;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 1.04;
  font-weight: 800;
}

.nowrap {
  white-space: nowrap;
}

.hero-lead {
  width: min(650px, 100%);
  margin-bottom: 32px;
  color: #46513d;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 2;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.hero-service {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 9px;
  border: 1px solid rgba(220, 232, 212, 0.95);
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-service p,
.hero-service a {
  margin: 0;
  padding: 8px 12px;
  color: #46513d;
  font-size: 13px;
  font-weight: 800;
}

.hero-service span {
  margin-right: 8px;
  color: var(--tomato);
  text-transform: uppercase;
}

.hero-service a {
  border-radius: 999px;
  background: var(--cream);
  color: var(--olive-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: var(--tomato);
  color: white;
  box-shadow: 0 18px 40px rgba(111, 147, 79, 0.25);
}

.button.primary:hover {
  background: var(--olive-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(50, 74, 35, 0.07);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(690px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 232, 212, 0.9);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-facts div {
  padding: 18px;
  background: rgba(255, 253, 248, 0.92);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--tomato);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-weight: 800;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 80px);
  padding: 84px clamp(18px, 5vw, 72px);
  background: var(--surface);
}

.intro-copy p {
  max-width: 860px;
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.68;
  font-weight: 800;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px;
}

.intro-tags span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--olive-dark);
  font-weight: 800;
  box-shadow: inset 0 -1px 0 rgba(111, 147, 79, 0.12);
}

.photo-story {
  display: grid;
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 72px) 104px;
  background: var(--surface);
}

.photo-story-main {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.photo-story-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 27, 23, 0.88), rgba(36, 27, 23, 0.36) 48%, rgba(36, 27, 23, 0.08)),
    linear-gradient(0deg, rgba(36, 27, 23, 0.72), rgba(36, 27, 23, 0) 42%);
}

.photo-story-main img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 42%;
}

.photo-story-caption {
  position: absolute;
  left: clamp(22px, 5vw, 54px);
  bottom: clamp(22px, 5vw, 54px);
  z-index: 1;
  width: min(620px, calc(100% - 44px));
  color: white;
}

.photo-story-caption .eyebrow {
  color: #f2c783;
}

.photo-story-caption h2 {
  margin-bottom: 14px;
  font-family: "Playfair Display", "Noto Sans JP", serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.15;
}

.photo-story-caption p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
}

.photo-story-grid,
.life-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.photo-story-grid figure,
.life-gallery figure,
.menu-visual-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(50, 74, 35, 0.07);
}

.photo-story-grid img,
.life-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-story-grid figure:hover img,
.life-gallery figure:hover img {
  transform: scale(1.04);
}

.photo-story-grid figcaption,
.life-gallery figcaption {
  padding: 14px 16px;
  color: var(--olive-dark);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 104px clamp(18px, 5vw, 72px);
  scroll-margin-top: 92px;
}

.hero,
.intro,
.visual-band,
.reserve {
  scroll-margin-top: 92px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.visual-band h2,
.reserve h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.13;
}

.section-heading p:not(.eyebrow),
.visual-band p,
.reserve p {
  color: var(--muted);
  line-height: 1.9;
}

.strength-section {
  background: var(--cream);
}

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

.strength-card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid rgba(111, 147, 79, 0.2);
  border-radius: 8px;
  background: rgba(255, 254, 249, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.strength-card:hover,
.menu-card:hover,
.blog-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 147, 79, 0.42);
  box-shadow: 0 22px 58px rgba(50, 74, 35, 0.15);
}

.strength-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--tomato);
  font-weight: 800;
}

.strength-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.strength-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.85;
}

.menu-section {
  background: var(--paper);
}

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

.menu-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(50, 74, 35, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.menu-card.featured {
  background:
    linear-gradient(145deg, rgba(73, 101, 48, 0.98), rgba(37, 54, 25, 0.98)),
    var(--wine);
  color: white;
  border-color: var(--wine);
}

.menu-label {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--tomato);
  font-weight: 800;
  text-transform: uppercase;
}

.featured .menu-label,
.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.menu-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.menu-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.85;
}

.menu-visuals {
  margin-top: 48px;
}

.compact-heading {
  margin-bottom: 22px;
}

.compact-heading h3 {
  margin-bottom: 12px;
  font-family: "Playfair Display", "Noto Sans JP", serif;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.18;
}

.compact-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.9;
}

.menu-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.menu-visual-card {
  background: #fffaf1;
}

.menu-visual-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.menu-visual-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.course-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 56px);
  margin-top: 42px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(111, 147, 79, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(237, 246, 223, 0.82), rgba(255, 254, 249, 0.86)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.course-panel-heading h3 {
  margin-bottom: 14px;
  font-family: "Playfair Display", "Noto Sans JP", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.course-panel-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.9;
}

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

.course-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 249, 0.9);
}

.course-card.recommended {
  border-color: rgba(111, 147, 79, 0.48);
  background: var(--sage-soft);
  box-shadow: 0 18px 42px rgba(50, 74, 35, 0.12);
}

.course-card.food-card {
  border-color: rgba(111, 147, 79, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 254, 249, 0.96), rgba(237, 246, 223, 0.86)),
    var(--surface);
}

.course-price {
  margin-bottom: 16px;
  color: var(--olive-dark);
  font-size: 28px;
  font-weight: 800;
}

.course-card h4 {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.45;
}

.course-people {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(111, 147, 79, 0.12);
  color: var(--olive-dark);
  font-size: 13px;
  font-weight: 800;
}

.course-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.course-note {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(111, 147, 79, 0.18);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.visual-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: 104px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(36, 27, 23, 0.92), rgba(36, 27, 23, 0.76)),
    url("./assets/optimized/ramo-counter.jpg") center right / cover;
  color: white;
}

.visual-band-inner {
  width: min(760px, 100%);
}

.visual-band .eyebrow {
  color: #f2c783;
}

.visual-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.taste-note {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.taste-note p {
  margin-bottom: 34px;
  color: #f2c783;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.taste-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.35;
}

.taste-note span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.bread-drink {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: 104px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 254, 249, 0.96), rgba(237, 246, 223, 0.78)),
    var(--surface);
}

.bread-drink-copy {
  max-width: 620px;
}

.bread-drink-copy h2 {
  margin-bottom: 16px;
  font-family: "Playfair Display", "Noto Sans JP", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.13;
}

.bread-drink-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.95;
}

.bread-drink-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(111, 147, 79, 0.22);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.bread-drink-visual img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center center;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 86px);
}

.sticky-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.scene-list {
  display: grid;
  gap: 14px;
}

.scene-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(50, 74, 35, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.scene-list article:hover {
  transform: translateX(4px);
  border-color: rgba(111, 147, 79, 0.42);
  box-shadow: var(--shadow-soft);
}

.scene-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--tomato);
  font-weight: 800;
}

.scene-list h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.scene-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.life-gallery {
  padding: 0 clamp(18px, 5vw, 72px) 104px;
  background: var(--paper);
}

.info-section {
  background: var(--cream);
}

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

.info-card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(196, 154, 79, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 10px 34px rgba(50, 74, 35, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.info-label {
  margin-bottom: 14px;
  color: var(--tomato);
  font-size: 13px;
  font-weight: 800;
}

.info-card p:last-child {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 800;
}

.blog-section {
  background:
    linear-gradient(180deg, rgba(255, 254, 249, 0.92), rgba(237, 246, 223, 0.46)),
    var(--surface);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.blog-card {
  display: grid;
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 34px rgba(50, 74, 35, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog-card h2,
.blog-card h3 {
  margin-bottom: 12px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 21px;
  line-height: 1.45;
}

.blog-card p:not(.blog-keyword) {
  color: var(--muted);
  line-height: 1.8;
}

.blog-card a {
  align-self: end;
  color: var(--olive-dark);
  font-weight: 800;
}

.blog-card a::after {
  content: " ->";
}

.blog-keyword {
  margin-bottom: 18px;
  color: var(--tomato);
  font-size: 13px;
  font-weight: 800;
}

.blog-more {
  margin-top: 24px;
}

.blog-page,
.article-page {
  padding-top: 82px;
}

.blog-hero {
  padding: 104px clamp(18px, 5vw, 72px) 56px;
  background:
    linear-gradient(135deg, rgba(237, 246, 223, 0.96), rgba(255, 254, 249, 0.86)),
    var(--cream);
}

.blog-hero h1 {
  width: min(880px, 100%);
  margin-bottom: 20px;
}

.blog-hero p:not(.eyebrow) {
  width: min(820px, 100%);
  color: var(--muted);
  line-height: 1.9;
}

.article {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 110px;
}

.article h1 {
  margin-bottom: 24px;
}

.article h2 {
  margin: 44px 0 14px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

.article p {
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.article-lead {
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 28px;
}

.faq-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.faq-list p {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
}

.reserve {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: 104px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #fffef9 0%, #edf6df 100%);
}

.reserve-copy {
  max-width: 700px;
}

.reserve-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.reserve-panel {
  display: grid;
  gap: 12px;
}

.reserve-panel article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.reserve-panel span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--tomato);
  font-weight: 800;
}

.reserve-panel h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.reserve-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.footer .brand-text {
  color: white;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 106px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(247, 251, 240, 0.9) 0%, rgba(247, 251, 240, 0.62) 54%, rgba(247, 251, 240, 0.86) 100%),
      linear-gradient(90deg, rgba(247, 251, 240, 0.82) 0%, rgba(247, 251, 240, 0.24) 100%);
  }

  .intro,
  .photo-story-main,
  .visual-band,
  .bread-drink,
  .split,
  .course-panel,
  .reserve {
    grid-template-columns: 1fr;
  }

  .strength-grid,
  .course-grid,
  .blog-grid,
  .menu-grid,
  .menu-visual-grid,
  .photo-story-grid,
  .life-gallery,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-visual-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-text {
    max-width: 172px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 22px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  .hero {
    padding: 92px 16px 34px;
  }

  .hero-actions {
    display: grid;
    margin-bottom: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-service {
    width: 100%;
    border-radius: 8px;
  }

  .hero-service p,
  .hero-service a {
    width: 100%;
  }

  .hero-facts,
  .strength-grid,
  .course-grid,
  .blog-grid,
  .menu-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .intro,
  .photo-story,
  .section,
  .visual-band,
  .bread-drink,
  .life-gallery,
  .reserve {
    padding-left: 16px;
    padding-right: 16px;
  }

  .photo-story {
    padding-bottom: 72px;
  }

  .photo-story-main,
  .photo-story-main img {
    min-height: 440px;
  }

  .photo-story-main::after {
    background:
      linear-gradient(180deg, rgba(36, 27, 23, 0.18), rgba(36, 27, 23, 0.88)),
      linear-gradient(90deg, rgba(36, 27, 23, 0.56), rgba(36, 27, 23, 0.18));
  }

  .photo-story-grid,
  .menu-visual-grid,
  .life-gallery {
    grid-template-columns: 1fr;
  }

  .menu-visual-card.large {
    grid-column: span 1;
  }

  .menu-card {
    min-height: auto;
  }

  .menu-label {
    margin-bottom: 28px;
  }

  .scene-list article {
    grid-template-columns: 42px 1fr;
    padding: 18px;
  }

  .scene-list span {
    width: 38px;
    height: 38px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
