@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Outfit:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons+Outlined");

:root {
  /* Clinic Color Palette */
  --color-main: #2b6cb0;
  --color-main-dark: #2c5282;
  --color-main-light: #3182ce;
  --color-accent: #38b2ac;
  --color-accent-light: #e6fffa;

  --color-bg: #f7fafc;
  --color-surface: #ffffff;
  --color-surface-2: #ebf2f9;
  --color-text: #1a2f45;
  --color-muted: #5a7089;
  --color-border: rgba(43, 108, 176, 0.14);
  --color-danger: #c53030;
  --color-danger-bg: #fff5f5;

  /* Typography */
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Segoe UI",
    sans-serif;
  --font-en: "Outfit", "Noto Sans JP", sans-serif;

  /* Radius */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  /* Shadow */
  --shadow-sm:
    0 1px 3px rgba(26, 47, 69, 0.06), 0 1px 2px rgba(26, 47, 69, 0.04);
  --shadow-md:
    0 10px 24px -6px rgba(26, 47, 69, 0.1),
    0 4px 8px -4px rgba(26, 47, 69, 0.05);
  --shadow-lg: 0 24px 48px -12px rgba(26, 47, 69, 0.16);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-base);
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.2s,
    background-color 0.2s;
}

address {
  font-style: normal;
}

.container {
  max-width: var(--container);
  padding: 0 var(--gutter);
  margin: 0 auto;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -48px;
  left: 8px;
  z-index: 1000;
  padding: 10px 18px;
  background: var(--color-main);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 10px 10px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--color-main-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================
   Header
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header__topbar {
  background: var(--color-main);
  color: #fff;
  font-size: 0.82rem;
}

.header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  flex-wrap: wrap;
}

.header__hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-weight: 500;
}

.header__hours .material-icons-outlined {
  font-size: 18px;
}

.header__tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #fff;
}

.header__tel .material-icons-outlined {
  font-size: 18px;
}

.header__tel-number {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.header__tel:hover {
  color: rgba(255, 255, 255, 0.85);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.header__logo {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  color: var(--color-main);
  font-size: 30px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--color-main-dark);
  font-size: 1.1rem;
  line-height: 1.3;
}

.logo-text__sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.08em;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  background: transparent;
  border-radius: 99px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid transparent;
}

.nav__link:hover {
  background: rgba(43, 108, 176, 0.08);
  color: var(--color-main);
  transform: translateY(-1px);
}

.nav__link--tel {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--color-main-light),
    var(--color-main-dark)
  );
  font-family: var(--font-en);
  box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}

.nav__link--tel:hover {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--color-main),
    var(--color-main-dark)
  );
}

.nav__link--tel .material-icons-outlined {
  font-size: 18px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(43, 108, 176, 0.08);
  border: 1px solid rgba(43, 108, 176, 0.18);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-main-dark);
  border-radius: 999px;
  transition:
    transform 0.2s,
    background 0.2s,
    opacity 0.2s;
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  width: 100%;
  min-height: min(720px, calc(100svh - 120px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-surface-2);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(235, 244, 252, 0.96) 0%,
    rgba(235, 244, 252, 0.85) 45%,
    rgba(235, 244, 252, 0.35) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 640px;
  padding: 64px 0;
}

.hero__label {
  margin: 0 0 12px 0;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-main);
}

.hero__title {
  margin: 0 0 20px 0;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: 0.05em;
  color: var(--color-text);
  font-weight: 900;
  line-height: 1.4;
}

.hero__description {
  margin: 0 0 28px 0;
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 2;
  max-width: 46ch;
}

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

.hero__info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

a.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-card__icon {
  font-size: 26px;
  color: var(--color-main);
  flex-shrink: 0;
}

.hero-card__body {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.hero-card__label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-muted);
}

.hero-card__value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-en);
  letter-spacing: 0.02em;
}

/* =========================
   Buttons
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
  white-space: nowrap;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.98);
}

.btn__icon {
  font-size: 20px;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--color-main-light),
    var(--color-main-dark)
  );
  box-shadow: 0 4px 12px rgba(43, 108, 176, 0.32);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43, 108, 176, 0.42);
}

.btn--ghost {
  color: var(--color-main-dark);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(43, 108, 176, 0.35);
}

.btn--ghost:hover {
  background: #fff;
  border-color: var(--color-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* =========================
   Section
========================= */
.section {
  padding: clamp(56px, 8vw, 88px) 0;
}

.section__header {
  text-align: center;
  margin-bottom: 44px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-main);
  margin-bottom: 14px;
  padding: 4px 14px;
  background: rgba(43, 108, 176, 0.1);
  border-radius: 99px;
}

.section__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.section__lead {
  margin: 14px 0 0 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

.section--news {
  background: var(--color-surface);
}

.section--about {
  background: var(--color-surface-2);
}

.section--services {
  background: var(--color-surface);
}

.section--hours {
  background: var(--color-surface-2);
}

.section--access {
  background: var(--color-surface);
}

/* =========================
   News
========================= */
.news-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item__date {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.news-item__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-main);
  background: rgba(43, 108, 176, 0.1);
  border-radius: 99px;
  padding: 2px 12px;
  flex-shrink: 0;
  line-height: 1.8;
}

.news-item__tag--important {
  color: var(--color-danger);
  background: var(--color-danger-bg);
}

.news-item__text {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
  min-width: 200px;
}

/* =========================
   About
========================= */
.about-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

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

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about__subtitle {
  margin: 0 0 16px 0;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: var(--color-main-dark);
  line-height: 1.6;
}

.about-text p {
  margin: 0 0 16px 0;
  color: var(--color-muted);
  line-height: 2;
}

.about__director {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--color-surface);
  border-left: 4px solid var(--color-main);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.about__director-role {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-main);
}

.about__director-name {
  margin: 4px 0 10px 0;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-text);
}

.about__director-en {
  margin-left: 10px;
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.08em;
}

.about__director-career {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 48px auto 0;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  font-size: 36px;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.feature-card__title {
  margin: 0 0 10px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}

.feature-card__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.9;
}

/* =========================
   Services
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(43, 108, 176, 0.3);
}

.service-card__icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(
    135deg,
    var(--color-surface-2),
    var(--color-accent-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
  margin: 0 auto 18px;
}

.service-card__icon .material-icons-outlined {
  font-size: 34px;
}

.service-card__title {
  margin: 0 0 12px 0;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.service-card__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.9;
  text-align: left;
}

/* =========================
   Hours
========================= */
.hours-table-wrapper {
  max-width: 860px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.hours-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table__caption {
  caption-side: top;
  text-align: left;
  padding: 16px 20px 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hours-table th,
.hours-table td {
  padding: 16px 12px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.hours-table thead th {
  background: var(--color-main);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}

.hours-table thead th:first-child {
  border-radius: 0;
  text-align: left;
  padding-left: 20px;
}

.hours-table tbody th {
  text-align: left;
  padding-left: 20px;
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-surface-2);
  white-space: nowrap;
}

.hours-table__time {
  display: block;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

.hours-table tbody tr:last-child th,
.hours-table tbody tr:last-child td {
  border-bottom: none;
}

.mark {
  display: inline-block;
  font-weight: 700;
}

.mark--open {
  color: var(--color-main);
}

.mark--closed {
  color: #b0bdc9;
}

.hours-notes {
  max-width: 860px;
  margin: 20px auto 0;
  padding: 0 0 0 1.4em;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 2;
}

.hours-notes a {
  color: var(--color-main);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hours-notes a:hover {
  color: var(--color-main-dark);
}

/* =========================
   Access
========================= */
.access-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.access-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 360px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(43, 108, 176, 0.04),
      rgba(43, 108, 176, 0.04) 12px,
      transparent 12px,
      transparent 24px
    ),
    var(--color-surface-2);
  border: 2px dashed rgba(43, 108, 176, 0.3);
  border-radius: var(--radius-lg);
  color: var(--color-muted);
}

.access-map__icon {
  font-size: 44px;
  color: var(--color-main);
}

.access-map__text {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}

.access-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.access-info__icon {
  font-size: 28px;
  color: var(--color-main);
  flex-shrink: 0;
  background: var(--color-surface-2);
  border-radius: 12px;
  padding: 10px;
}

.access-info__label {
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.access-info__value {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.9;
}

.access-info__tel {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.04em;
}

.access-info__tel:hover {
  color: var(--color-main-dark);
}

/* =========================
   Footer
========================= */
.footer {
  padding: 56px 0 32px;
  color: rgba(255, 255, 255, 0.85);
  background: var(--color-main-dark);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo .logo-icon {
  color: #fff;
}

.logo-text--footer {
  color: #fff;
}

.logo-text--footer .logo-text__sub {
  color: rgba(255, 255, 255, 0.7);
}

.footer__address {
  font-size: 0.88rem;
  line-height: 2;
}

.footer__address a {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

.footer__address a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.footer-nav__link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__hours-title {
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.footer__hours-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 2;
}

.footer__copyright {
  margin: 24px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* =========================
   Scroll Reveal
========================= */
.animate-ready {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Responsive
========================= */
.sp-only {
  display: block;
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .header__topbar {
    font-size: 0.75rem;
  }

  .header__hours {
    display: none;
  }

  .header__topbar-inner {
    justify-content: center;
  }

  .nav {
    display: none;
  }

  .nav--open {
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--gutter);
    right: var(--gutter);
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    z-index: 60;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__link {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 16px;
  }

  .nav__link--tel {
    justify-content: center;
    margin-top: 6px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

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

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 48px 0;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(235, 244, 252, 0.94) 0%,
      rgba(235, 244, 252, 0.88) 100%
    );
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__info-cards {
    grid-template-columns: 1fr;
  }

  .news-item {
    padding: 16px 18px;
    gap: 10px;
  }

  .news-item__text {
    flex-basis: 100%;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 380px;
    margin: 0 auto;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

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

  .access-map {
    min-height: 260px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =========================
   Reduced Motion
========================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-ready {
    opacity: 1;
    transform: none;
  }
}
