:root {
  --ink: #403d39;
  --muted: #77736d;
  --line: #e8e0be;
  --paper: #fffefa;
  --cream: #f8f3dd;
  --cream-deep: #ece7bd;
  --green: #b9cf74;
  --green-deep: #789f46;
  --green-pale: #eff2d4;
  --pink: #f4859b;
  --pink-pale: #fff0ea;
  --yellow: #f4c95a;
  --blue: #a1c9db;
  --brown: #8b7c70;
  --shadow: 0 14px 32px rgba(104, 96, 56, 0.08);
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: radial-gradient(circle at 50% 0, #fff 0, #fffefa 64%, #faf8ed 100%); line-height: 1.7; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 20; top: 12px; left: 12px; padding: 8px 14px; color: #fff; background: var(--ink); border-radius: 999px; transform: translateY(-150%); transition: transform 160ms ease; }
.skip-link:focus { transform: translateY(0); }

/* Shared header */
.site-header { position: sticky; z-index: 10; top: 0; border-bottom: 1px solid rgba(232, 224, 190, .9); background: rgba(255, 254, 250, .93); backdrop-filter: blur(14px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; gap: 9px; }
.brand-logo { width: 42px; height: 52px; padding: 2px; border: 1px solid rgba(232, 224, 190, .82); border-radius: 9px; background: #fff; object-fit: contain; box-shadow: 0 5px 12px rgba(104, 96, 56, .08); }
.brand-copy { display: grid; line-height: 1.05; }.brand-copy small { color: var(--muted); font-size: .47rem; letter-spacing: .02em; }.brand-copy strong { margin-top: 4px; font-family: Georgia, "Yu Mincho", serif; font-size: 1.4rem; letter-spacing: .13em; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(12px, 1.8vw, 26px); width: 100%; font-size: .74rem; font-weight: 800; }.site-nav a { white-space: nowrap; }.site-nav a:hover, .site-nav a:focus-visible { color: var(--pink); }.site-nav a[aria-current="page"] { color: var(--green-deep); }
.header-cta { padding: 11px 18px; color: #fff !important; background: var(--pink); border-radius: 999px; box-shadow: 0 7px 16px rgba(244, 133, 155, .2); }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 9px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--paper); }.menu-toggle > span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 4px auto; border-radius: 3px; background: currentColor; }

/* Shared typography and cards */
.eyebrow, .section-label { margin: 0 0 9px; color: var(--green-deep); font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 28px; }.section-heading > div { max-width: 650px; }.section-heading > p { max-width: 420px; margin: 0; color: var(--muted); font-size: .86rem; }.section-heading h2, .page-hero h1 { margin: 0; line-height: 1.35; letter-spacing: .04em; }.section-heading h2 { font-size: clamp(1.7rem, 3vw, 2.65rem); }.section-heading h2::after { display: block; width: 42px; height: 6px; margin-top: 14px; border-radius: 99px; background: linear-gradient(90deg, var(--green), var(--pink), var(--yellow)); content: ""; }
.section { padding: 90px 0; }.section-soft { background: #f8f3df; }.section-pink { background: #fff3ec; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }.content-card, .info-card, .doc-card { border: 1px solid var(--line); border-radius: 22px; background: rgba(255, 255, 255, .82); box-shadow: var(--shadow); }.content-card { padding: 26px; }.content-card h3, .info-card h3, .doc-card h3 { margin: 0 0 9px; font-size: 1.05rem; }.content-card p, .info-card p, .doc-card p { margin: 0; color: var(--muted); font-size: .82rem; }
.icon-badge { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 17px; border-radius: 16px; color: #fff; background: var(--green-deep); font-weight: 900; }.content-card:nth-child(2) .icon-badge { background: var(--pink); }.content-card:nth-child(3) .icon-badge { background: var(--yellow); }.content-card:nth-child(4) .icon-badge { background: var(--blue); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 46px; padding: 10px 19px; border: 1px solid transparent; border-radius: 999px; font-size: .78rem; font-weight: 900; transition: transform 160ms ease, box-shadow 160ms ease; }.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 9px 18px rgba(85, 77, 43, .12); }.button-primary { color: #fff; background: var(--pink); }.button-soft { color: var(--green-deep); background: var(--green-pale); }.button-outline { border-color: var(--line); background: #fff; }.button-disabled { color: #999; background: #eee; pointer-events: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 25px; }.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--green-deep); font-size: .8rem; font-weight: 900; }.text-link span { color: var(--pink); font-size: 1.15rem; }
.photo-placeholder { position: relative; display: grid; place-items: center; min-height: 200px; overflow: hidden; border-radius: 18px; background-color: #f2e6c2; background-image: radial-gradient(circle at 22% 22%, rgba(255,255,255,.72) 0 10%, transparent 11%), linear-gradient(140deg, rgba(175,204,120,.66), transparent 34%), linear-gradient(35deg, rgba(246,183,180,.55), transparent 55%), linear-gradient(180deg, #f8e8c6, #d6e1b7); }.photo-placeholder::before, .photo-placeholder::after { position: absolute; border-radius: 50%; opacity: .3; content: ""; }.photo-placeholder::before { right: -45px; bottom: -55px; width: 160px; height: 160px; background: var(--yellow); }.photo-placeholder::after { top: -55px; left: -45px; width: 145px; height: 145px; background: var(--pink); }.photo-placeholder span { position: relative; z-index: 1; padding: 7px 11px; border: 1px solid rgba(255,255,255,.9); border-radius: 8px; background: rgba(255,255,255,.76); font-size: .68rem; font-weight: 900; line-height: 1.45; text-align: center; }
.mascot { position: absolute; z-index: 3; width: auto; height: auto; object-fit: contain; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 600ms ease, transform 600ms ease; }.reveal.is-visible { opacity: 1; transform: none; }

/* Homepage: the supplied board image is treated as the information architecture */
.home-board { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 22px; padding: 18px 0 30px; }.home-hero, .home-card { border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.78); box-shadow: var(--shadow); }.home-hero { overflow: hidden; }.home-hero-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 11px 20px; border-bottom: 1px solid #f0ead4; }.home-hero-top .site-nav { gap: 13px; font-size: .59rem; }.home-hero-top .site-nav .header-cta { padding: 8px 11px; }
.home-visual { position: relative; min-height: 470px; overflow: hidden; }.home-visual .photo-placeholder { position: absolute; inset: 0; min-height: 470px; border-radius: 0; }.home-visual .photo-placeholder .home-photo-label { position: absolute; right: 25%; bottom: 33%; left: 5%; z-index: 2; padding: 16px 17px; border-radius: 10px; background: rgba(255,255,255,.67); }.home-photo-label h1 { margin: 0; font-size: clamp(1.55rem, 2.6vw, 2.75rem); line-height: 1.45; letter-spacing: .05em; }.home-photo-label h1 em { color: var(--pink); font-style: normal; }.home-photo-label p { margin: 13px 0 0; font-size: .7rem; font-weight: 800; line-height: 1.8; }.home-visual .photo-placeholder::after { top: -70px; left: -70px; }.home-visual::after { position: absolute; right: 7%; bottom: 7%; width: 50px; height: 20px; border-bottom: 3px solid var(--green); border-radius: 50%; content: ""; transform: rotate(-20deg); }.home-mascot { right: 4%; bottom: 4%; width: 85px; filter: drop-shadow(0 6px 6px rgba(75,99,52,.12)); }
.home-shortcuts { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; padding: 12px 18px 20px; background: #f8f3df; }.home-shortcuts a { display: grid; justify-items: center; gap: 6px; min-height: 82px; padding: 9px 4px; border: 1px solid rgba(232,224,190,.8); border-radius: 14px; background: rgba(255,255,255,.9); text-align: center; }.home-shortcuts a:hover, .home-shortcuts a:focus-visible { transform: translateY(-2px); box-shadow: var(--shadow); }.shortcut-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #fff; font-weight: 900; }.shortcut-icon.green { background: var(--green-deep); }.shortcut-icon.pink { background: var(--pink); }.shortcut-icon.yellow { background: #efa92e; }.shortcut-icon.blue { background: var(--blue); }.shortcut-icon.sage { background: var(--green); }.home-shortcuts strong { font-size: .58rem; line-height: 1.4; }
.home-promises { padding: 25px 22px 36px; }.home-promises h2 { margin: 0 0 21px; font-size: 1.35rem; text-align: center; letter-spacing: .07em; }.promise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }.promise-tile { display: flex; flex-direction: column; min-height: 270px; padding: 14px; border: 1px solid rgba(224,213,177,.7); border-radius: 17px; }.promise-tile:nth-child(1) { background: #f2f3d5; }.promise-tile:nth-child(2) { background: #fff0e9; }.promise-tile:nth-child(3) { background: #fff6dc; }.promise-number { display: grid; place-items: center; width: 24px; height: 24px; margin-bottom: 8px; border-radius: 50%; color: #fff; background: var(--green-deep); font-size: .8rem; font-weight: 900; }.promise-tile:nth-child(2) .promise-number { background: var(--pink); }.promise-tile:nth-child(3) .promise-number { background: #e4a51d; }.promise-tile h3 { margin: 0; font-size: .9rem; line-height: 1.45; }.promise-tile p { margin: 8px 0 12px; color: var(--muted); font-size: .61rem; line-height: 1.7; }.promise-tile .photo-placeholder { min-height: 90px; margin-top: auto; border-radius: 12px; }.promise-tile .photo-placeholder span { font-size: .52rem; }
.home-contact { position: relative; display: flex; align-items: center; gap: 14px; width: min(83%, 510px); margin: -1px auto 28px; padding: 13px 17px 13px 86px; border: 6px solid #fff; border-radius: 999px; background: #fff4f1; box-shadow: 0 0 0 2px var(--green), 0 9px 16px rgba(103,96,57,.08); }.home-contact .mascot { left: 22px; bottom: -5px; width: 62px; }.home-contact span { display: grid; line-height: 1.35; }.home-contact small { color: var(--muted); font-size: .55rem; }.home-contact strong { color: var(--pink); font-size: .82rem; }.home-contact em { font-size: .56rem; font-style: normal; }.home-contact b { margin-left: auto; color: var(--pink); font-size: 1.45rem; font-weight: 400; }
.home-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; align-content: start; }.home-card { position: relative; min-height: 295px; padding: 22px; overflow: hidden; }.home-card h2 { margin: 0; font-size: 1.08rem; text-align: center; letter-spacing: .05em; }.home-card .card-lead { margin: 9px 0 13px; font-size: .62rem; line-height: 1.65; text-align: center; }.home-card .round-link { display: flex; align-items: center; justify-content: center; gap: 14px; width: 83%; min-height: 31px; margin: 12px auto 0; padding: 5px 11px; border-radius: 999px; color: var(--ink); background: #f3e6af; font-size: .59rem; font-weight: 900; }.home-card .round-link:hover { box-shadow: var(--shadow); }.home-card .round-link span { color: var(--pink); font-size: .95rem; }.home-card .mini-photo { min-height: 80px; border-radius: 10px; }.home-about .mini-photo { margin-bottom: 8px; }.mini-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; }.mini-thumbs .photo-placeholder { min-height: 38px; border-radius: 6px; }.mini-thumbs span { font-size: .42rem; }.home-program .program-list { display: grid; gap: 6px; }.program-row { display: grid; grid-template-columns: 39px 1fr; gap: 7px; align-items: center; padding: 5px; border: 1px solid #eee5cf; border-radius: 9px; }.program-row .photo-placeholder { min-height: 34px; border-radius: 6px; }.program-row .photo-placeholder span { padding: 3px 4px; font-size: .4rem; }.program-row strong { display: block; color: var(--green-deep); font-size: .57rem; }.program-row small { display: block; color: var(--muted); font-size: .44rem; line-height: 1.35; }.home-guide .guide-list, .home-disclosure .disclosure-links { display: grid; gap: 8px; }.home-guide .guide-list > div { display: grid; grid-template-columns: 55px 1fr; gap: 7px; padding: 8px; border-radius: 8px; background: #f8f5e7; }.home-guide dt { color: var(--green-deep); font-size: .53rem; font-weight: 900; }.home-guide dd { margin: 0; color: var(--muted); font-size: .51rem; line-height: 1.5; }.home-disclosure { background: #f8f3df; }.disclosure-links a { display: flex; align-items: center; justify-content: space-between; padding: 9px 11px; border: 1px solid rgba(232,224,190,.7); border-radius: 9px; background: rgba(255,255,255,.6); font-size: .58rem; font-weight: 800; }.disclosure-links a span { color: var(--pink); }

/* Internal pages */
.breadcrumb { padding: 18px 0 0; color: var(--muted); font-size: .7rem; }.breadcrumb a { color: var(--green-deep); }.page-hero { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(35px, 7vw, 92px); align-items: center; padding: 56px 0 76px; }.page-hero h1 { max-width: 620px; font-size: clamp(2rem, 4vw, 3.8rem); }.page-hero-copy { max-width: 620px; }.page-hero-copy > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: .95rem; }.page-hero-art { position: relative; }.page-hero-art .photo-placeholder { min-height: 330px; }.page-hero-art .mascot { right: 2%; bottom: 2%; width: 82px; }.page-section { padding: 72px 0; }.page-section + .page-section { border-top: 1px solid rgba(232,224,190,.55); }.page-section-heading { margin-bottom: 28px; }.page-section-heading h2 { margin: 0 0 9px; font-size: clamp(1.5rem, 2.7vw, 2.3rem); }.page-section-heading p { max-width: 690px; margin: 0; color: var(--muted); font-size: .86rem; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.feature-box { padding: 25px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.82); }.feature-box h3 { margin: 0 0 8px; font-size: 1rem; }.feature-box p { margin: 0; color: var(--muted); font-size: .8rem; }.image-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 12px; }.image-grid .photo-placeholder { min-height: 340px; }.image-grid .image-stack { display: grid; gap: 12px; }.image-grid .image-stack .photo-placeholder { min-height: 164px; }.numbered-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }.numbered-box { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }.numbered-box .number { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 13px; border-radius: 50%; color: #fff; background: var(--green-deep); font-weight: 900; }.numbered-box:nth-child(2) .number { background: var(--pink); }.numbered-box:nth-child(3) .number { background: var(--yellow); }.numbered-box h3 { margin: 0 0 7px; font-size: .98rem; }.numbered-box p { margin: 0; color: var(--muted); font-size: .77rem; }
.page-hero-photo, .facility-photo { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #f5efe0; box-shadow: var(--shadow); }
.page-hero-photo { height: 345px; }
.page-hero-photo img, .facility-photo img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-photo figcaption, .facility-photo figcaption { position: absolute; right: 12px; bottom: 12px; left: 12px; display: grid; gap: 2px; padding: 10px 13px; border-radius: 12px; color: var(--ink); background: rgba(255, 254, 250, .9); box-shadow: 0 8px 22px rgba(70, 61, 39, .1); backdrop-filter: blur(7px); }
.page-hero-photo figcaption, .facility-photo figcaption strong { font-size: .76rem; }
.facility-photo figcaption span { color: var(--muted); font-size: .65rem; line-height: 1.55; }
.facility-gallery { align-items: stretch; }
.facility-photo-main { min-height: 540px; }
.facility-gallery .image-stack { grid-template-rows: repeat(2, minmax(0, 1fr)); }
.facility-gallery .image-stack .facility-photo { min-height: 264px; }
.facility-vehicle { height: clamp(260px, 34vw, 440px); margin-top: 16px; }
.program-page-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }.program-page-card { display: grid; grid-template-columns: 86px 1fr; gap: 17px; align-items: center; padding: 21px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.85); }.program-page-card .photo-placeholder { min-height: 110px; border-radius: 14px; }.program-page-card h3 { margin: 0 0 5px; font-size: 1rem; }.program-page-card p { margin: 0; color: var(--muted); font-size: .75rem; }.day-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }.day-flow article { position: relative; padding: 18px 14px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }.day-flow article:not(:last-child)::after { position: absolute; top: 48%; right: -12px; color: var(--pink); content: "→"; font-size: 1.2rem; }.day-flow time { display: inline-grid; place-items: center; width: 31px; height: 31px; margin-bottom: 12px; border-radius: 50%; color: #fff; background: var(--green); font-size: .68rem; font-weight: 900; }.day-flow article:nth-child(2) time { background: var(--pink); }.day-flow article:nth-child(3) time { background: var(--yellow); }.day-flow article:nth-child(4) time { background: var(--blue); }.day-flow h3 { margin: 0 0 6px; font-size: .83rem; }.day-flow p { margin: 0; color: var(--muted); font-size: .66rem; }
.guide-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 28px; }.guide-list-large { display: grid; gap: 10px; }.guide-list-large > div { display: grid; grid-template-columns: 110px 1fr; gap: 17px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }.guide-list-large dt { color: var(--green-deep); font-size: .76rem; font-weight: 900; }.guide-list-large dd { margin: 0; color: var(--muted); font-size: .78rem; }.guide-flow-large { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }.guide-flow-large div { position: relative; padding: 16px 12px; border-radius: 14px; background: var(--green-pale); text-align: center; }.guide-flow-large div:nth-child(2) { background: var(--pink-pale); }.guide-flow-large div:nth-child(3) { background: #fff4d3; }.guide-flow-large div:nth-child(4) { background: #e3f0f3; }.guide-flow-large div:not(:last-child)::after { position: absolute; top: 35%; right: -13px; color: var(--pink); content: "→"; }.guide-flow-large strong { display: block; font-size: .75rem; }.guide-flow-large small { display: block; margin-top: 4px; color: var(--muted); font-size: .62rem; }.faq-list-large { display: grid; gap: 10px; max-width: 800px; }.faq-list-large details { border: 1px solid var(--line); border-radius: 14px; background: #fff; }.faq-list-large summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 18px; cursor: pointer; font-size: .82rem; font-weight: 900; list-style: none; }.faq-list-large summary::-webkit-details-marker { display: none; }.faq-list-large summary span { color: var(--pink); font-size: 1.15rem; }.faq-list-large details[open] summary span { transform: rotate(45deg); }.faq-list-large details p { margin: 0; padding: 0 18px 15px; color: var(--muted); font-size: .76rem; }

/* Disclosure */
.disclosure-summary { display: grid; gap: 10px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--cream); }.disclosure-summary div { display: grid; grid-template-columns: 70px 1fr; gap: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(232,224,190,.8); }.disclosure-summary div:last-child { padding-bottom: 0; border-bottom: 0; }.disclosure-summary span { color: var(--green-deep); font-size: .72rem; font-weight: 900; }.disclosure-summary strong { font-size: .75rem; }.disclosure-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }.facility-tabs { display: flex; flex-wrap: wrap; gap: 7px; }.facility-tab { padding: 8px 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: #fff; font-size: .72rem; font-weight: 800; }.facility-tab.is-active, .facility-tab:hover { color: #fff; background: var(--green-deep); }.disclosure-status { color: var(--muted); font-size: .72rem; }.disclosure-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }.doc-card { padding: 21px; }.doc-card[hidden] { display: none; }.doc-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }.tag { padding: 4px 9px; border-radius: 999px; color: var(--green-deep); background: var(--green-pale); font-size: .62rem; font-weight: 900; }.tag-pink { color: #bb5d70; background: var(--pink-pale); }.doc-card h3 { min-height: 3.4em; font-size: .88rem; }.doc-card p { min-height: 2.8em; font-size: .67rem; }.doc-actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }.doc-actions .button { min-height: 35px; padding: 7px 11px; font-size: .62rem; }.archive-year { margin-top: 42px; }.archive-year h3 { margin: 0 0 15px; font-size: 1.2rem; }.notice { padding: 18px; border: 1px dashed var(--line); border-radius: 14px; color: var(--muted); background: #fff; font-size: .8rem; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 26px; }.contact-info { display: grid; align-content: start; gap: 12px; }.contact-info .info-card { padding: 22px; }.contact-info h2 { margin: 0 0 12px; font-size: 1.45rem; }.contact-info p { margin: 0; color: var(--muted); font-size: .8rem; }.contact-info dl { display: grid; gap: 9px; margin: 0; }.contact-info dl div { display: grid; grid-template-columns: 80px 1fr; gap: 10px; padding-bottom: 9px; border-bottom: 1px solid #eee7d2; }.contact-info dt { color: var(--green-deep); font-size: .7rem; font-weight: 900; }.contact-info dd { margin: 0; font-size: .74rem; }.form-card { padding: 28px; border: 1px solid var(--line); border-radius: 21px; background: rgba(255,255,255,.85); box-shadow: var(--shadow); }.form-card h2 { margin: 0 0 10px; font-size: 1.45rem; }.form-card > p { margin: 0 0 20px; color: var(--muted); font-size: .8rem; }.contact-form { display: grid; gap: 13px; }.contact-form label { display: grid; gap: 5px; font-size: .75rem; font-weight: 900; }.contact-form label > span { color: var(--pink); font-size: .65rem; }.contact-form input, .contact-form textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; outline: 0; color: var(--ink); background: #fffefa; font-size: .78rem; }.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green-deep); box-shadow: 0 0 0 3px rgba(120,159,70,.13); }.contact-form textarea { resize: vertical; }.form-message { min-height: 1.5em; margin: 0; color: var(--green-deep); font-size: .72rem; }

.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 30px; border-radius: 21px; background: linear-gradient(135deg, #eef1cf, #fff0e9); }.cta-band h2 { margin: 0 0 7px; font-size: 1.35rem; }.cta-band p { margin: 0; color: var(--muted); font-size: .78rem; }.cta-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.site-footer { margin-top: 20px; padding: 31px 0 36px; border-top: 1px solid var(--line); background: #fffefb; }.footer-grid { display: grid; grid-template-columns: 1.25fr .9fr .7fr; gap: 45px; }.footer-grid h2, .footer-grid h3 { margin: 0 0 10px; }.footer-grid h2 { font-size: 1.2rem; }.footer-grid h3 { font-size: .82rem; }.footer-grid p, .footer-list { margin: 0; color: var(--muted); font-size: .7rem; }.footer-list { display: grid; gap: 5px; padding: 0; list-style: none; }.footer-list a:hover { color: var(--pink); }.privacy-note { margin: 25px 0 0; padding-top: 15px; border-top: 1px solid #eee7d2; color: var(--muted); font-size: .65rem; }.copyright { margin: 16px 0 0; color: var(--muted); font-size: .62rem; }

@media (max-width: 1000px) { .site-nav { gap: 10px; font-size: .62rem; }.home-board { gap: 15px; }.home-hero-top { padding-inline: 14px; }.home-hero-top .site-nav { gap: 7px; font-size: .48rem; }.home-cards { gap: 15px; }.home-card { padding: 16px; }.section { padding: 70px 0; }.page-hero { gap: 35px; }.page-hero h1 { font-size: 2.45rem; }.disclosure-grid { gap: 10px; } }
@media (max-width: 780px) { .container { width: min(100% - 28px, 640px); }.header-inner { min-height: 68px; }.menu-toggle { display: block; }.site-nav { position: absolute; z-index: 10; top: calc(100% + 1px); right: 14px; left: 14px; display: grid; gap: 0; padding: 9px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,254,250,.98); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-7px); transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease; }.site-nav.is-open { opacity: 1; visibility: visible; transform: none; }.site-nav a { padding: 11px 13px; font-size: .75rem; }.header-cta { text-align: center; }.home-board { display: block; }.home-hero { margin-bottom: 16px; }.home-hero-top .site-nav { display: none; }.home-cards { grid-template-columns: repeat(2,1fr); gap: 15px; }.home-card { min-height: 290px; }.page-hero, .contact-layout, .guide-layout { grid-template-columns: 1fr; }.page-hero-art { max-width: 560px; }.section-heading { display: block; }.section-heading > p { margin-top: 14px; }.card-grid, .disclosure-grid { grid-template-columns: repeat(2,1fr); }.program-page-grid { grid-template-columns: 1fr; }.day-flow { grid-template-columns: repeat(2,1fr); gap: 14px; }.day-flow article:not(:last-child)::after { display: none; }.guide-flow-large { grid-template-columns: repeat(2,1fr); }.guide-flow-large div:not(:last-child)::after { display: none; }.footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div:first-child { grid-column: span 2; } }
@media (max-width: 540px) { .container { width: calc(100% - 22px); }.home-cards, .card-grid, .disclosure-grid { grid-template-columns: 1fr; }.home-card { min-height: 0; }.home-visual, .home-visual .photo-placeholder { min-height: 355px; }.home-visual .photo-placeholder .home-photo-label { right: 7%; bottom: 30%; left: 5%; padding: 12px; }.home-photo-label h1 { font-size: clamp(1.18rem, 6vw, 1.7rem); }.home-photo-label p { font-size: .56rem; }.home-mascot { width: 68px; }.home-shortcuts { grid-template-columns: repeat(2,1fr); }.home-shortcuts a:last-child { grid-column: span 2; }.home-promises { padding-inline: 13px; }.promise-grid { grid-template-columns: 1fr; }.promise-tile { min-height: 0; }.promise-tile .photo-placeholder { min-height: 105px; }.home-contact { width: 94%; padding-left: 73px; }.home-contact .mascot { left: 17px; width: 52px; }.home-contact strong { font-size: .7rem; }.home-contact em, .home-contact small { font-size: .5rem; }.page-hero { padding: 35px 0 50px; }.page-hero h1 { font-size: 2rem; }.page-hero-copy > p:not(.eyebrow) { font-size: .84rem; }.page-hero-art .photo-placeholder { min-height: 245px; }.page-hero-art .mascot { width: 67px; }.page-hero-photo { height: 285px; }.page-section { padding: 52px 0; }.two-column, .image-grid, .numbered-grid { grid-template-columns: 1fr; }.image-grid .photo-placeholder, .image-grid .image-stack .photo-placeholder { min-height: 185px; }.facility-photo-main, .facility-gallery .image-stack .facility-photo { min-height: 230px; }.facility-vehicle { height: 250px; }.program-page-card { grid-template-columns: 72px 1fr; padding: 15px; }.program-page-card .photo-placeholder { min-height: 88px; }.day-flow { grid-template-columns: 1fr; }.guide-list-large > div { grid-template-columns: 1fr; gap: 4px; }.guide-flow-large { grid-template-columns: 1fr; }.guide-flow-large div:not(:last-child)::after { display: block; top: auto; right: auto; bottom: -16px; left: 50%; content: "↓"; }.disclosure-summary div { grid-template-columns: 60px 1fr; gap: 8px; }.doc-card h3 { min-height: 0; }.cta-band { display: block; padding: 24px; }.cta-actions { margin-top: 18px; }.form-card { padding: 21px 16px; }.footer-grid { grid-template-columns: 1fr; gap: 22px; }.footer-grid > div:first-child { grid-column: auto; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.reveal { opacity: 1; transform: none; transition: none; }.button { transition: none; } }

/* Reference-board refinements */
.home-board { padding-top: 24px; }
.home-hero { position: relative; overflow: visible; }
.home-panel-label, .home-card-label { display: table; border-radius: 999px; color: #5f663d; background: var(--green-pale); font-size: .73rem; font-weight: 900; letter-spacing: .04em; line-height: 1.6; }
.home-panel-label { position: absolute; z-index: 2; top: -17px; left: 0; padding: 2px 18px; }
.home-card { overflow: visible; }
.home-card-label { margin: -33px auto 12px; padding: 2px 17px; }
.home-visual { min-height: 470px; }
.hero-media { position: absolute; inset: 0; overflow: hidden; background: #f6ead2; }
.hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,253,247,.92) 0%, rgba(255,253,247,.76) 28%, rgba(255,253,247,.15) 58%, transparent 78%); }
.home-photo-label { position: absolute; z-index: 2; top: 28%; left: 5%; width: 52%; padding: 18px 20px; border-left: 5px solid var(--pink); border-radius: 4px 16px 16px 4px; background: rgba(255,255,255,.66); backdrop-filter: blur(2px); }
.home-photo-label h1 { margin: 0; font-size: clamp(1.45rem, 2.4vw, 2.55rem); line-height: 1.45; letter-spacing: .05em; }
.home-photo-label h1 em { color: var(--pink); font-style: normal; }
.home-photo-label p { margin: 13px 0 0; font-size: .7rem; font-weight: 800; line-height: 1.8; }
@media (max-width: 540px) {
  .home-panel-label { top: -15px; padding-inline: 13px; font-size: .66rem; }
  .home-card-label { margin-top: -28px; font-size: .66rem; }
  .home-photo-label { top: 25%; right: 5%; width: auto; padding: 12px; }
  .home-photo-label h1 { font-size: clamp(1.18rem, 6vw, 1.7rem); }
  .home-photo-label p { font-size: .56rem; }
}
