:root {
  --green-950: #0d302e;
  --green-900: #173f3b;
  --green-800: #20534c;
  --green-700: #2d6c61;
  --green-100: #e6f0ec;
  --green-50: #f3f8f5;
  --lime: #acd45d;
  --line: #06c755;
  --ink: #1f2b29;
  --muted: #65716e;
  --cream: #fbf8f1;
  --white: #ffffff;
  --border: #dce6e1;
  --shadow: 0 18px 50px rgba(23, 63, 59, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --page: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

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

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

button,
input {
  font: inherit;
}

.mobile-only {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 0 clamp(20px, 4vw, 58px);
  border-bottom: 1px solid rgba(23, 63, 59, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1.15;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50% 50% 50% 12px;
  color: var(--white);
  background: var(--green-900);
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
}

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

.brand strong {
  color: var(--green-950);
  font-size: 17px;
  letter-spacing: 0.12em;
}

.brand small {
  margin-top: 4px;
  color: var(--green-700);
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #3c4f4b;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-700);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 28px;
  color: var(--green-950);
}

.header-phone-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-size: 21px;
  line-height: 1;
}

.header-phone small,
.header-phone strong {
  display: block;
  line-height: 1.25;
}

.header-phone small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.header-phone strong {
  margin-top: 2px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(680px, calc(100vh - 74px));
  overflow: hidden;
  background: #dce6e1;
  isolation: isolate;
}

.hero-photo,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 36, 33, 0.84) 0%, rgba(9, 36, 33, 0.62) 42%, rgba(9, 36, 33, 0.08) 76%),
    linear-gradient(0deg, rgba(9, 36, 33, 0.28), transparent 38%);
}

.hero-content {
  width: var(--page);
  margin: auto;
  padding: 76px 0 86px;
  color: var(--white);
}

.hero-eyebrow {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-eyebrow span,
.hero h1 span,
.hero h1 strong,
.hero-copy span {
  display: table;
}

.hero h1 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.hero h1 span {
  margin-bottom: 4px;
  font-size: clamp(24px, 3vw, 37px);
}

.hero h1 strong {
  color: var(--lime);
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: 0.1em;
}

.hero-copy {
  margin: 22px 0;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin: 24px 0 28px;
}

.hero-badges span {
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(13, 48, 46, 0.5);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero-actions,
.final-actions {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

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

.button-phone {
  color: var(--green-950);
  background: var(--white);
}

.button-label {
  display: inline-grid;
  min-width: 42px;
  height: 25px;
  margin-right: 10px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.sample-note {
  position: absolute;
  right: 22px;
  bottom: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  width: var(--page);
  margin: 0 auto 22px;
  text-align: center;
}

.section-heading p {
  margin: 0 0 5px;
  color: var(--green-700);
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.section-heading h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(30px, 3.7vw, 45px);
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.section-heading > span {
  display: block;
  width: 38px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--lime);
}

.section-heading.light p,
.section-heading.light h2 {
  color: var(--white);
}

.section-heading.align-left {
  width: auto;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading.align-left > span {
  margin-left: 0;
}

.section-lead {
  max-width: 680px;
  margin: 0 auto 52px;
  padding: 0 20px;
  color: var(--muted);
  text-align: center;
}

.about-section {
  background:
    radial-gradient(circle at 7% 13%, rgba(172, 212, 93, 0.18), transparent 18%),
    var(--white);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  width: var(--page);
  margin: auto;
}

.concern-card {
  min-width: 0;
  padding: 24px 16px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.concern-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.concern-illustration {
  display: grid;
  height: 130px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 14px;
  background: var(--green-50);
  overflow: hidden;
}

.concern-illustration img {
  width: 88%;
  height: 112px;
  object-fit: contain;
}

.concern-card h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 16px;
}

.concern-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.about-message {
  position: relative;
  width: min(820px, calc(100% - 40px));
  margin: 50px auto 0;
  padding: 24px 38px;
  border-radius: 16px;
  color: var(--green-950);
  background: var(--green-50);
  text-align: center;
}

.about-message > span {
  position: absolute;
  top: -28px;
  left: 22px;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
}

.about-message p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.reasons-section {
  position: relative;
  background:
    linear-gradient(rgba(13, 48, 46, 0.96), rgba(13, 48, 46, 0.96)),
    url("assets/interior.webp") center / cover;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: var(--page);
  margin: 48px auto 0;
}

.reason-card {
  position: relative;
  padding: 30px 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(8px);
}

.reason-card b {
  position: absolute;
  top: 14px;
  right: 17px;
  color: rgba(255, 255, 255, 0.22);
  font-family: Georgia, serif;
  font-size: 34px;
}

.reason-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--lime);
  font-size: 14px;
  font-weight: 900;
}

.reason-card h3 {
  margin: 0 0 9px;
  font-size: 19px;
}

.reason-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: min(940px, calc(100% - 40px));
  margin: 48px auto 0;
}

.menu-card {
  position: relative;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(23, 63, 59, 0.08);
  overflow: hidden;
}

.menu-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  content: "";
}

.insurance-card::before {
  background: var(--green-700);
}

.private-card::before {
  background: var(--lime);
}

.menu-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--green-800);
  background: var(--green-100);
  font-size: 11px;
  font-weight: 800;
}

.menu-number {
  position: absolute;
  top: 21px;
  right: 29px;
  color: #e8eeeb;
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1;
}

.menu-card h3 {
  margin: 18px 0 12px;
  color: var(--green-950);
  font-size: 25px;
}

.menu-summary {
  min-height: 85px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.menu-card ul {
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.menu-card li {
  position: relative;
  padding-left: 25px;
  color: #42504d;
  font-size: 14px;
}

.menu-card li + li {
  margin-top: 8px;
}

.menu-card li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  content: "✓";
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-size: 10px;
  font-weight: 900;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--green-950);
}

.price small {
  font-weight: 800;
}

.price strong {
  font-size: 21px;
}

.price em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.menu-note {
  margin: 7px 0 0;
  color: #7a8582;
  font-size: 10px;
  text-align: right;
}

.oxygen-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  width: min(940px, calc(100% - 40px));
  min-height: 250px;
  margin: 26px auto 0;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--green-900);
  overflow: hidden;
}

.oxygen-banner > div {
  padding: 44px;
}

.oxygen-banner span {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.oxygen-banner h3 {
  margin: 10px 0;
  font-size: 24px;
}

.oxygen-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.oxygen-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-section {
  display: grid;
  grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
  align-items: stretch;
  width: var(--page);
  max-width: 1120px;
  min-height: 0;
  margin: 0 auto;
  padding: 110px 0;
}

.director-photo {
  position: relative;
  height: 560px;
  min-height: 0;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}

.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.director-photo > span {
  position: absolute;
  right: 18px;
  bottom: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.director-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 560px;
  padding: 46px clamp(38px, 5vw, 62px);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--green-50);
}

.director-greeting {
  margin: 8px 0 20px;
  color: var(--green-950);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 700;
  line-height: 1.8;
}

.director-copy > p:not(.director-greeting) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.director-name {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #cbdad3;
}

.director-name small,
.director-name strong,
.director-name span {
  display: block;
}

.director-name small {
  color: var(--green-700);
  font-size: 11px;
  font-weight: 800;
}

.director-name strong {
  margin-top: 3px;
  color: var(--green-950);
  font-size: 23px;
  letter-spacing: 0.14em;
}

.director-name span {
  margin-top: 5px;
  color: #899390;
  font-size: 10px;
}

.clinic-section {
  background: var(--white);
}

.gallery-shell {
  position: relative;
  width: min(1240px, calc(100% - 72px));
  margin: auto;
}

.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  overflow: hidden;
}

.gallery-card {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 63, 59, 0.08);
  overflow: hidden;
}

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

.gallery-card figcaption {
  padding: 16px 17px 18px;
}

.gallery-card strong,
.gallery-card span {
  display: block;
}

.gallery-card strong {
  color: var(--green-950);
  font-size: 15px;
}

.gallery-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: calc(50% - 28px);
  display: none;
  width: 48px;
  height: 48px;
  padding: 0 0 5px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 8px 20px rgba(13, 48, 46, 0.22);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.gallery-arrow.prev {
  left: -24px;
}

.gallery-arrow.next {
  right: -24px;
}

.gallery-dots {
  display: none;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}

.gallery-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c8d2ce;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.gallery-dots button.active {
  width: 22px;
  background: var(--green-700);
}

.swipe-hint {
  display: none;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.access-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: var(--green-950);
}

.access-content {
  padding: clamp(70px, 8vw, 120px);
  color: var(--white);
}

.access-summary {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.access-pin {
  display: grid;
  width: 59px;
  height: 59px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50% 50% 50% 12px;
  color: var(--green-950);
  background: var(--lime);
  font-weight: 900;
  transform: rotate(-12deg);
}

.access-pin + div > * {
  display: block;
}

.access-summary small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.access-summary strong {
  font-size: 27px;
  letter-spacing: 0.08em;
}

.access-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.clinic-data {
  margin: 0;
}

.clinic-data > div {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 8px 0;
}

.clinic-data dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
}

.clinic-data dd {
  margin: 0;
  font-size: 14px;
}

.clinic-data dd small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.access-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 30px;
}

.access-buttons .button {
  min-width: 0;
  padding: 0 10px;
  font-size: 12px;
}

.light-phone {
  color: var(--green-950);
}

.access-details {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(55px, 7vw, 100px);
  background: var(--green-50);
}

.hours-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hours-card h3 {
  margin: 0 0 17px;
  color: var(--green-950);
  font-size: 18px;
}

.hours-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.hours-row {
  display: grid;
  grid-template-columns: 1.8fr repeat(7, 0.65fr);
  align-items: center;
  min-width: 0;
}

.hours-row + .hours-row {
  border-top: 1px solid var(--border);
}

.hours-row > * {
  min-width: 0;
  padding: 10px 4px;
  text-align: center;
}

.hours-row.head {
  color: var(--white);
  background: var(--green-800);
  font-size: 11px;
  font-weight: 700;
}

.hours-row:not(.head) {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
}

.hours-row:not(.head) strong {
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
}

.hours-card > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.map-wrap {
  position: relative;
  min-height: 310px;
  border-radius: var(--radius-md);
  background: #dce3df;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  inset: 0;
}

.map-wrap > a {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 6px 18px rgba(13, 48, 46, 0.2);
  font-size: 11px;
  font-weight: 800;
}

.final-cta {
  padding: 90px 20px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 48, 46, 0.93), rgba(13, 48, 46, 0.82)),
    url("assets/hero.webp") center 35% / cover;
  text-align: center;
}

.final-cta > p {
  margin: 0 0 9px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(25px, 3.4vw, 40px);
  line-height: 1.55;
}

.final-actions {
  justify-content: center;
  margin-top: 30px;
}

footer {
  padding: 48px 20px;
  color: #82908c;
  background: #0a2220;
  text-align: center;
}

.footer-brand {
  color: var(--white);
}

.footer-brand strong {
  color: var(--white);
}

footer > p {
  margin: 17px 0 8px;
  font-size: 11px;
}

footer > small {
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.mobile-fixed-cta {
  display: none;
}

.placeholder-dialog {
  position: fixed;
  z-index: 500;
  display: grid;
  padding: 20px;
  place-items: center;
  background: rgba(5, 24, 22, 0.68);
  backdrop-filter: blur(5px);
  inset: 0;
}

.placeholder-dialog[hidden] {
  display: none;
}

.placeholder-dialog > div {
  position: relative;
  width: min(430px, 100%);
  padding: 37px 30px 32px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.placeholder-dialog p {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 19px;
  font-weight: 900;
}

.placeholder-dialog span {
  color: var(--muted);
  font-size: 13px;
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  place-items: center;
  color: var(--green-950);
  background: transparent;
  cursor: pointer;
  font-size: 28px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 131;
    display: grid;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 11px 9px;
    border: 0;
    place-content: center;
    gap: 5px;
    border-radius: 50%;
    color: var(--green-950);
    background: var(--green-50);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

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

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

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

  .mobile-menu {
    position: fixed;
    z-index: 125;
    display: block;
    inset: 74px 0 0;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu-backdrop {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(6, 28, 25, 0.58);
    backdrop-filter: blur(3px);
    inset: 0;
  }

  .mobile-menu nav {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 90%);
    height: 100%;
    padding: 32px 26px 40px;
    background: var(--white);
    box-shadow: -20px 25px 60px rgba(13, 48, 46, 0.22);
    overflow-y: auto;
  }

  .mobile-menu nav > p {
    margin: 0 0 13px;
    color: var(--green-700);
    font-family: Georgia, serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
  }

  .mobile-menu nav > a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 2px;
    border-bottom: 1px solid var(--border);
    color: var(--green-950);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-menu nav > a > span {
    color: var(--green-700);
    font-family: Georgia, serif;
    font-size: 11px;
  }

  .mobile-menu-actions {
    display: grid;
    gap: 8px;
    margin-top: 24px;
  }

  .mobile-menu-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 12px;
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-menu-actions a:first-child {
    background: var(--green-900);
  }

  .mobile-menu-actions a:last-child {
    background: var(--line);
  }

  .mobile-menu-actions small {
    display: inline-grid;
    height: 21px;
    margin-right: 7px;
    padding: 0 7px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-family: Arial, sans-serif;
    font-size: 8px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .concern-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .director-section {
    grid-template-columns: minmax(300px, 38%) minmax(0, 1fr);
    padding: 86px 0;
  }

  .director-photo,
  .director-copy {
    height: 540px;
  }

  .director-copy {
    padding: 38px;
  }

  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clinic-gallery {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .clinic-gallery::-webkit-scrollbar {
    display: none;
  }

  .gallery-card {
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
  }

  .gallery-arrow,
  .gallery-dots {
    display: flex;
  }

  .gallery-arrow {
    display: grid;
    place-items: center;
  }

  .access-section {
    grid-template-columns: 1fr;
  }

  .access-content,
  .access-details {
    padding-right: max(40px, 8vw);
    padding-left: max(40px, 8vw);
  }
}

@media (max-width: 700px) {
  :root {
    --page: calc(100% - 32px);
    --radius-lg: 22px;
  }

  html {
    scroll-padding-top: 62px;
  }

  body {
    padding-bottom: 66px;
  }

  .mobile-only {
    display: block;
  }

  .site-header {
    min-height: 62px;
    padding: 0 15px;
  }

  .mobile-menu {
    inset-block-start: 62px;
  }

  .brand {
    gap: 8px;
  }

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

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

  .brand small {
    font-size: 6px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    display: block;
    min-height: 690px;
  }

  .hero-photo {
    object-position: 32% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(7, 28, 26, 0.6) 0%, rgba(7, 28, 26, 0.04) 58%);
  }

  .hero-content {
    position: absolute;
    right: 16px;
    bottom: 50px;
    left: 16px;
    width: auto;
    padding: 0;
  }

  .hero-eyebrow {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .hero-eyebrow span,
  .hero h1 span,
  .hero h1 strong,
  .hero-copy span {
    padding: 2px 7px;
    border-radius: 5px;
    background: rgba(7, 25, 23, 0.64);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    backdrop-filter: blur(2px);
  }

  .hero h1 span {
    margin-bottom: 4px;
    font-size: 22px;
  }

  .hero h1 strong {
    font-size: 39px;
    letter-spacing: 0.07em;
  }

  .hero-copy {
    margin: 10px 0 12px;
    font-size: 13px;
    line-height: 1.9;
  }

  .hero-copy span + span {
    margin-top: 3px;
  }

  .hero-badges {
    margin: 12px 0 14px;
  }

  .hero-badges span {
    padding: 5px 10px;
    font-size: 11px;
  }

  .hero-actions {
    gap: 7px;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 50px;
    flex: 1;
    padding: 0 9px;
    font-size: 11px;
  }

  .hero-actions .button-label {
    min-width: 34px;
    height: 21px;
    margin-right: 5px;
    font-size: 8px;
  }

  .sample-note {
    right: 12px;
    bottom: 9px;
    font-size: 8px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading p {
    font-size: 11px;
  }

  .section-heading h2 {
    font-size: 29px;
    letter-spacing: 0.07em;
  }

  .section-heading > span {
    margin-top: 12px;
  }

  .section-lead {
    margin-bottom: 34px;
    font-size: 13px;
    text-align: left;
  }

  .concern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .concern-card {
    padding: 15px 10px 17px;
    border-radius: 14px;
  }

  .concern-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 105px 1fr;
    align-items: center;
    column-gap: 10px;
    text-align: left;
  }

  .concern-card:last-child .concern-illustration {
    grid-row: 1 / 3;
    margin: 0;
  }

  .concern-illustration {
    height: 105px;
    margin-bottom: 8px;
  }

  .concern-illustration img {
    height: 92px;
  }

  .concern-card h3 {
    font-size: 14px;
  }

  .concern-card p {
    font-size: 10px;
    line-height: 1.6;
  }

  .about-message {
    margin-top: 38px;
    padding: 22px 17px;
  }

  .about-message > span {
    top: -22px;
    font-size: 60px;
  }

  .about-message p {
    font-size: 12px;
    text-align: left;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 32px;
  }

  .reason-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    padding: 18px;
    column-gap: 15px;
  }

  .reason-card b {
    top: 8px;
    right: 14px;
    font-size: 28px;
  }

  .reason-symbol {
    grid-row: 1 / 3;
    width: 50px;
    height: 50px;
    margin: 0;
  }

  .reason-card h3 {
    align-self: end;
    margin: 0;
    font-size: 16px;
  }

  .reason-card p {
    align-self: start;
    margin-top: 4px;
    font-size: 11px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .menu-card {
    padding: 31px 22px 25px;
  }

  .menu-number {
    right: 20px;
    font-size: 48px;
  }

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

  .menu-summary {
    min-height: 0;
    font-size: 12px;
  }

  .menu-card li {
    font-size: 12px;
  }

  .price strong {
    font-size: 17px;
  }

  .oxygen-banner {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .oxygen-banner > div {
    padding: 29px 22px;
  }

  .oxygen-banner h3 {
    font-size: 19px;
  }

  .oxygen-banner img {
    height: 220px;
  }

  .director-section {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 78px 0;
  }

  .director-photo {
    height: 400px;
    min-height: 400px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .director-copy {
    height: auto;
    padding: 58px 25px 65px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .director-greeting {
    font-size: 19px;
  }

  .director-copy > p:not(.director-greeting) {
    font-size: 12px;
  }

  .gallery-shell {
    width: 100%;
  }

  .clinic-gallery {
    gap: 13px;
    padding: 4px 24px 16px;
    scroll-padding-inline: 24px;
  }

  .gallery-card {
    flex-basis: calc(88% - 12px);
    border-radius: 16px;
  }

  .gallery-card img {
    aspect-ratio: 16 / 11;
  }

  .gallery-arrow {
    display: none;
  }

  .gallery-dots {
    display: flex;
    margin-top: 5px;
  }

  .swipe-hint {
    display: block;
  }

  .access-content {
    padding: 68px 24px 58px;
  }

  .access-summary strong {
    font-size: 23px;
  }

  .access-buttons {
    grid-template-columns: 1fr;
  }

  .access-details {
    padding: 42px 16px 65px;
  }

  .hours-card {
    padding: 18px 12px;
  }

  .hours-card h3 {
    margin-bottom: 14px;
    font-size: 21px;
  }

  .hours-row {
    grid-template-columns: 92px repeat(7, minmax(0, 1fr));
  }

  .hours-row > * {
    padding: 12px 1px;
  }

  .hours-row.head {
    font-size: 10px;
  }

  .hours-row:not(.head) {
    font-size: 13px;
  }

  .hours-row:not(.head) strong {
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .map-wrap {
    min-height: 300px;
  }

  .final-cta {
    padding: 70px 20px 78px;
  }

  .final-cta > p {
    font-size: 11px;
  }

  .final-cta h2 {
    font-size: 23px;
  }

  .final-actions {
    display: grid;
    gap: 8px;
    margin-top: 25px;
  }

  footer {
    padding-bottom: 45px;
  }

  .mobile-fixed-cta {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 66px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 -5px 24px rgba(13, 48, 46, 0.2);
  }

  .mobile-fixed-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
  }

  .mobile-fixed-cta a:first-child {
    background: var(--green-900);
  }

  .mobile-fixed-cta a:last-child {
    background: var(--line);
  }

  .mobile-fixed-cta span {
    display: inline-grid;
    height: 20px;
    padding: 0 6px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-family: Arial, sans-serif;
    font-size: 8px;
  }
}

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

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