:root {
  --green: #3c6934;
  --green-deep: #274c2c;
  --green-soft: #e8f1e5;
  --green-pale: #f4f8f2;
  --logo-green: #7dbb28;
  --orange: #ef7a00;
  --yellow: #fcc800;
  --ink: #253028;
  --muted: #667168;
  --line: #dce4da;
  --white: #ffffff;
  --cream: #fbfaf5;
  --brand-stripe: linear-gradient(90deg, var(--logo-green) 0 33%, var(--yellow) 33% 66%, var(--orange) 66% 100%);
  --shadow: 0 18px 50px rgba(39, 76, 44, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

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;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-deep);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

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

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

.section {
  padding: 110px 0;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--brand-stripe);
  content: "";
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.section-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.section-heading__en {
  color: #dce6d9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-style: italic;
  line-height: 1;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 25px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.4;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.button::after {
  content: "→";
  transition: transform 0.25s ease;
}

.button:hover {
  color: var(--green);
  background: var(--white);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(5px);
}

.button--white {
  color: var(--green-deep);
  background: var(--white);
  border-color: var(--white);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 700;
}

.text-link::after {
  content: "→";
}

.site-header {
  position: relative;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(39, 76, 44, 0.1);
}

.site-header::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: var(--brand-stripe);
  content: "";
  pointer-events: none;
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.header-main {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-logo {
  display: block;
  width: min(420px, 42vw);
}

.site-logo img {
  width: 100%;
  height: auto;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-contact__hours {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
  text-align: right;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-deep);
}

.phone-link__icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  place-items: center;
  font-size: 1.1rem;
}

.phone-link__label {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.phone-link__number {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav-wrap {
  border-top: 1px solid var(--line);
}

.global-nav ul {
  display: grid;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
}

.global-nav a {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-left: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.global-nav li:last-child a {
  border-right: 1px solid var(--line);
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--green);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--green-deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-deep);
}

.hero__slides,
.hero__slide,
.hero__slide::after {
  position: absolute;
  inset: 0;
}

.hero__slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

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

.hero__slide::after {
  background: linear-gradient(90deg, rgba(25, 53, 31, 0.82) 0%, rgba(25, 53, 31, 0.46) 45%, rgba(25, 53, 31, 0.12) 72%);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 80px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #f4f7ef;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero__kicker::before {
  width: 36px;
  height: 2px;
  background: var(--yellow);
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.18);
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__controls {
  position: absolute;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__arrow {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
}

.hero__dots {
  display: flex;
  gap: 7px;
}

.hero__dot {
  width: 26px;
  height: 3px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
}

.hero__dot.is-active {
  background: var(--yellow);
}

.quick-panel {
  position: relative;
  z-index: 5;
  margin-bottom: -10px;
  transform: translateY(-58px);
}

.quick-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.15fr 0.85fr;
}

.quick-card {
  position: relative;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(60, 105, 52, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.quick-card::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 4px;
  background: var(--brand-stripe);
  border-radius: 0 0 999px 999px;
  content: "";
}

.quick-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.quick-card__head h2 {
  margin: 0;
  font-size: 1.32rem;
}

.quick-card__head span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: center;
}

.schedule-table th,
.schedule-table td {
  padding: 9px 8px;
  border-bottom: 1px solid var(--line);
}

.schedule-table thead th {
  color: var(--green-deep);
  background: var(--green-soft);
}

.schedule-table th:first-child {
  text-align: left;
  white-space: nowrap;
}

.schedule-table .open {
  color: var(--logo-green);
  font-weight: 800;
}

.schedule-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

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

.news-list li {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px 0;
}

.news-list li + li {
  border-top: 1px solid var(--line);
}

.news-list .news-meta,
.news-list .news-empty {
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.news-list .news-meta {
  padding-bottom: 0;
}

.news-list time {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
}

.news-list .tag {
  display: inline-block;
  width: fit-content;
  padding: 3px 9px;
  color: var(--green-deep);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.news-list strong {
  font-size: 0.9rem;
}

.message-grid {
  display: grid;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  grid-template-columns: 1fr 1fr;
}

.message-image {
  position: relative;
  padding: 0 34px 34px 0;
}

.message-image::before {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 62%;
  height: 62%;
  background: var(--yellow);
  border-radius: 0 0 var(--radius-lg) 0;
  content: "";
}

.message-image img {
  width: 100%;
  height: 430px;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.message-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.45;
}

.message-copy h2 em {
  color: var(--green);
  font-style: normal;
}

.message-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
}

.service-card img,
.service-card::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card::after {
  background: linear-gradient(0deg, rgba(22, 50, 28, 0.88) 0%, rgba(22, 50, 28, 0.12) 75%);
  content: "";
}

.service-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 40px;
}

.service-card__number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-style: italic;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 2rem;
}

.service-card p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.service-card__arrow {
  display: grid;
  position: absolute;
  right: 36px;
  bottom: 42px;
  z-index: 3;
  width: 52px;
  height: 52px;
  color: var(--green-deep);
  background: var(--white);
  border-radius: 50%;
  place-items: center;
  transition: transform 0.25s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card:hover .service-card__arrow {
  transform: translateX(5px);
}

.feature-row {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-item {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-item__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--green);
  border-radius: 18px 18px 18px 4px;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
}

.feature-item h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.homecare-feature-row .feature-item {
  position: relative;
  overflow: hidden;
  padding-top: 38px;
  border-color: rgba(60, 105, 52, 0.2);
  box-shadow: 0 14px 34px rgba(39, 76, 44, 0.08);
}

.homecare-feature-row .feature-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--brand-stripe);
  content: "";
}

.homecare-feature-row .feature-item h3 {
  position: relative;
  margin-bottom: 16px;
  padding-left: 19px;
  color: var(--green-deep);
  font-size: 1.32rem;
  line-height: 1.5;
}

.homecare-feature-row .feature-item h3::before {
  position: absolute;
  top: 0.2em;
  bottom: 0.2em;
  left: 0;
  width: 6px;
  background: var(--orange);
  border-radius: 999px;
  content: "";
}

.homecare-area-list {
  display: grid;
  gap: 14px;
  margin: 0 0 20px;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.homecare-area-list li {
  padding: 20px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(39, 76, 44, 0.14);
  font-size: clamp(1.12rem, 2.2vw, 1.42rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.homecare-area-note {
  padding-inline: 4px;
}

.access-strip {
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr 1fr;
}

.access-strip__copy {
  padding: 55px;
}

.access-strip__copy h2 {
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.access-strip__copy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
}

.access-strip__visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #e9eee6;
}

.access-strip__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-strip__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(39, 76, 44, 0.2), transparent 45%);
  content: "";
}

.access-strip--map {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.access-strip__clinic {
  padding: clamp(34px, 5vw, 55px);
}

.access-strip__clinic h2 {
  margin: 0 0 26px;
  color: var(--green-deep);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.5;
}

.access-strip__clinic address {
  margin-bottom: 26px;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.access-strip__clinic p {
  margin: 0 0 17px;
  color: var(--muted);
}

.access-strip__map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--green-soft);
}

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

.group-links {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.group-links a {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.group-links a::after {
  color: var(--orange);
  content: "↗";
}

.group-links a:hover {
  color: var(--white);
  background: var(--green);
}

.group-links a:hover::after {
  color: var(--yellow);
}

.page-hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-deep);
}

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

.page-hero img {
  object-fit: cover;
}

.page-hero::after {
  background: linear-gradient(90deg, rgba(27, 56, 32, 0.87), rgba(27, 56, 32, 0.28));
  content: "";
}

.page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 400px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  content: "/";
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.page-hero__en {
  margin-top: 14px;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.12em;
}

.page-intro {
  display: grid;
  align-items: center;
  gap: 55px;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
}

.page-intro__copy h2 {
  margin: 0 0 25px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.5;
}

.page-intro__copy p {
  margin: 0 0 16px;
  color: var(--muted);
}

.page-intro__image img {
  width: 100%;
  height: 400px;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.anchor-nav {
  position: sticky;
  top: 154px;
  z-index: 50;
  width: min(calc(100% - 40px), 880px);
  margin: -28px auto 0;
}

.anchor-nav ul {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  margin: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(39, 76, 44, 0.1);
  list-style: none;
  scrollbar-width: none;
}

.anchor-nav a {
  display: block;
  padding: 10px 20px;
  color: var(--green-deep);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.anchor-nav a:hover {
  color: var(--white);
  background: var(--green);
}

.content-stack {
  display: grid;
  gap: 30px;
}

.content-block {
  padding: clamp(30px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.content-block--green {
  color: var(--white);
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.content-block h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.45;
}

.content-block h2::before {
  width: 8px;
  height: 1.15em;
  flex: 0 0 auto;
  background: linear-gradient(180deg, var(--orange) 0 33%, var(--logo-green) 33% 66%, var(--yellow) 66% 100%);
  border-radius: 999px;
  content: "";
}

.content-block h3 {
  margin: 32px 0 12px;
  color: var(--green-deep);
  font-size: 1.18rem;
}

.content-block p {
  margin: 0 0 16px;
  color: var(--muted);
}

.content-block--green p {
  color: rgba(255, 255, 255, 0.82);
}

.content-block p:last-child {
  margin-bottom: 0;
}

.examination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  color: var(--green);
}

.examination-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.examination-list li::before {
  content: "●";
  display: inline-block;
  font-size: .5rem;
}

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

.check-list li {
  position: relative;
  padding: 14px 18px 14px 52px;
  background: var(--green-pale);
  border-radius: 12px;
}

.check-list li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  color: var(--green);
  content: "●";
  font-size: 0.72rem;
}

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

.plain-list li {
  padding: 14px 18px;
  background: var(--green-pale);
  border-left: 4px solid var(--green);
}

.note-box {
  margin-top: 20px;
  padding: 18px 22px;
  color: var(--muted);
  background: var(--cream);
  border-left: 4px solid var(--yellow);
  font-size: 0.85rem;
}

.doctor-lead {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.doctor-lead h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.7rem);
}

.doctor-lead p {
  margin: 0;
  color: var(--muted);
}

.doctor-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: 300px 1fr;
}

.doctor-card + .doctor-card {
  margin-top: 28px;
}

.doctor-card__portrait {
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.portrait-placeholder {
  display: grid;
  width: 140px;
  height: 140px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--green);
  border: 10px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 2.5rem;
}

.doctor-card__portrait small {
  color: var(--muted);
}

.doctor-card__body {
  padding: clamp(30px, 5vw, 60px);
}

.doctor-card__body--primary {
  grid-area: 1 / 2 / 2 / 3;
}

.doctor-card__body--secondary {
  grid-area: 2 / 1 / 3 / 3;
}

.doctor-card__role {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.doctor-card h2 {
  margin: 0 0 28px;
  color: var(--green-deep);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.1em;
}

.doctor-meta {
  display: grid;
  gap: 18px;
}

.doctor-meta__row {
  display: grid;
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  grid-template-columns: 110px 1fr;
}

.doctor-meta__row dt {
  color: var(--green-deep);
  font-weight: 800;
}

.doctor-meta__row dd {
  margin: 0;
  color: var(--muted);
}

.access-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.access-card {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.access-card h2 {
  margin: 0 0 22px;
  font-size: 1.55rem;
}

.access-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.access-card address {
  margin-bottom: 24px;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.map-panel {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(145deg, #eef3eb, #dce7d8);
  border-radius: var(--radius-lg);
  place-items: center;
}

.map-panel iframe {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-panel--embed::before,
.map-panel--embed::after {
  display: none;
}

.map-panel::before,
.map-panel::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  content: "";
  transform: rotate(-18deg);
}

.map-panel::before {
  width: 150%;
  height: 38px;
}

.map-panel::after {
  width: 42px;
  height: 150%;
  transform: rotate(28deg);
}

.map-pin {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
}

.map-pin__icon {
  display: grid;
  width: 74px;
  height: 74px;
  color: var(--white);
  background: var(--orange);
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 50% 50% 50% 10%;
  box-shadow: 0 10px 25px rgba(39, 76, 44, 0.18);
  place-items: center;
  font-size: 1.4rem;
  transform: rotate(-45deg);
}

.map-pin__icon span {
  transform: rotate(45deg);
}

.map-pin strong {
  color: var(--green-deep);
  font-size: 1.05rem;
}

.cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.cta::before,
.cta::after {
  position: absolute;
  width: 270px;
  height: 270px;
  border: 70px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.cta::before {
  top: -120px;
  left: -80px;
}

.cta::after {
  right: -70px;
  bottom: -150px;
}

.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta__phone {
  color: var(--white);
  white-space: nowrap;
}

.cta__phone small {
  display: block;
  font-size: 0.78rem;
}

.cta__phone strong {
  display: block;
  font-family: Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.25;
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: #1e3723;
}

.footer-main {
  display: grid;
  gap: 70px;
  padding: 75px 0 55px;
  grid-template-columns: 1.1fr 0.9fr;
}

.footer-logo {
  display: inline-block;
  width: min(420px, 100%);
  padding: 13px 18px;
  background: var(--white);
  border-radius: 10px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-info address {
  margin-top: 24px;
  font-style: normal;
}

.footer-info a {
  color: var(--white);
  font-weight: 700;
}

.footer-nav {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.footer-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-nav a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

.mobile-call {
  display: none;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 500;
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--green-deep);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  place-items: center;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* Top page: compact visual */
.home-page .hero {
  width: min(calc(100% - 40px), var(--container));
  height: clamp(430px, 56svh, 580px);
  min-height: 430px;
  margin-inline: auto;
}

.home-page .hero__slide::after {
  background: linear-gradient(180deg, rgba(18, 35, 21, 0.24) 0%, transparent 28%, rgba(18, 35, 21, 0.08) 72%, rgba(18, 35, 21, 0.28) 100%);
}

.home-page .hero__slide:first-child img {
  object-position: center 42%;
}

.home-page .hero__controls {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.home-page .hero__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  pointer-events: auto;
  transform: translateX(-50%);
}

.home-page .quick-panel {
  margin-bottom: 0;
  padding-top: 58px;
  padding-bottom: 70px;
  transform: none;
}

.quick-column {
  display: grid;
  gap: 22px;
}

.news-card {
  height: 100%;
}

.department-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.department-list li {
  padding: 0 10px;
  color: var(--green-deep);
  font-size: .875rem;
  font-weight: 700;
  border-left: 6px solid var(--green-deep);
}

.note {
  margin-block: .5em 0;
  padding-left: 1.25em;
  color: var(--green-deep);
  font-size: .8125rem;
}

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

  .header-main {
    min-height: 78px;
  }

  .site-logo {
    width: min(360px, 55vw);
  }

  .header-contact__hours {
    display: none;
  }

  .phone-link__label,
  .phone-link__number {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .header-contact {
    margin-left: auto;
  }

  .nav-wrap {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .global-nav ul {
    display: block;
    width: min(100% - 40px, 700px);
    padding: 30px 0 110px;
  }

  .global-nav a {
    min-height: 64px;
    justify-content: space-between;
    padding: 16px 6px;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .global-nav li:last-child a {
    border-right: 0;
  }

  .global-nav a::after {
    color: var(--orange);
    content: "→";
  }

  .global-nav a:hover,
  .global-nav a[aria-current="page"] {
    color: var(--green);
    background: transparent;
  }

  .hero,
  .hero__content {
    min-height: 650px;
  }

  .hero__content {
    justify-content: flex-end;
    padding-bottom: 115px;
  }

  .hero__slide::after {
    background: linear-gradient(0deg, rgba(25, 53, 31, 0.9), rgba(25, 53, 31, 0.08) 78%);
  }

  .hero__controls {
    right: 20px;
    bottom: 38px;
  }

  .quick-grid,
  .message-grid,
  .access-strip,
  .page-intro,
  .doctor-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .message-image {
    max-width: 700px;
  }

  .message-image img {
    height: 400px;
    min-height: 0;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .access-strip__copy {
    padding: 45px;
  }

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

  .page-intro__image {
    order: -1;
  }

  .anchor-nav {
    top: 88px;
  }

  .doctor-card {
    grid-template-columns: 200px 1fr;
  }

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

  .footer-main {
    gap: 45px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 96px;
  }

  body {
    padding-bottom: 72px;
    font-size: 0.96rem;
  }

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

  .section {
    padding: 70px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading__en {
    display: none;
  }

  .site-logo {
    width: min(285px, 60vw);
  }

  .phone-link__icon {
    width: 44px;
    height: 44px;
  }

  .hero,
  .hero__content {
    min-height: 600px;
  }

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

  .hero__content {
    padding-bottom: 105px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .hero__lead {
    font-size: 0.9rem;
  }

  .hero__actions .button {
    min-height: 48px;
    padding: 12px 19px;
    font-size: 0.84rem;
  }

  .hero__arrow {
    width: 40px;
    height: 40px;
  }

  .quick-panel {
    margin-bottom: 0;
    transform: translateY(-36px);
  }

  .quick-card {
    padding: 23px 18px;
  }

  .quick-card__head h2 {
    font-size: 1.15rem;
  }

  .schedule-table {
    font-size: 0.73rem;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 8px 4px;
  }

  .news-list a,
  .news-list .news-empty {
    gap: 8px;
    grid-template-columns: auto 1fr;
  }

  .news-list strong {
    grid-column: 1 / -1;
  }

  .message-image {
    padding: 0 18px 18px 0;
  }

  .message-image img {
    height: 320px;
    min-height: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 430px;
  }

  .service-card__content {
    padding: 28px;
  }

  .service-card__arrow {
    right: 24px;
    bottom: 28px;
    width: 46px;
    height: 46px;
  }

  .service-card p {
    padding-right: 44px;
  }

  .access-strip__copy {
    padding: 35px 26px;
  }

  .access-strip__visual {
    min-height: 300px;
  }

  .access-strip__map {
    min-height: 340px;
  }

  .group-links,
  .plain-list,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .group-links a {
    min-height: 80px;
  }

  .page-hero,
  .page-hero__content {
    min-height: 330px;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .page-intro__image img {
    height: 280px;
    min-height: 0;
  }

  .anchor-nav {
    top: 84px;
    width: min(calc(100% - 32px), 880px);
    margin-top: -20px;
  }

  .anchor-nav ul {
    display: grid;
    overflow: visible;
    padding: 5px;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(39, 76, 44, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .anchor-nav li {
    min-width: 0;
  }

  .anchor-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 36px;
    padding: 4px 6px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  .content-block {
    border-radius: var(--radius-md);
  }

  .content-block h2 {
    align-items: flex-start;
  }

  .doctor-card__portrait {
    min-height: 260px;
  }

  .doctor-meta__row {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .access-card {
    padding: 28px 24px;
  }

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

  .footer-main {
    padding: 58px 0 38px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

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

  .mobile-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 900;
    display: grid;
    height: 72px;
    color: var(--white);
    background: var(--green-deep);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.14);
    grid-template-columns: 1fr 1fr;
  }

  .mobile-call a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px;
    font-size: 0.86rem;
    font-weight: 700;
  }

  .mobile-call a:first-child {
    color: var(--green-deep);
    background: var(--yellow);
  }

  .mobile-call a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .back-to-top {
    right: 14px;
    bottom: 86px;
  }
}

@media (max-width: 480px) {
  .doctor-card {
    grid-template-columns: 150px 1fr;
  }
  .doctor-card__portrait {
    min-height: fit-content;
    padding-bottom: 0;
  }
  .doctor-card__portrait img{
    width: 100%;
    max-width: 150px;
    height: 100%;
    object-fit: cover;
  }
  .doctor-card__body {
    padding: clamp(20px, 5vw, 40px);
  }
  .doctor-card h2 {
    margin: 0 0 14px;
    color: var(--green-deep);
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    letter-spacing: 0.1em;
  }
}

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

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

@media print {
  .site-header,
  .mobile-call,
  .back-to-top,
  .cta,
  .hero__controls,
  .anchor-nav {
    display: none !important;
  }

  body {
    padding: 0;
  }

  .section {
    padding: 35px 0;
  }
}

@media (max-width: 980px) {
  .home-page .hero {
    width: 100%;
    height: clamp(340px, 55vw, 480px);
    min-height: 0;
  }

  .home-page .hero__content {
    height: 100%;
    min-height: 0;
  }

  .home-page .hero__slide::after {
    background: linear-gradient(180deg, rgba(18, 35, 21, 0.28) 0%, transparent 34%, rgba(18, 35, 21, 0.18) 100%);
  }

  .home-page .hero__controls {
    right: 0;
    bottom: 0;
  }

  .home-page .quick-panel {
    padding-top: 42px;
    padding-bottom: 54px;
  }
}

@media (max-width: 720px) {
  .home-page .hero,
  .home-page .hero__content {
    height: clamp(205px, 62vw, 300px);
    min-height: 0;
  }

  .home-page .hero__slide img {
    object-position: 62% center;
  }

  .home-page .hero__slide:first-child img {
    object-position: 58% center;
  }

  .home-page .hero__dots {
    bottom: 20px;
  }

  .home-page .quick-panel {
    padding-top: 28px;
  }

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