:root {
  --ink: #172d35;
  --ink-soft: #48626b;
  --paper: #fbfcfa;
  --mist: #edf5f0;
  --sage: #6f9488;
  --sage-dark: #426f65;
  --navy: #15384a;
  --copper: #b96d55;
  --line: rgba(23, 45, 53, 0.14);
  --shadow: 0 18px 50px rgba(21, 56, 74, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: white;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 252, 250, 0.95);
  box-shadow: 0 8px 30px rgba(21, 56, 74, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 188px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: 0;
  opacity: 0.78;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: var(--sage-dark);
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 6vw, 80px) 56px;
  color: white;
}

.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 36, 43, 0.74) 0%, rgba(10, 36, 43, 0.5) 37%, rgba(10, 36, 43, 0.08) 72%),
    linear-gradient(0deg, rgba(10, 36, 43, 0.22), rgba(10, 36, 43, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 670px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c7ad;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 6vw, 72px);
  max-width: 11em;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 20px;
}

.hero-lead {
  max-width: 600px;
  margin: 24px 0 0;
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(255, 255, 255, 0.88);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  color: white;
  background: var(--sage-dark);
  box-shadow: 0 12px 28px rgba(21, 56, 74, 0.22);
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.button.line {
  color: var(--navy);
  background: white;
  border-color: var(--line);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 650px;
  margin: 44px 0 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.hero-facts div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  font-size: 20px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 44px);
  background: white;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 16px;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
}

.section {
  padding: clamp(72px, 10vw, 120px) clamp(18px, 6vw, 80px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 auto;
}

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

.feature-card,
.price-card,
blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.feature-card::before {
  content: attr(data-feature);
  position: absolute;
  right: 22px;
  top: 10px;
  color: rgba(111, 148, 136, 0.12);
  font-family: Georgia, serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.feature-card::after {
  content: none;
}

.feature-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 32px;
  margin: 16px 0 28px;
  border: 1px solid rgba(66, 111, 101, 0.24);
  border-radius: 999px;
  color: var(--sage-dark);
  background: var(--mist);
  font-size: 12px;
  font-weight: 900;
}

.feature-number::before {
  content: "POINT";
  margin-right: 5px;
  color: var(--ink-soft);
  font-size: 10px;
}

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

.feature-card p,
.price-card p,
blockquote p,
.split-copy p,
.reserve p {
  color: var(--ink-soft);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background: var(--mist);
}

.split-section.reverse {
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1fr);
  background: white;
}

.split-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-copy {
  max-width: 560px;
}

.split-copy p {
  margin: 22px 0 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--sage-dark);
  border-bottom: 2px solid var(--sage-dark);
  transform: rotate(-45deg);
}

.symptoms {
  background: #f8fafb;
}

.symptom-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.symptom-list span {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-weight: 800;
}

.note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 14px;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.mini-metrics div {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--mist);
}

.mini-metrics strong,
.mini-metrics span {
  display: block;
}

.mini-metrics strong {
  font-size: 21px;
}

.mini-metrics span {
  color: var(--ink-soft);
  font-size: 13px;
}

.menu {
  background: var(--navy);
  color: white;
}

.menu .section-heading .eyebrow,
.menu .section-heading h2 {
  color: white;
}

.price-card {
  padding: 30px;
  color: var(--ink);
}

.price-card.highlight {
  border-top: 1px solid var(--line);
}

.price-card .label {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--sage-dark);
  background: var(--mist);
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

.price-card span {
  display: inline-block;
  margin-top: 16px;
  color: var(--copper);
  font-weight: 900;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: white;
  background: var(--sage-dark);
  font-weight: 900;
}

.flow-list p {
  color: var(--ink-soft);
}

.voices {
  background: var(--mist);
}

blockquote {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  padding: 30px;
}

blockquote p {
  flex: 1;
  margin-top: 0;
}

.voice-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.voice-person img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(21, 56, 74, 0.14);
}

cite {
  display: block;
  color: var(--sage-dark);
  font-style: normal;
  font-weight: 900;
}

.access {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.access-copy {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.access-copy dl {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.access-copy dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.access-copy dt {
  color: var(--sage-dark);
  font-weight: 900;
}

.access-copy dd {
  margin: 0;
  color: var(--ink-soft);
}

.map-panel {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 0;
  background: white;
  box-shadow: var(--shadow);
}

.map-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.reserve {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  width: calc(100% - clamp(36px, 12vw, 160px));
  max-width: 1280px;
  margin: 0 auto clamp(60px, 8vw, 90px);
  padding: clamp(34px, 6vw, 58px);
  border-radius: var(--radius);
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--sage-dark));
}

.reserve .eyebrow,
.reserve p {
  color: rgba(255, 255, 255, 0.82);
}

.reserve h2 {
  color: white;
  font-size: clamp(28px, 3vw, 38px);
}

.reserve p {
  max-width: 720px;
  margin: 16px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 6vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding-top: 12px;
  }

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

  .hero {
    min-height: 780px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(10, 36, 43, 0.82), rgba(10, 36, 43, 0.32));
  }

  .trust-strip,
  .intro-grid,
  .price-grid,
  .voice-grid,
  .flow-list,
  .access,
  .reserve {
    grid-template-columns: 1fr;
  }

  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-image {
    order: -1;
  }

  .reserve-actions {
    margin-top: 0;
  }
}

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

  .brand {
    min-width: 0;
  }

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

  .hero {
    min-height: 760px;
    padding: 104px 18px 40px;
  }

  .hero > img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(10, 36, 43, 0.46), rgba(10, 36, 43, 0.72)),
      linear-gradient(90deg, rgba(10, 36, 43, 0.82), rgba(10, 36, 43, 0.18));
  }

  h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-actions,
  .reserve-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .feature-card,
  .price-card,
  blockquote,
  .flow-list li,
  .access-copy {
    padding: 24px;
  }

  .section {
    padding: 64px 18px;
  }

  .split-section,
  .split-section.reverse {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mini-metrics,
  .access-copy dl div {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 320px;
  }

  .map-panel img {
    min-height: 320px;
  }

  .reserve {
    width: calc(100% - 36px);
    margin: 0 auto 56px;
  }

  .site-footer {
    display: block;
  }
}
