:root {
  --ink: #19312d;
  --muted: #5d6f6b;
  --brand: #0d665b;
  --brand-dark: #084b43;
  --brand-soft: #e7f3f0;
  --red: #b5324a;
  --red-soft: #f8e9ed;
  --gold: #d8a23c;
  --paper: #ffffff;
  --surface: #f4f7f5;
  --line: #dce6e2;
  --shadow-sm: 0 8px 24px rgba(18, 50, 45, 0.08);
  --shadow-lg: 0 24px 60px rgba(18, 50, 45, 0.14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --font: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #f0b94e;
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--brand);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.75rem);
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.service-strip {
  color: #eaf5f2;
  background: var(--brand-dark);
  font-size: 0.88rem;
}

.service-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.service-strip p {
  margin: 0;
}

.service-strip a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  min-width: 260px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border: 4px solid var(--brand-soft);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.08);
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand__text small {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__text strong {
  font-size: 1rem;
}

.site-nav {
  margin-left: auto;
}

.site-nav__list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 10px;
  color: #314a45;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.header-call {
  flex: 0 0 auto;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease;
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle__lines::before {
  top: -7px;
}

.menu-toggle__lines::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(8, 75, 67, 0.2);
  transform: translateY(-1px);
}

.button--light {
  color: var(--brand-dark);
  background: #fff;
  border-color: var(--line);
}

.button--light:hover {
  color: var(--brand-dark);
  background: var(--brand-soft);
  box-shadow: none;
}

.button--red {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.button--red:hover {
  background: #91263a;
}

.button--small {
  min-height: 42px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #8fd2c2;
}

.section-action {
  margin-top: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 44px;
  background: #f1f7f5;
}

.hero::before {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -240px;
  bottom: -330px;
  background: rgba(13, 102, 91, 0.08);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 22px;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #49615c;
  font-size: 1.12rem;
}

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

.hero__visual {
  position: relative;
}

.hero__image-frame {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dce8e4;
  border: 8px solid #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.hero__badge {
  position: absolute;
  right: -18px;
  bottom: 30px;
  max-width: 230px;
  padding: 15px 18px;
  color: #fff;
  background: var(--brand-dark);
  border: 4px solid #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.status-panel {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.status-panel__item {
  min-width: 0;
  padding: 22px 24px;
}

.status-panel__item + .status-panel__item {
  border-left: 1px solid var(--line);
}

.status-panel__label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-panel strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.35;
}

.open-status[data-state="open"] {
  color: var(--brand);
}

.open-status[data-state="lunch"] {
  color: #87611b;
}

.open-status[data-state="closed"] {
  color: var(--red);
}

.quick-actions {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.quick-actions__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.quick-link {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 11px;
  padding: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
}

.quick-link:hover {
  border-color: #bdd8d1;
  background: var(--brand-soft);
}

.quick-link__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: #fff;
  border-radius: 11px;
  font-size: 0.82rem;
  font-weight: 850;
}

.quick-link strong,
.quick-link small {
  display: block;
}

.quick-link strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.quick-link small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.77rem;
}

.section {
  padding: clamp(70px, 9vw, 112px) 0;
}

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

.section--brand {
  color: #eaf6f3;
  background: var(--brand-dark);
}

.section--brand h2,
.section--brand h3 {
  color: #fff;
}

.section-head {
  max-width: 740px;
  margin-bottom: 38px;
}

.section-head--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-head h2 {
  margin-bottom: 15px;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.section--brand .section-head p {
  color: #c5dcd7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  height: 100%;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(18, 50, 45, 0.03);
}

.info-card__number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 11px;
  font-size: 0.88rem;
  font-weight: 850;
}

.info-card h3 {
  margin-bottom: 10px;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
  gap: clamp(36px, 7vw, 88px);
}

.notice-stack {
  display: grid;
  gap: 14px;
}

.notice {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.notice--red {
  border-left-color: var(--red);
}

.notice__meta {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.notice h3 {
  margin-bottom: 7px;
}

.notice p {
  margin-bottom: 0;
  color: var(--muted);
}

.schedule-summary {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.schedule-summary__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 18px 22px;
}

.schedule-summary__row + .schedule-summary__row {
  border-top: 1px solid var(--line);
}

.schedule-summary__day {
  color: var(--brand-dark);
  font-weight: 800;
}

.schedule-summary p {
  margin: 0;
}

.schedule-summary small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.photo-preview {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, 235px);
  gap: 14px;
}

.photo-preview a {
  overflow: hidden;
  border-radius: var(--radius);
}

.photo-preview a:first-child {
  grid-row: 1 / 3;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.photo-preview a:hover img {
  transform: scale(1.025);
}

.page-hero {
  padding: 62px 0 54px;
  background: #eef6f3;
  border-bottom: 1px solid var(--line);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumb a {
  color: var(--muted);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.hours-card {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.hours-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hours-card strong {
  font-size: 1.25rem;
}

.callout {
  margin: 24px 0 34px;
  padding: 19px 22px;
  color: #5c4517;
  background: #fff8e8;
  border: 1px solid #efdcad;
  border-radius: var(--radius-sm);
}

.callout p {
  margin: 0;
}

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

.staff-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.staff-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--brand);
  content: "";
}

.staff-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.staff-card__unit {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.staff-card h2 {
  margin: 8px 0 18px;
  font-size: 1.38rem;
}

.staff-card__meta {
  margin: 0;
  display: grid;
  gap: 9px;
}

.staff-card__meta div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
}

.staff-card dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.staff-card dd {
  margin: 0;
  font-weight: 650;
}

.staff-card__phone {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  font-weight: 800;
}

.home-visit-badge {
  flex: 0 0 auto;
  padding: 7px 9px;
  color: #7a3f0d;
  background: #fff0d7;
  border-radius: 9px;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.schedule-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 17px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.schedule-table thead th {
  color: #fff;
  background: var(--brand-dark);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

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

.schedule-table tbody th {
  color: var(--brand-dark);
}

.schedule-table small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.schedule-mobile {
  display: none;
}

.check-list,
.link-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.link-list {
  display: grid;
  gap: 9px;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.link-list a::after {
  content: "↗";
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: guide-step;
}

.step-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: guide-step;
}

.step-card::before {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
  background: var(--brand);
  border-radius: 12px;
  content: counter(guide-step);
  font-weight: 850;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.faq-list summary {
  position: relative;
  padding: 19px 52px 19px 20px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--brand);
  content: "+";
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

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

.gallery-card {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #dce7e3;
  border: 0;
  border-radius: var(--radius);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}

.gallery-card__image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card__caption {
  display: block;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  font-weight: 700;
  text-align: left;
}

.lightbox {
  width: min(94vw, 1180px);
  max-width: none;
  height: min(92vh, 900px);
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #10221f;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox::backdrop {
  background: rgba(3, 17, 15, 0.86);
  backdrop-filter: blur(5px);
}

.lightbox__figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
}

.lightbox__image-wrap {
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 54px 70px 20px;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  padding: 15px 74px 20px;
  color: #d8e8e4;
  text-align: center;
}

.lightbox__button {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
}

.lightbox__button:hover {
  background: rgba(255, 255, 255, 0.23);
}

.lightbox__close {
  top: 14px;
  right: 14px;
  font-size: 1.5rem;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  font-size: 1.8rem;
  transform: translateY(-50%);
}

.lightbox__prev {
  left: 14px;
}

.lightbox__next {
  right: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 24px;
}

.contact-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card--brand {
  color: #e8f3f0;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.contact-card--brand h2,
.contact-card--brand h3 {
  color: #fff;
}

.contact-card__group + .contact-card__group {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-card--brand .contact-card__group + .contact-card__group {
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-card--brand .contact-label {
  color: #aed0c8;
}

.contact-value {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
}

.contact-card--brand a {
  color: #fff;
}

.emergency-list {
  display: grid;
  gap: 10px;
}

.emergency-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
  text-decoration: none;
}

.emergency-link strong {
  font-size: 1.3rem;
}

.official-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.official-link {
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 750;
  text-decoration: none;
}

.official-link small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 500;
}

.official-link:hover {
  border-color: #a7ccc3;
  background: var(--brand-soft);
}

.site-footer {
  padding: 64px 0 26px;
  color: #c5d8d3;
  background: #122d28;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr;
  gap: 46px;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer h2 {
  margin-bottom: 13px;
  font-size: 1.35rem;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 9px;
}

.site-footer a {
  color: #e8f4f1;
}

.site-footer .plain-list {
  display: grid;
  gap: 8px;
}

.site-footer__bottom {
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9ebbb4;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.mobile-actions {
  display: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1120px) {
  .site-header__inner {
    gap: 14px;
  }

  .brand {
    min-width: 230px;
  }

  .site-nav a {
    padding-inline: 7px;
    font-size: 0.84rem;
  }

  .header-call {
    display: none;
  }

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

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .service-strip__inner {
    justify-content: center;
  }

  .service-strip__inner p:last-child {
    display: none;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
    margin-right: auto;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    top: 112px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    padding: 18px 16px 120px;
    background: rgba(255, 255, 255, 0.99);
    border-top: 1px solid var(--line);
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav__list {
    width: min(100%, 560px);
    margin-inline: auto;
    display: grid;
    gap: 5px;
  }

  .site-nav a {
    min-height: 50px;
    padding-inline: 15px;
    font-size: 1rem;
  }

  .hero {
    padding-top: 50px;
  }

  .hero__grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 42px;
  }

  .hero__visual {
    max-width: 680px;
  }

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

  .status-panel__item + .status-panel__item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .brand__text small {
    font-size: 0.62rem;
  }

  .brand__text strong {
    max-width: 190px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero__badge {
    right: 12px;
    bottom: 12px;
  }

  .hero__image-frame {
    border-width: 5px;
    border-radius: 22px;
  }

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

  .quick-link {
    grid-template-columns: 38px 1fr;
    padding: 12px;
  }

  .quick-link__mark {
    width: 38px;
    height: 38px;
  }

  .section {
    padding-block: 64px;
  }

  .section-head--split,
  .page-hero__grid {
    display: block;
  }

  .section-head--split .button,
  .page-hero__grid .button {
    margin-top: 18px;
  }

  .card-grid,
  .steps,
  .staff-grid,
  .hours-grid,
  .gallery-grid,
  .official-links {
    grid-template-columns: 1fr;
  }

  .photo-preview {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 170px;
  }

  .photo-preview a:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .staff-card {
    padding: 23px 22px;
  }

  .staff-card__top {
    display: block;
  }

  .home-visit-badge {
    width: fit-content;
    margin-top: 10px;
  }

  .staff-card__meta div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .table-wrap {
    display: none;
  }

  .schedule-mobile {
    display: grid;
    gap: 12px;
  }

  .schedule-mobile__day {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
  }

  .schedule-mobile__day h3 {
    color: var(--brand-dark);
  }

  .schedule-mobile__day p:last-child {
    margin-bottom: 0;
  }

  .lightbox {
    width: 96vw;
    height: 90vh;
  }

  .lightbox__image-wrap {
    padding: 58px 14px 12px;
  }

  .lightbox figcaption {
    padding: 12px 56px 18px;
    font-size: 0.9rem;
  }

  .lightbox__prev,
  .lightbox__next {
    top: auto;
    bottom: 12px;
    transform: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__grid > :first-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    display: block;
  }

  .site-footer__bottom p {
    margin-bottom: 6px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 7px max(10px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(18, 50, 45, 0.08);
    backdrop-filter: blur(12px);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand);
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions a:last-child {
    color: var(--brand-dark);
    background: var(--brand-soft);
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand__mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-width: 3px;
  }

  .brand__text strong {
    max-width: 170px;
    font-size: 0.82rem;
  }

  .quick-actions__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .photo-preview {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 210px);
  }

  .photo-preview a:first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .service-strip,
  .site-header,
  .page-hero .button,
  .mobile-actions,
  .site-footer,
  .no-print {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .container {
    width: 100%;
  }

  .page-hero,
  .section,
  .section--soft {
    padding: 18px 0;
    background: #fff;
  }

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

  .staff-card,
  .hours-card,
  .table-wrap {
    break-inside: avoid;
    box-shadow: none;
  }

  .staff-card {
    padding: 14px;
  }

  .staff-card h2 {
    margin-bottom: 10px;
    font-size: 14pt;
  }

  .table-wrap {
    display: block !important;
    overflow: visible;
  }

  .schedule-table {
    min-width: 0;
    font-size: 9pt;
  }

  a {
    color: #000;
    text-decoration: none;
  }
}
