:root {
  --ink: #334137;
  --ink-soft: #667067;
  --green-deep: #526d58;
  --green: #819c77;
  --green-light: #dfe8d7;
  --green-pale: #edf2e8;
  --ivory: #f8f7f1;
  --beige: #e9e0d2;
  --warm-white: #fffefa;
  --line: rgba(74, 94, 77, 0.14);
  --instagram: #9b6d79;
  --line-app: #5e8e65;
  --shadow: 0 22px 70px rgba(72, 84, 71, 0.12);
  --shadow-small: 0 10px 34px rgba(72, 84, 71, 0.1);
  --radius-large: 34px;
  --radius-medium: 22px;
  --radius-small: 14px;
  --container: 1160px;
  --font-sans:
    -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --font-serif:
    "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro",
    serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.8;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(129, 156, 119, 0.28);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 940px;
}

.section {
  padding: 112px 0;
}

.demo-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 16px;
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.demo-bar strong {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 247, 241, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 40px), 1240px);
  height: 78px;
  margin-inline: auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50% 50% 48% 52% / 57% 43% 57% 43%;
  background: var(--green-deep);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  box-shadow: 0 8px 22px rgba(82, 109, 88, 0.18);
  transform: rotate(-6deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.global-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 28px;
}

.global-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--green-deep);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-inline: 21px;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-cta:hover {
  background: #405c47;
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 76px 0 90px;
  background:
    linear-gradient(110deg, rgba(248, 247, 241, 0.98), rgba(248, 247, 241, 0.78)),
    var(--ivory);
  isolation: isolate;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-decoration-one {
  top: -210px;
  right: -120px;
  width: 580px;
  height: 580px;
  background: rgba(214, 227, 204, 0.64);
}

.hero-decoration-two {
  bottom: -300px;
  left: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(129, 156, 119, 0.24);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker,
.eyebrow {
  margin: 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-kicker::before {
  width: 34px;
  height: 1px;
  background: var(--green);
  content: "";
}

.hero h1 {
  margin: 28px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.48;
}

.hero-lead {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.1;
}

.hero-actions,
.reservation-actions {
  display: flex;
  margin-top: 34px;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 24px;
  box-shadow: var(--shadow-small);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button:hover {
  box-shadow: 0 15px 38px rgba(72, 84, 71, 0.16);
  filter: brightness(0.96);
  transform: translateY(-2px);
}

.button-line {
  background: var(--line-app);
}

.button-instagram {
  background: var(--instagram);
}

.button-label {
  display: inline-grid;
  min-width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.02em;
}

.hero-facts {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  padding: 18px 15px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.6;
}

.hero-facts span {
  display: block;
  margin-bottom: 5px;
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  padding: 0 0 46px 26px;
}

.hero-image-frame {
  position: relative;
  min-height: 560px;
  border-radius: 180px 20px 180px 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image-frame::after,
.care-visual::after,
.flow-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(75, 98, 78, 0.08));
  content: "";
  pointer-events: none;
}

.hero-image-frame img,
.care-visual img,
.flow-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-label {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(50, 63, 54, 0.66);
  color: rgba(255, 255, 255, 0.9);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  backdrop-filter: blur(8px);
}

.hero-note {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  display: flex;
  min-width: 300px;
  align-items: center;
  gap: 16px;
  border-radius: var(--radius-small);
  background: var(--warm-white);
  box-shadow: var(--shadow-small);
  padding: 17px 20px;
}

.hero-note span {
  display: grid;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-deep);
  font-family: Georgia, serif;
  font-size: 12px;
}

.hero-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.8;
}

.section-heading h2 {
  margin: 13px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.5;
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered > p:not(.eyebrow) {
  margin-inline: auto;
}

.concerns {
  background: var(--warm-white);
}

.concern-list {
  display: grid;
  margin: 50px auto 0;
  padding: 0;
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.concern-list li {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--ivory);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 20px;
}

.concern-list li:last-child {
  grid-column: 1 / -1;
  width: calc(50% - 7px);
  justify-self: center;
}

.concern-list li span {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--green);
  border-radius: 50%;
}

.concern-list li span::after {
  position: absolute;
  top: 5px;
  left: 8px;
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--green-deep);
  border-bottom: 1.5px solid var(--green-deep);
  content: "";
  transform: rotate(42deg);
}

.concern-message {
  position: relative;
  margin: 50px auto 0;
  color: var(--green-deep);
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
}

.concern-message::before {
  display: block;
  width: 1px;
  height: 32px;
  margin: 0 auto 18px;
  background: var(--green);
  content: "";
}

.care {
  background: var(--green-pale);
}

.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 80px;
}

.care-visual {
  position: relative;
  min-height: 590px;
  border-radius: 20px 170px 20px 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.care-copy {
  max-width: 500px;
}

.care-catch {
  color: var(--green-deep) !important;
  font-family: var(--font-serif);
  font-size: 18px !important;
  letter-spacing: 0.04em;
}

.care-text {
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.1;
}

.care-text p {
  margin: 0;
}

.care-text p + p {
  margin-top: 16px;
}

.price-panel {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(82, 109, 88, 0.2);
  border-radius: var(--radius-medium);
  background: var(--warm-white);
  box-shadow: var(--shadow-small);
  overflow: hidden;
}

.price-panel > div {
  padding: 21px 22px;
}

.price-panel > div + div {
  border-left: 1px solid var(--line);
}

.price-panel span {
  display: block;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.price-panel strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.price-panel strong small {
  margin-left: 3px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
}

.price-panel .first-price {
  background: var(--green-deep);
}

.price-panel .first-price span,
.price-panel .first-price strong {
  color: #fff;
}

.care-notice {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.8;
}

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

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

.menu-card {
  position: relative;
  display: flex;
  min-height: 345px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--warm-white);
  box-shadow: var(--shadow-small);
  padding: 38px;
  overflow: hidden;
}

.menu-card-featured {
  border-color: rgba(94, 142, 101, 0.34);
}

.menu-card-featured::before {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--green-pale);
  content: "";
}

.menu-tag {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  margin: 0;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
}

.menu-number {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.menu-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}

.menu-card > p:not(.menu-tag) {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.menu-prices {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: auto;
  align-items: flex-end;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.menu-prices span {
  color: var(--ink-soft);
  font-size: 11px;
}

.menu-prices strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.menu-prices .accent,
.menu-prices .accent strong {
  color: var(--green-deep);
}

.menu-inquiry {
  display: grid;
  margin-top: 22px;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 32px;
  border-radius: var(--radius-medium);
  background: var(--beige);
  padding: 30px 38px;
}

.menu-inquiry h3 {
  margin: 7px 0 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
}

.menu-inquiry > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 2;
}

.features {
  background: var(--warm-white);
}

.features-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: 60px;
}

.features-intro > p {
  margin: 0 0 9px;
  max-width: 580px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

.feature-grid {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
}

.feature-grid article {
  grid-column: span 2;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--ivory);
  padding: 28px;
}

.feature-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.feature-grid article span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-deep);
  font-family: Georgia, serif;
  font-size: 11px;
}

.feature-grid h3 {
  margin: 26px 0 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
}

.feature-grid p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 2;
}

.flow {
  background: var(--beige);
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 78px;
}

.flow-side {
  min-width: 0;
}

.flow-image {
  position: relative;
  height: 310px;
  margin-top: 38px;
  border-radius: 120px 20px 20px 20px;
  box-shadow: var(--shadow-small);
  overflow: hidden;
}

.flow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-steps li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  border-bottom: 1px solid rgba(82, 109, 88, 0.17);
  padding: 24px 0;
}

.flow-steps li:first-child {
  padding-top: 4px;
}

.flow-steps > li > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(82, 109, 88, 0.25);
  border-radius: 50%;
  background: rgba(255, 254, 250, 0.5);
  color: var(--green-deep);
  font-family: Georgia, serif;
  font-size: 11px;
}

.flow-steps h3 {
  margin: 1px 0 0;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
}

.flow-steps p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.9;
}

.faq {
  background: var(--ivory);
}

.faq-list {
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  padding: 20px 52px 20px 4px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span,
.faq-answer > span {
  color: var(--green-deep);
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 500;
}

.faq-list summary i {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 10px;
  left: 4px;
  width: 14px;
  height: 1px;
  background: var(--green-deep);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  padding: 0 48px 26px 4px;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.access {
  background: var(--green-pale);
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 72px;
}

.access-heading {
  position: sticky;
  top: 116px;
}

.text-link {
  display: inline-flex;
  margin-top: 34px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--green-deep);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 6px;
}

.info-card {
  border-radius: var(--radius-large);
  background: var(--warm-white);
  box-shadow: var(--shadow);
  padding: 42px 46px;
}

.info-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.info-card dl {
  margin: 30px 0 0;
}

.info-card dl > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 17px 0;
}

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

.info-card dt {
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.info-card dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
}

.info-card dd a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(82, 109, 88, 0.35);
  text-underline-offset: 4px;
}

.reservation {
  position: relative;
  background: var(--green-deep);
  color: #fff;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.reservation .eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.reservation h2 {
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.reservation .container > p:not(.eyebrow, .demo-link-note) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

.reservation .button {
  min-width: 250px;
  border-color: rgba(255, 255, 255, 0.18);
}

.demo-link-note {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.reservation-leaf {
  position: absolute;
  z-index: -1;
  width: 270px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100% 0 100% 0;
}

.reservation-leaf-one {
  top: -220px;
  left: -60px;
  transform: rotate(28deg);
}

.reservation-leaf-two {
  right: -80px;
  bottom: -300px;
  transform: rotate(205deg);
}

.site-footer {
  background: #2f3932;
  color: #fff;
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.12);
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.48);
}

.footer-address {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.9;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.footer-notice {
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
}

.footer-notice > p:first-child {
  margin: 0;
  max-width: 1000px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 2;
}

.copyright {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.32);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.mobile-reservation {
  display: none;
}

.demo-toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  max-width: 340px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-small);
  background: rgba(47, 57, 50, 0.94);
  box-shadow: 0 16px 45px rgba(35, 43, 37, 0.24);
  color: #fff;
  font-size: 11px;
  line-height: 1.7;
  opacity: 0;
  padding: 14px 18px;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(10px);
}

.demo-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .global-nav {
    gap: 18px;
  }

  .global-nav a {
    font-size: 11px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    gap: 38px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .header-inner {
    height: 70px;
  }

  .global-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    margin: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(248, 247, 241, 0.98);
    gap: 0;
    opacity: 0;
    padding: 12px 20px 22px;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    padding: 14px 4px;
  }

  .global-nav a::after {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--warm-white);
    gap: 5px;
    padding: 0;
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 58px 0 76px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-actions {
    display: flex;
    max-width: 560px;
    align-items: initial;
    flex-direction: row;
  }

  .hero-visual {
    max-width: 740px;
    padding-left: 38px;
  }

  .hero-image-frame {
    min-height: 520px;
  }

  .care-grid,
  .flow-layout,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .care-visual {
    min-height: 520px;
  }

  .care-copy {
    max-width: none;
  }

  .flow-image {
    max-width: 680px;
  }

  .access-heading {
    position: static;
  }

  .info-card {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .demo-bar {
    min-height: 30px;
    gap: 7px;
    font-size: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(34px, 10.5vw, 46px);
    letter-spacing: 0.015em;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
    overflow-wrap: anywhere;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions,
  .reservation-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-facts li {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
  }

  .hero-facts span {
    margin: 0;
  }

  .hero-visual {
    padding: 0 0 42px 12px;
  }

  .hero-image-frame {
    min-height: 430px;
    border-radius: 110px 14px 110px 14px;
  }

  .hero-note {
    min-width: 0;
    max-width: 285px;
    padding: 14px 16px;
  }

  .hero-note span {
    width: 36px;
    height: 36px;
  }

  .section-heading h2 {
    font-size: 32px;
    line-height: 1.55;
  }

  .section-heading > p:not(.eyebrow) {
    font-size: 13px;
  }

  .concern-list {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .concern-list li:last-child {
    grid-column: auto;
    width: 100%;
  }

  .concern-list li {
    min-height: 62px;
    font-size: 13px;
    padding: 14px 17px;
  }

  .concern-message {
    margin-top: 40px;
    font-size: 17px;
    line-height: 1.9;
  }

  .care-visual {
    min-height: 420px;
    border-radius: 16px 100px 16px 16px;
  }

  .care-catch {
    font-size: 16px !important;
  }

  .price-panel {
    grid-template-columns: 1fr;
  }

  .price-panel > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .menu-card {
    min-height: 320px;
    padding: 29px 25px;
  }

  .menu-card h3 {
    font-size: 21px;
  }

  .menu-prices {
    gap: 17px;
  }

  .menu-prices strong {
    font-size: 23px;
  }

  .menu-inquiry {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 27px 24px;
  }

  .features-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .feature-grid article,
  .feature-grid article:nth-child(4) {
    min-height: 0;
    grid-column: auto;
    padding: 24px;
  }

  .feature-grid h3 {
    margin-top: 18px;
  }

  .flow-image {
    height: 250px;
    border-radius: 90px 16px 16px 16px;
  }

  .flow-steps li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .flow-steps > li > span {
    width: 43px;
    height: 43px;
  }

  .faq-list {
    margin-top: 35px;
  }

  .faq-list summary {
    min-height: 76px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.8;
    padding: 21px 42px 21px 0;
  }

  .faq-list summary > span,
  .faq-answer > span {
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 12px 24px 0;
  }

  .info-card {
    border-radius: var(--radius-medium);
    padding: 29px 24px;
  }

  .info-card h3 {
    font-size: 21px;
    line-height: 1.5;
  }

  .info-card dl > div {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 13px;
  }

  .reservation h2 {
    font-size: 30px;
  }

  .reservation .button {
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
  }

  .footer-notice {
    margin-top: 38px;
  }

  .mobile-reservation {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border-top: 1px solid var(--line);
    background: rgba(255, 254, 250, 0.96);
    box-shadow: 0 -12px 32px rgba(49, 61, 52, 0.12);
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    backdrop-filter: blur(16px);
  }

  .mobile-reservation a {
    display: flex;
    min-width: 0;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }

  .mobile-reservation span {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 8px;
  }

  .mobile-line {
    background: var(--line-app);
  }

  .mobile-instagram {
    background: var(--instagram);
  }

  .demo-toast {
    right: 12px;
    bottom: 82px;
    left: 12px;
    max-width: none;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
