/* Layout: 12 / 8 / 4 columns, 8px spacing unit, 4px only for micro spacing. */
:root {
  --paper: #f7f8f0;
  --white: #fff;
  --ink: #293b20;
  --text: #414b3c;
  --muted: #66715e;
  --line: #dde3d5;
  --lime: #c3dc64;
  --green: #526b35;
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 48px;
  --s-7: 56px;
  --s-8: 64px;
  --s-11: 88px;
  --content: 1200px;
  --columns: 12;
  --gutter: var(--s-4);
  --page-inset: var(--s-6);
  --section-space: var(--s-11);
  --panel-inset: var(--s-4);
  --radius: 24px;
  --header-size: 88px;
  --motion-feedback: 300ms;
  --motion-enter: 400ms;
  --motion-float: 7000ms;
  --float-distance: -20px;
  --ease-standard: cubic-bezier(.2, 0, .3, 1);
  --ease-enter: cubic-bezier(0, 0, .3, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-size) + var(--s-3)); }
body { margin: 0; background: var(--paper); color: var(--text); font-family: "LINE Seed JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; font-size: 16px; line-height: 1.85; }
h1, h2, h3, h4, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button { font: inherit; }
address { font-style: normal; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; line-height: 1.5; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--green); outline-offset: 5px; }
a, button { -webkit-tap-highlight-color: transparent; }
.container, .header-inner { width: min(var(--content), calc(100% - var(--page-inset) * 2)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.layout-grid { display: grid; grid-template-columns: repeat(var(--columns), minmax(0, 1fr)); gap: var(--gutter); }
.layout-grid > * { min-width: 0; }
.numeral, time { font-family: Roboto, sans-serif; font-variant-numeric: tabular-nums; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip-link { position: fixed; top: 8px; left: 16px; z-index: 20; transform: translateY(-150%); background: white; padding: 8px 16px; }
.skip-link:focus { transform: none; }
.kicker { color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: .12em; line-height: 1.5; }

/* Only actionable elements react; labels keep their position. */
.button, .pill {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; justify-content: space-between; align-items: center;
  gap: var(--s-3); min-height: 48px; padding: 12px 24px;
  border: 1px solid transparent; border-radius: 12px;
  color: var(--ink); font-size: 15px; font-weight: 700; line-height: 1.5;
  transition: border-color var(--motion-feedback) var(--ease-standard);
}
.button::before, .pill::before {
  content: ""; position: absolute; z-index: -1; inset: -1px;
  background: #d4e899; clip-path: circle(0% at 50% 100%);
  transition: clip-path var(--motion-feedback) var(--ease-standard); pointer-events: none;
}
.button--primary, .pill--green { background: var(--lime); }
.button--outline { background: white; border-color: var(--line); }
.button > span, .button-arrow { display: inline-block; transition: transform var(--motion-feedback) var(--ease-standard); }
.button span { font-size: 18px; }
.button:focus-visible::before, .pill:focus-visible::before { clip-path: circle(115% at 50% 100%); }
.button:focus-visible > span, .pill:focus-visible .button-arrow { transform: translateX(4px); }
.text-link { display: inline-flex; justify-content: space-between; align-items: center; gap: var(--s-3); min-height: 44px; font-size: 14px; font-weight: 700; color: var(--green); }
.text-link, .main-nav a, .footer-top nav a, .footer-bottom a, .news-list a > span {
  text-decoration-line: underline; text-decoration-color: transparent; text-underline-offset: 6px; text-decoration-thickness: 1px;
  transition: text-decoration-color var(--motion-feedback) var(--ease-standard), color var(--motion-feedback) var(--ease-standard);
}
.text-link:focus-visible, .main-nav a:focus-visible, .footer-top nav a:focus-visible, .footer-bottom a:focus-visible, .news-list a:focus-visible > span { text-decoration-color: currentColor; }
@media (hover: hover) and (pointer: fine) {
  .button:hover::before, .pill:hover::before { clip-path: circle(115% at 50% 100%); }
  .button:hover, .pill:hover { border-color: #adca64; }
  .button:hover > span, .pill:hover .button-arrow { transform: translateX(4px); }
  .text-link:hover, .main-nav a:hover, .footer-top nav a:hover, .footer-bottom a:hover, .news-list a:hover > span { text-decoration-color: currentColor; color: var(--green); }
}
.button:active::before, .pill:active::before { clip-path: circle(115% at 50% 100%); }

/* Stable header; its left edge shares the main content grid. */
.site-header { position: sticky; top: 0; z-index: 10; background: var(--paper); border-bottom: 1px solid var(--line); }
.header-inner { min-height: var(--header-size); display: flex; align-items: center; gap: var(--s-3); }
.brand { display: block; flex-shrink: 0; width: 320px; }
.main-nav { display: flex; align-items: center; gap: var(--s-3); margin-left: auto; font-size: 13px; font-weight: 700; }
.main-nav a { padding-block: var(--s-2); white-space: nowrap; }
.header-booking { flex-shrink: 0; padding-inline: var(--s-2); gap: var(--s-2); }
.menu-toggle { display: none; }

/* Five columns of copy / seven of imagery. All photo layers share one crop. */
.hero { align-items: center; padding-block: var(--s-5); }
.hero-copy { grid-column: span 5; }
.hero-copy .kicker { margin-bottom: var(--s-2); font-size: 13px; letter-spacing: .08em; }
.hero h1 { font-size: clamp(36px, 3.6vw, 52px); line-height: 1.5; letter-spacing: .025em; }
.hero h1 span { display: block; font-size: .65em; margin-top: var(--s-1); letter-spacing: .01em; }
.hero-description { margin-top: var(--s-3); color: var(--muted); font-size: 16px; }
.hero-copy .text-link { margin-top: var(--s-2); }
.hero-canvas { grid-column: span 7; position: relative; height: 480px; overflow: hidden; border-radius: 100px 24px 100px 24px; isolation: isolate; }
.hero-layer { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.hero-layer--effect { animation: hero-float var(--motion-float) ease-in-out infinite; animation-play-state: paused; }
.hero-canvas.is-floating .hero-layer--effect { animation-play-state: running; }
@keyframes hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(var(--float-distance)); } }
/* The opening covers only the non-interactive photograph, never booking or copy.
   A CSS completion guard also removes it if JS stops after inserting the layer. */
.hero-opening { position: absolute; z-index: 1; inset: 0; display: grid; place-items: center; background: var(--paper); pointer-events: none; animation: opening-unveil 480ms var(--ease-standard) 720ms both, opening-rescue 1ms linear 1500ms forwards; }
.hero-opening img { width: min(76%, 440px); height: auto; animation: opening-logo 400ms var(--ease-enter) both; }
@keyframes opening-logo { from { opacity: 0; transform: scale(.98); } to { opacity: 1; transform: scale(1); } }
@keyframes opening-unveil { from { opacity: 1; } to { opacity: 0; } }
@keyframes opening-rescue { to { visibility: hidden; } }

/* Four / eight columns within a 32px inset panel. */
.visit { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--panel-inset); }
.visit-actions { grid-column: span 4; }
.visit h2 { font-size: 25px; margin: var(--s-1) 0 var(--s-2); }
.booking-row { display: flex; gap: var(--s-2); }
.booking-row .button { flex: 1; gap: var(--s-1); padding-inline: var(--s-2); }
.phone-label { margin-top: var(--s-2); font-size: 12px; color: var(--muted); }
.phone { display: inline-block; font-size: 28px; font-weight: 700; line-height: 1.5; color: var(--ink); letter-spacing: .02em; }
.schedule { grid-column: span 8; padding-left: var(--gutter); border-left: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; font-size: 14px; text-align: center; line-height: 1.5; }
th, td { height: 40px; border-bottom: 1px solid var(--line); padding: 8px 4px; }
thead th { color: var(--muted); font-size: 13px; }
tbody th { font-weight: 500; text-align: left; white-space: nowrap; }
td { color: var(--green); }
.schedule-notes { display: flex; gap: var(--s-3); margin-top: var(--s-2); font-size: 12px; line-height: 1.7; color: var(--muted); }
.schedule-notes strong { color: var(--text); font-weight: 700; }

.section-heading { margin-bottom: var(--s-4); }
.section-heading h2 { font-size: 36px; margin-top: var(--s-1); letter-spacing: .035em; }
.section-intro { margin-top: var(--s-2); font-size: 18px; }
.news { padding-block: var(--s-6) var(--s-8); align-items: start; }
.news .section-heading { grid-column: span 3; margin: 0; }
.news h2 { font-size: 28px; }
.news .text-link { margin-top: var(--s-1); }
.news-list { grid-column: span 9; }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list li:first-child { border-top: 1px solid var(--line); }
.news-list a { display: grid; grid-template-columns: 112px 1fr; gap: var(--s-2); align-items: baseline; padding-block: var(--s-2); font-size: 14px; }
.news-list time { font-size: 12px; color: var(--muted); }
.services { background: white; }
.section-heading.layout-grid { row-gap: 0; }
.section-heading.layout-grid .kicker, .section-heading.layout-grid h2 { grid-column: 1 / 7; }
.section-heading.layout-grid .section-intro { grid-column: 7 / -1; grid-row: 1 / 3; align-self: end; margin: 0; }
.service-card { grid-column: span 4; }
.service-photo { aspect-ratio: 1.6; object-fit: cover; border-radius: var(--radius); }
.service-copy { padding-top: var(--s-3); }
.eyebrow { font-size: 12px; color: var(--muted); margin-bottom: var(--s-1); }
.service-copy h3 { font-size: 28px; margin-bottom: var(--s-2); }
.service-copy > p:last-child { font-size: 15px; line-height: 1.9; }
.symptoms { border-top: 1px solid var(--line); margin-top: var(--s-5); padding-top: var(--s-3); }
.symptoms h3 { grid-column: span 2; font-size: 18px; }
.symptoms ul { grid-column: span 10; display: flex; flex-wrap: wrap; gap: var(--s-1) 0; }
.symptoms li { font-size: 13px; line-height: 1.7; padding-inline: var(--s-2); border-left: 1px solid var(--line); }

.features { display: grid; gap: var(--s-6); }
.feature { align-items: center; }
.feature-photo { grid-column: 1 / 7; aspect-ratio: 1.65; object-fit: cover; border-radius: var(--radius); }
.feature-copy { grid-column: 7 / -1; }
.feature-copy h3 { font-size: 28px; line-height: 1.6; margin-bottom: var(--s-2); max-width: 17em; text-wrap: balance; }
.feature-copy p { font-size: 16px; line-height: 1.9; }
.feature--2 .feature-photo { grid-column: 7 / -1; grid-row: 1; }
.feature--2 .feature-copy { grid-column: 1 / 7; grid-row: 1; }
.initiatives { margin-top: var(--s-6); padding-top: var(--s-4); border-top: 1px solid var(--line); }
.initiatives > h3 { font-size: 21px; margin-bottom: var(--s-3); }
.initiative { grid-column: span 4; padding-right: var(--s-3); border-right: 1px solid var(--line); }
.initiative:last-child { padding-right: 0; border: 0; }
.initiative-icon-disc { display: block; width: 40px; height: 40px; margin-bottom: var(--s-2); }
.initiative-icon { width: 100%; height: 100%; object-fit: contain; }
.initiative h4 { font-size: 18px; margin-bottom: var(--s-1); }
.initiative p { font-size: 14px; line-height: 1.85; }
.director { row-gap: var(--s-2); margin-top: var(--s-6); padding: var(--panel-inset); background: white; border-radius: var(--radius); align-items: center; }
.director-profile { grid-column: 1 / 7; grid-row: 1 / 3; display: flex; align-items: center; gap: var(--s-3); }
.director-photo { width: 144px; height: 144px; object-fit: cover; border-radius: 20px; }
.director-caption, .director-specialty { font-size: 12px; color: var(--muted); }
.director-profile h3 { font-size: 25px; margin-block: var(--s-1); }
.director-message { grid-column: 7 / -1; grid-row: 1; align-self: end; }
.director-message p { font-size: 23px; font-weight: 700; line-height: 1.7; color: var(--ink); }
.director-cta { grid-column: 7 / -1; grid-row: 2; justify-self: start; align-self: start; }
.button-arrow { width: 20px; height: 20px; }
.button-arrow svg { display: block; width: 100%; height: 100%; }

.access { background: white; }
.access-layout { align-items: center; }
.access-location, .access-info { grid-column: span 6; }
.map-placeholder { display: grid; place-items: center; min-height: 280px; background: #eef0e9; border: 1px solid var(--line); border-radius: var(--radius); color: #6b7562; text-align: center; }
.map-label { display: grid; gap: var(--s-1); font-size: 12px; }
.map-label strong { font-family: Roboto, sans-serif; letter-spacing: .1em; font-size: 24px; font-weight: 500; }
.access-location address { font-size: 14px; margin-top: var(--s-2); line-height: 1.8; }
.access-logo { width: 100%; max-width: 392px; margin-bottom: var(--s-3); }
.access-info > p { font-size: 16px; margin-bottom: var(--s-2); }
.access-info > .text-link { display: flex; width: fit-content; margin-top: var(--s-1); }
.access-info .booking-row { margin-top: var(--s-2); }
.site-footer { padding: var(--s-5) 0 var(--s-3); }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); }
.site-footer .brand { width: 304px; }
.footer-top nav { display: flex; gap: var(--s-3); font-size: 12px; flex-wrap: wrap; }
.footer-bottom { display: flex; justify-content: space-between; gap: var(--s-3); padding-top: var(--s-3); margin-top: var(--s-4); border-top: 1px solid var(--line); font-size: 11px; color: var(--muted); }
.footer-bottom > div { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.footer-bottom small { font-size: 11px; }
.preview-toast { position: fixed; z-index: 30; bottom: 24px; left: 50%; transform: translateX(-50%); width: max-content; max-width: calc(100% - 32px); background: var(--ink); color: white; padding: 16px 24px; border-radius: 12px; font-size: 14px; display: none; }
.preview-toast.is-visible { display: block; }

/* Offscreen elements are armed once; WAAPI owns the entrance, not transitions. */
.reveal-pending { opacity: 0; transform: translateY(12px); }
@media (max-width: 1199px) {
  :root { --page-inset: var(--s-4); }
  .header-inner { gap: var(--s-2); }
  .brand { width: 264px; }
  .main-nav { gap: var(--s-2); font-size: 12px; }
  .hero-canvas { height: 432px; }
  .visit h2 { font-size: 23px; }
  .visit .booking-row { flex-direction: column; gap: var(--s-1); }
  .director-photo { width: 112px; height: 112px; }
  .director-profile { gap: var(--s-2); }
  .director-message p { font-size: 20px; }
}
@media (min-width: 600px) and (max-width: 959px) {
  .hero-copy, .hero-canvas { grid-column: span 4; }
  .hero h1 { font-size: clamp(30px, 4vw, 36px); }
  .hero h1 span { font-size: 20px; }
  .hero-canvas { height: clamp(256px, 40vw, 376px); border-radius: 80px 24px 80px 24px; }
  .hero-description { font-size: 14px; }
  .visit-actions { display: grid; grid-template-columns: 1fr 1fr; column-gap: var(--gutter); }
  .visit-actions .kicker, .visit-actions h2 { grid-column: 1; }
  .visit-actions .booking-row { grid-column: 2; grid-row: 1 / 5; align-self: center; }
  .visit-actions .phone-label, .visit-actions .phone { grid-column: 1; }
  .visit-actions .phone-label { margin-top: 0; }
  .visit h2 { font-size: 22px; }
  .service-card { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: var(--gutter); align-items: center; }
  .service-photo { grid-column: span 3; height: 100%; min-height: 192px; aspect-ratio: auto; }
  .service-copy { grid-column: span 5; padding: 0; }
}
@media (max-width: 959px) {
  :root { --columns: 8; --gutter: var(--s-3); --section-space: var(--s-8); --panel-inset: var(--s-3); --header-size: 80px; }
  .brand { width: 304px; max-width: calc(100% - 184px); }
  .header-booking { margin-left: auto; }
  .menu-toggle { display: flex; flex: 0 0 44px; min-height: 48px; align-items: center; flex-direction: column; justify-content: center; gap: var(--s-1); padding: 0; border: 0; background: transparent; font-size: 9px; color: var(--ink); cursor: pointer; }
  .menu-bars { position: relative; width: 24px; height: 16px; }
  .menu-bars::before, .menu-bars::after { content: ""; position: absolute; inset: 3px 0 auto; height: 1.5px; background: currentColor; transition: transform var(--motion-feedback) var(--ease-standard); }
  .menu-bars::after { top: auto; bottom: 3px; }
  .menu-toggle[aria-expanded="true"] .menu-bars::before { transform: translateY(4.25px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-bars::after { transform: translateY(-4.25px) rotate(-45deg); }
  .main-nav { position: absolute; left: 0; right: 0; top: 100%; margin: 0; padding: 16px var(--page-inset) 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--gutter); background: var(--paper); border-bottom: 1px solid var(--line); max-height: calc(100dvh - var(--header-size)); overflow: auto; }
  .main-nav a { border-bottom: 1px solid var(--line); font-size: 14px; }
  .js .main-nav { opacity: 0; visibility: hidden; transform: translateY(-8px); pointer-events: none; transition: opacity var(--motion-feedback) var(--ease-standard), transform var(--motion-feedback) var(--ease-standard), visibility 0s var(--motion-feedback); }
  .js .main-nav.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition-delay: 0s; }
  html:not(.js) .site-header { position: relative; }
  html:not(.js) .main-nav { position: static; flex-basis: 100%; }
  html:not(.js) .header-inner { flex-wrap: wrap; }
  html:not(.js) .menu-toggle { display: none; }
  .visit-actions, .schedule { grid-column: 1 / -1; }
  .schedule { border-left: 0; border-top: 1px solid var(--line); padding: var(--s-2) 0 0; }
  .phone { font-size: 24px; }
  .section-heading h2 { font-size: 32px; }
  .section-intro { font-size: 16px; }
  .section-heading.layout-grid .kicker, .section-heading.layout-grid h2 { grid-column: 1 / 5; }
  .section-heading.layout-grid .section-intro { grid-column: 5 / -1; }
  .news { padding-block: var(--s-5) var(--s-6); }
  .news .section-heading { grid-column: span 2; }
  .news-list { grid-column: span 6; }
  .service-card { grid-column: 1 / -1; }
  .service-copy h3 { font-size: 24px; }
  .symptoms h3 { grid-column: span 2; }
  .symptoms ul { grid-column: span 6; }
  .feature-photo, .feature--2 .feature-copy { grid-column: 1 / 5; }
  .feature-copy, .feature--2 .feature-photo { grid-column: 5 / -1; }
  .feature-copy h3 { font-size: 24px; }
  .feature-copy p { font-size: 15px; }
  .initiative { grid-column: 1 / -1; display: grid; grid-template-columns: 40px 1fr; gap: var(--s-1) var(--s-2); padding: 0 0 var(--s-3); border: 0; border-bottom: 1px solid var(--line); }
  .initiative-icon-disc { grid-row: 1 / 3; margin: 0; }
  .initiative h4 { margin: 0; }
  .director { row-gap: var(--s-3); }
  .director-message, .director-profile, .director-cta { grid-column: 1 / -1; grid-row: auto; }
  .director-message { grid-row: 1; }
  .director-profile { grid-row: 2; gap: var(--s-3); }
  .director-cta { grid-row: 3; }
  .director-message p { font-size: 24px; }
  .access-location, .access-info { grid-column: span 4; }
  .access-info > p { font-size: 14px; }
  .access-info .booking-row { flex-direction: column; }
  .map-placeholder { min-height: 256px; }
  .footer-top { align-items: start; flex-direction: column; gap: var(--s-3); }
}
@media (max-width: 599px) {
  :root { --columns: 4; --gutter: var(--s-2); --page-inset: var(--s-3); --section-space: var(--s-6); --panel-inset: var(--s-3); --radius: 20px; --header-size: 72px; --float-distance: -12px; }
  .header-inner { gap: var(--s-1); }
  .header-inner .brand { width: auto; max-width: none; flex: 1; min-width: 0; }
  .header-inner .brand img { aspect-ratio: 388 / 105; max-height: 48px; object-fit: contain; object-position: left center; }
  .header-booking { font-size: 12px; padding-inline: var(--s-1); min-height: 44px; }
  .header-booking span { display: none; }
  .menu-toggle { flex-basis: 40px; }
  .hero { padding-block: var(--s-3); row-gap: var(--s-3); }
  .hero-copy, .hero-canvas { grid-column: 1 / -1; }
  .hero-copy .kicker { font-size: 11px; margin-bottom: var(--s-2); }
  .hero h1 { font-size: 38px; line-height: 1.4; letter-spacing: .03em; }
  .hero h1 span { font-size: 24px; }
  .hero-description { font-size: 14px; margin-top: var(--s-2); line-height: 1.8; }
  .hero-copy .text-link { margin-top: var(--s-1); font-size: 13px; }
  .hero-canvas { height: auto; aspect-ratio: 1.3; border-radius: 64px 20px 64px 20px; }
  .hero-layer { object-position: 54% center; }
  .visit { row-gap: var(--s-3); }
  .visit h2 { font-size: 23px; }
  .visit .booking-row { flex-direction: row; gap: var(--s-1); }
  .booking-row .button { min-height: 48px; font-size: 13px; padding-inline: var(--s-1); }
  .phone { font-size: 26px; }
  .schedule table, .schedule thead th { font-size: 12px; }
  th, td { padding: 8px 2px; }
  .schedule-notes { display: block; }
  .schedule-notes p + p { margin-top: var(--s-1); }
  .section-heading { margin-bottom: var(--s-3); }
  .section-heading h2 { font-size: 29px; }
  .kicker { font-size: 10px; }
  .section-heading.layout-grid .kicker, .section-heading.layout-grid h2, .section-heading.layout-grid .section-intro { grid-column: 1 / -1; grid-row: auto; }
  .section-heading.layout-grid .section-intro { font-size: 15px; margin-top: var(--s-2); }
  .news { row-gap: var(--s-3); padding-block: var(--s-4) var(--s-5); }
  .news .section-heading, .news-list { grid-column: 1 / -1; }
  .news .section-heading { display: grid; grid-template-columns: 1fr auto; }
  .news .section-heading .kicker { grid-column: 1; }
  .news h2 { font-size: 24px; grid-column: 1; }
  .news .text-link { grid-column: 2; grid-row: 1 / 3; align-self: end; margin: 0; font-size: 12px; gap: var(--s-2); }
  .news-list a { grid-template-columns: 1fr; gap: 4px; font-size: 13px; }
  .news-list time { font-size: 11px; }
  .service-grid { row-gap: var(--s-4); }
  .service-photo { aspect-ratio: 1.75; }
  .service-copy { padding-top: var(--s-2); }
  .service-copy h3 { font-size: 26px; margin-bottom: var(--s-1); }
  .symptoms { row-gap: var(--s-2); margin-top: var(--s-4); }
  .symptoms h3, .symptoms ul { grid-column: 1 / -1; }
  .symptoms li { font-size: 12px; padding-inline: var(--s-1); }
  .features { gap: var(--s-4); }
  .feature { row-gap: var(--s-3); }
  .feature-photo, .feature-copy, .feature--2 .feature-photo, .feature--2 .feature-copy { grid-column: 1 / -1; grid-row: auto; }
  .feature-copy h3 { font-size: 24px; margin-bottom: var(--s-1); }
  .initiatives { margin-top: var(--s-4); padding-top: var(--s-3); }
  .initiatives > h3 { font-size: 19px; }
  .initiative-grid { row-gap: var(--s-3); }
  .initiative { grid-template-columns: 32px 1fr; }
  .initiative-icon-disc { width: 32px; height: 32px; }
  .initiative h4 { font-size: 17px; }
  .director { margin-top: var(--s-4); }
  .director-message p { font-size: 21px; }
  .director-photo { width: 88px; height: 88px; border-radius: 16px; }
  .director-profile { gap: var(--s-2); }
  .director-profile h3 { font-size: 23px; margin-block: 4px; }
  .director-caption { font-size: 10px; }
  .director-cta { width: 100%; font-size: 14px; gap: var(--s-1); padding-inline: var(--s-2); }
  .access-layout { row-gap: var(--s-4); }
  .access-location, .access-info { grid-column: 1 / -1; }
  .map-placeholder { min-height: 232px; }
  .access-location address { font-size: 13px; }
  .access-logo { max-width: 304px; }
  .access-info .booking-row { flex-direction: row; }
  .access-info > p { font-size: 15px; }
  .site-footer { padding-block: var(--s-4) var(--s-3); }
  .site-footer .brand { width: 264px; max-width: 100%; flex: none; }
  .footer-top nav { gap: var(--s-2) var(--s-3); }
  .footer-bottom { flex-direction: column; gap: var(--s-2); margin-top: var(--s-3); }
  .footer-bottom > div { gap: var(--s-2); }
}
@media (max-width: 359px) {
  :root { --page-inset: var(--s-2); --panel-inset: var(--s-2); }
  .header-booking { font-size: 11px; }
  .hero h1 { font-size: 34px; }
  .hero h1 span, .visit h2 { font-size: 21px; }
  .director-message p { font-size: 18px; }
  .director-photo { width: 80px; height: 80px; }
  .booking-row .button { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .hero-opening { display: none; }
  .reveal-pending { opacity: 1; transform: none; }
}
@media print {
  .site-header { position: static; }
  .main-nav, .menu-toggle, .preview-toast, .hero-opening { display: none !important; }
  .section { padding-block: var(--s-4); }
  .hero-canvas { height: 304px; }
  .hero-layer--effect { animation: none !important; }
  .reveal-pending { opacity: 1; transform: none; }
  .visit, .service-card, .feature, .director { break-inside: avoid; }
}
