:root {
  --ink: #312725;
  --muted: #746560;
  --paper: #fbf5ef;
  --cream: #f4e8df;
  --blush: #d6a2a0;
  --blush-dark: #9f6467;
  --rose-dust: #9c7184;
  --champagne: #c4a06f;
  --sage: #8b9c8a;
  --sage-deep: #627666;
  --line: #dfcec2;
  --soft-line: rgba(196, 160, 111, 0.26);
  --white: #ffffff;
  --surface: rgba(255, 252, 248, 0.84);
  --shadow: 0 24px 70px rgba(74, 49, 44, 0.13);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(196, 160, 111, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 96px 96px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(251, 245, 239, 0.9);
  border-bottom: 1px solid rgba(196, 160, 111, 0.2);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-grid;
  line-height: 1.1;
}

.logo span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: 0;
}

.logo small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #6d5a55;
  font-size: 14px;
}

.nav a {
  padding: 6px 0;
}

.header-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.header-button,
.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, #8f5559, var(--rose-dust));
  padding: 12px 24px;
  box-shadow: 0 14px 28px rgba(95, 54, 58, 0.18);
}

.secondary-button {
  color: var(--blush-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--soft-line);
  padding: 12px 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  min-height: 760px;
  padding: clamp(42px, 8vw, 100px) clamp(20px, 5vw, 72px) 70px;
  gap: clamp(34px, 6vw, 82px);
  background:
    radial-gradient(circle at 82% 28%, rgba(159, 100, 103, 0.16), transparent 34%),
    linear-gradient(120deg, rgba(248, 237, 229, 0.96), rgba(251, 245, 239, 0.62)),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 88px;
  right: clamp(18px, 4vw, 54px);
  bottom: 62px;
  width: min(43vw, 560px);
  content: "";
  border: 1px solid rgba(196, 160, 111, 0.28);
  border-radius: 999px 999px 24px 24px;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 5.4vw, 76px);
}

.nowrap {
  white-space: nowrap;
}

.mobile-title {
  display: none;
}

h2 {
  font-size: clamp(29px, 3.7vw, 46px);
}

.lead {
  margin: 26px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  color: var(--sage-deep);
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.cta-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.text-link {
  color: var(--blush-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.hero-image {
  position: relative;
  z-index: 1;
  align-self: end;
}

.hero-image::before {
  position: absolute;
  inset: 34px -20px -24px 34px;
  content: "";
  border: 1px solid rgba(196, 160, 111, 0.55);
  border-radius: 6px;
}

.hero-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 34px 90px rgba(74, 49, 44, 0.18);
}

.hero-note {
  position: absolute;
  left: -24px;
  bottom: 34px;
  display: grid;
  gap: 2px;
  min-width: 210px;
  padding: 18px 20px;
  background: rgba(255, 252, 248, 0.86);
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  box-shadow: 0 20px 48px rgba(74, 49, 44, 0.14);
  backdrop-filter: blur(14px);
}

.hero-note span {
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.section {
  padding: clamp(70px, 10vw, 126px) clamp(20px, 5vw, 72px);
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-lead {
  max-width: 740px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.concept {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(196, 160, 111, 0.1), transparent 30%),
    rgba(255, 252, 248, 0.86);
}

.concept::before {
  position: absolute;
  top: 78px;
  left: clamp(20px, 5vw, 72px);
  width: 90px;
  height: 1px;
  content: "";
  background: var(--champagne);
}

.concept-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  max-width: 1160px;
  margin-inline: auto;
  align-items: center;
}

.concept-copy {
  max-width: 690px;
}

.concept-copy p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
}

.concept-visual {
  position: relative;
  align-self: stretch;
}

.concept-visual::before {
  position: absolute;
  inset: 22px -18px -18px 22px;
  content: "";
  border: 1px solid rgba(196, 160, 111, 0.5);
  border-radius: 6px;
}

.concept-visual img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 28px 74px rgba(74, 49, 44, 0.14);
}

.concept-visual p {
  position: absolute;
  left: -26px;
  bottom: 28px;
  max-width: 240px;
  margin: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 252, 248, 0.88);
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(74, 49, 44, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 30px auto 0;
  padding: 0;
}

.feature-heading {
  max-width: 1160px;
  margin: 54px auto 0;
}

.feature-heading h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.feature-list article {
  min-height: 196px;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(251, 245, 239, 0.72));
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(74, 49, 44, 0.055);
}

.feature-list article span {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border: 1px solid rgba(196, 160, 111, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 15px, rgba(196, 160, 111, 0.72) 15px 17px, transparent 17px),
    linear-gradient(0deg, transparent 15px, rgba(196, 160, 111, 0.72) 15px 17px, transparent 17px);
}

.feature-list article p {
  margin: 14px 0 0;
  color: var(--muted);
}

.feature-list h3 {
  margin: 0;
  font-size: 21px;
}

.strength-section {
  background:
    radial-gradient(circle at 84% 20%, rgba(196, 160, 111, 0.12), transparent 30%),
    var(--paper);
}

.strength-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  max-width: 1160px;
  margin-inline: auto;
  align-items: center;
}

.strength-visual {
  position: relative;
  grid-row: 1 / span 2;
}

.strength-visual::before {
  position: absolute;
  inset: 24px 24px -22px -20px;
  content: "";
  border: 1px solid rgba(196, 160, 111, 0.5);
  border-radius: 6px;
}

.strength-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 28px 74px rgba(74, 49, 44, 0.14);
}

.strength-visual p {
  position: absolute;
  right: -22px;
  bottom: 32px;
  max-width: 210px;
  margin: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 252, 248, 0.9);
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(74, 49, 44, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.strength-copy .section-lead {
  margin-inline: 0;
}

.strength-list {
  display: grid;
  border-top: 1px solid var(--soft-line);
}

.strength-list article {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--soft-line);
}

.strength-list span {
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.strength-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.voice-card {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(74, 49, 44, 0.06);
}

h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.voice-card p,
.flow-list p,
.faq-list p {
  color: var(--muted);
}

.menu-section {
  background: linear-gradient(180deg, var(--paper), #f2e5dc);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 42px auto 0;
}

.menu-card {
  overflow: hidden;
  min-height: 230px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(74, 49, 44, 0.06);
}

.menu-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 14px;
  padding: 3px 10px;
  color: var(--blush-dark);
  background: rgba(159, 100, 103, 0.09);
  border: 1px solid rgba(159, 100, 103, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

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

.menu-content {
  padding: 28px 30px 30px;
}

.menu-card.accent {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(246, 232, 226, 0.88));
  border-color: rgba(159, 100, 103, 0.3);
}

.menu-name {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.menu-text {
  margin: 18px 0 0;
  color: var(--muted);
}

.price {
  margin: 28px 0 0;
  color: var(--champagne);
  font-size: 24px;
  font-weight: 700;
}

.menu-note {
  max-width: 1080px;
  margin: 22px auto 0;
  padding: 16px 20px;
  color: var(--muted);
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  text-align: center;
}

.menu-note p {
  margin: 0;
}

.mid-cta {
  padding: clamp(72px, 10vw, 116px) 20px;
  text-align: center;
  background: rgba(255, 252, 248, 0.92);
}

.mid-cta h2,
.mid-cta p {
  max-width: 720px;
  margin-inline: auto;
}

.mid-cta p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.mid-cta .primary-button {
  margin-top: 30px;
}

.mid-cta-sub {
  margin-top: 44px;
  font-size: 15px;
}

.mid-cta .text-link {
  display: inline-block;
  margin-top: 10px;
}

.flow-section {
  background: #f3e7df;
}

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1120px;
  margin: 44px auto 0;
  padding: 0;
  list-style: none;
}

.flow-list::before {
  position: absolute;
  top: 34px;
  left: 9%;
  right: 9%;
  height: 1px;
  content: "";
  background: var(--soft-line);
}

.flow-list li {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 260px;
  padding: 0 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.flow-list span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-deep), var(--champagne));
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  box-shadow: 0 14px 28px rgba(74, 49, 44, 0.12);
}

.flow-list h3 {
  margin-bottom: 14px;
}

.flow-list p {
  margin: 0;
}

.gallery-section {
  background: rgba(255, 252, 248, 0.86);
}

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

figure {
  margin: 0;
}

figure img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(74, 49, 44, 0.1);
}

figure.wide img {
  aspect-ratio: 1 / 1.15;
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
}

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

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 42px auto 0;
}

.voice-card p {
  margin: 0 0 20px;
  font-size: 17px;
}

.voice-card small {
  color: var(--blush-dark);
  font-weight: 700;
}

.faq-section {
  background: rgba(255, 252, 248, 0.86);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
  margin-top: 40px;
}

.faq-list details {
  padding: 20px 24px;
  background: rgba(251, 245, 239, 0.72);
  border: 1px solid var(--soft-line);
  border-radius: 6px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

.faq-list p {
  margin: 14px 0 0;
}

.access-section {
  background: #f2e5dc;
}

.access-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 44px;
  max-width: 1080px;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 58px);
  background: var(--surface);
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(74, 49, 44, 0.06);
}

.access-card p {
  color: var(--muted);
}

.info-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: minmax(132px, 0.45fr) 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--soft-line);
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  margin: 0;
  font-weight: 700;
}

.reserve {
  padding: clamp(70px, 10vw, 118px) 20px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 160, 111, 0.14), transparent 35%),
    var(--paper);
}

.reserve h2,
.reserve p {
  max-width: 760px;
  margin-inline: auto;
}

.reserve p:not(.eyebrow) {
  color: var(--muted);
}

.reserve-actions {
  justify-content: center;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--soft-line);
}

.footer p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

.floating-reserve {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--white);
  background: linear-gradient(135deg, #8f5559, var(--rose-dust));
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(101, 76, 67, 0.22);
  font-weight: 700;
}

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

  .nav {
    display: none;
  }

  .hero,
  .concept-shell,
  .strength-layout,
  .access-card {
    grid-template-columns: 1fr;
  }

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

  .hero::before {
    top: auto;
    right: -80px;
    bottom: 80px;
    width: 260px;
    height: 420px;
  }

  .hero-image::before {
    inset: 18px -10px -12px 18px;
  }

  .hero-image img {
    aspect-ratio: 4 / 3;
  }

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

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

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

  .menu-card {
    display: block;
    min-height: 0;
  }

  .menu-card img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .menu-content {
    padding: 24px;
  }

  .menu-name {
    font-size: 22px;
  }

  .menu-text {
    margin-top: 12px;
    font-size: 15px;
  }

  .price {
    margin-top: 18px;
    font-size: 24px;
  }

  .concept-shell {
    gap: 38px;
  }

  .concept-visual img {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }

  figure img {
    aspect-ratio: 4 / 3;
  }

  .concept-visual p {
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }

  .feature-heading {
    margin-top: 44px;
  }

  .feature-list article {
    min-height: 0;
    padding: 20px;
  }

  .feature-list h3 {
    font-size: 18px;
  }

  .flow-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .flow-list::before {
    top: 0;
    bottom: 0;
    left: 34px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .flow-list li {
    grid-template-columns: 68px 1fr;
    grid-template-rows: auto auto;
    column-gap: 22px;
    min-height: 0;
    padding: 0 0 34px;
  }

  .flow-list span {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .flow-list h3 {
    margin-top: 4px;
  }

  .strength-visual {
    order: 2;
    grid-row: auto;
  }

  .strength-copy {
    order: 1;
  }

  .strength-list {
    order: 3;
  }

  .strength-visual img {
    aspect-ratio: 16 / 7;
  }

  .strength-visual p {
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }

  .hero-note,
  .floating-reserve {
    display: none;
  }
}

@media (max-width: 520px) {
  body {
    background: var(--paper);
    font-size: 15.5px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .logo span {
    font-size: 24px;
  }

  .header-button {
    min-height: 42px;
    padding: 9px 15px;
    font-size: 13px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.18;
  }

  h2 {
    font-size: 28px;
    line-height: 1.36;
  }

  .mid-cta-title {
    font-size: clamp(25px, 6.8vw, 27px);
    line-height: 1.38;
    letter-spacing: -0.02em;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline;
  }

  h3 {
    font-size: 19px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .section {
    padding: 76px 20px;
  }

  .section-lead,
  .lead {
    font-size: 15.5px;
    line-height: 1.9;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
  }

  .hero-actions,
  .reserve-actions {
    display: grid;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 34px 16px 76px;
    background:
      linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(245, 232, 223, 0.82) 48%, rgba(251, 245, 239, 0.95) 100%),
      var(--paper);
  }

  .hero-copy {
    max-width: none;
    padding-inline: 4px;
  }

  .lead {
    margin-top: 20px;
  }

  .cta-note {
    text-align: center;
    font-size: 13px;
  }

  .hero::before,
  .hero-image::before,
  .concept::before,
  .strength-visual::before {
    display: none;
  }

  .hero-image {
    width: calc(100% + 12px);
    margin-inline: -6px;
  }

  .hero-image img {
    aspect-ratio: 1 / 1.05;
    object-position: 58% center;
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(74, 49, 44, 0.16);
  }

  .text-link {
    width: fit-content;
  }

  .concept-shell {
    gap: 34px;
  }

  .concept-copy p {
    margin-top: 22px;
    font-size: 15.5px;
    line-height: 1.95;
  }

  .concept-visual img,
  .strength-visual img {
    min-height: 0;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(74, 49, 44, 0.12);
  }

  .concept-visual img {
    aspect-ratio: 1 / 1.08;
  }

  .feature-heading {
    margin-top: 58px;
  }

  .feature-heading h2 {
    font-size: 26px;
  }

  .feature-list {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .feature-list article {
    min-height: 178px;
    padding: 22px 18px;
  }

  .feature-list article span {
    width: 28px;
    height: 28px;
    margin-bottom: 16px;
    background:
      linear-gradient(90deg, transparent 13px, rgba(196, 160, 111, 0.72) 13px 15px, transparent 15px),
      linear-gradient(0deg, transparent 13px, rgba(196, 160, 111, 0.72) 13px 15px, transparent 15px);
  }

  .feature-list h3 {
    font-size: 18px;
  }

  .feature-list article p {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.75;
  }

  .strength-section,
  .menu-section,
  .flow-section,
  .access-section {
    background: #f1e4db;
  }

  .strength-layout {
    gap: 34px;
  }

  .strength-copy .section-lead {
    margin-top: 18px;
  }

  .strength-visual {
    margin-top: 4px;
  }

  .strength-visual img {
    aspect-ratio: 16 / 9;
  }

  .strength-list {
    border-top: 0;
    gap: 14px;
  }

  .strength-list article {
    padding: 22px 20px;
    background: rgba(255, 252, 248, 0.72);
    border: 1px solid var(--soft-line);
    border-radius: 8px;
  }

  .strength-list span {
    font-size: 15px;
  }

  .menu-card {
    min-height: 0;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(74, 49, 44, 0.075);
  }

  .menu-grid {
    gap: 22px;
    margin-top: 34px;
  }

  .menu-card img {
    aspect-ratio: 16 / 10.5;
  }

  .menu-content {
    padding: 26px 24px 28px;
  }

  .menu-note {
    margin-top: 24px;
    padding: 16px 18px;
    font-size: 13.5px;
    line-height: 1.75;
  }

  .mid-cta,
  .reserve {
    padding: 76px 20px;
  }

  .mid-cta {
    background: rgba(255, 252, 248, 0.94);
  }

  .mid-cta-sub {
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.8;
  }

  .flow-list {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .flow-list li,
  .voice-card {
    padding: 24px;
  }

  .flow-list li {
    grid-template-columns: 58px 1fr;
    column-gap: 18px;
    padding: 0 0 30px;
  }

  .flow-list::before {
    left: 29px;
  }

  .flow-list span {
    width: 58px;
    height: 58px;
  }

  .gallery-grid {
    gap: 24px;
    margin-top: 34px;
  }

  figure img {
    aspect-ratio: 1 / 1.08;
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(74, 49, 44, 0.1);
  }

  .gallery-grid figure:nth-child(2) img {
    aspect-ratio: 1 / 0.86;
  }

  .strength-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .voice-grid {
    gap: 16px;
    margin-top: 34px;
  }

  .voice-card {
    border-radius: 8px;
  }

  .faq-list {
    gap: 14px;
    margin-top: 30px;
  }

  .faq-list details,
  .access-card {
    border-radius: 8px;
  }

  .access-card {
    gap: 28px;
    padding: 28px 22px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer {
    display: grid;
  }

}
