:root {
    --pink: #e663b3;
    --pink-dark: #e663b3;
    --pink-soft: #fff0fa;
    --wing: #61a2d6;
    --wing-dark: #61a2d6;
    --blue: #61a2d6;
    --blue-text: #4294d6;
    --deep-blue: #27445c;
    --sky: #f1f8fe;
    --ink: #666666;
    --muted: #737373;
    --line: #eee6ea;
    --surface: #ffffff;
    --success: #176b3a;
    --success-bg: #e8f7ee;
    --error: #a91f42;
    --error-bg: #fdecef;
    --radius: 18px;
    --radius-small: 12px;
    --shadow: 0 8px 24px rgb(90 58 74 / 8%);
    --shell: 1120px;
    --font: "Segoe UI", Arial, Helvetica, sans-serif;
    --friendly-font: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #fffafd;
    font-family: var(--font);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.62;
    -webkit-text-size-adjust: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue-text); text-decoration-thickness: .08em; text-underline-offset: .16em; }
a:hover { color: var(--pink-dark); }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f2a900; outline-offset: 3px; }

.shell { width: min(100% - 2rem, var(--shell)); margin-inline: auto; }
.visually-hidden {
    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;
}
.skip-link {
    position: fixed;
    z-index: 1000;
    left: 1rem;
    top: -8rem;
    padding: .7rem 1rem;
    color: #fff;
    background: var(--ink);
    border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.preview-banner {
    padding: .45rem 1rem;
    color: #4d3500;
    background: #fff1bf;
    border-bottom: 1px solid #e7c65b;
    text-align: center;
    font-size: .9rem;
    font-weight: 700;
}
.site-header {
    position: relative;
    z-index: 20;
    background: linear-gradient(180deg, var(--sky), #fff);
    border-bottom: 2px solid var(--pink-soft);
}
.header-row {
    display: grid;
    min-height: 82px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
        "mark name actions"
        "nav nav nav";
    align-items: center;
    gap: .35rem;
    padding-block: .4rem;
}
.brand-mark {
    grid-area: mark;
    display: block;
    width: 52px;
    color: inherit;
    text-decoration: none;
}
.brand-mark img { width: 52px; height: 70px; object-fit: contain; }
.brand-name {
    grid-area: name;
    display: block;
    width: clamp(142px, 46vw, 174px);
    line-height: 0;
    text-decoration: none;
}
.brand-name img { width: 100%; height: auto; }
.brand-name:hover { opacity: .86; }
.header-actions { grid-area: actions; display: flex; align-items: center; gap: .55rem; }
.language-switch {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--blue-text);
    background: #fff;
    border: 2px solid var(--blue);
    border-radius: 50%;
    font-weight: 800;
    text-decoration: none;
}
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--pink-dark);
    background: #fff;
    border: 2px solid var(--pink-soft);
    border-radius: 11px;
    cursor: pointer;
}
.nav-toggle > span[aria-hidden] { width: 22px; height: 3px; background: currentColor; border-radius: 99px; }
.site-navigation { grid-area: nav; background: #fff; }
.site-navigation ul { display: flex; flex-direction: column; gap: .15rem; margin: 0; padding: .45rem 0 .2rem; list-style: none; }
.site-navigation a {
    display: block;
    padding: .7rem .85rem;
    color: var(--deep-blue);
    border-radius: .65rem;
    font-weight: 700;
    text-decoration: none;
}
.site-navigation a:hover { color: var(--pink-dark); background: var(--pink-soft); }
.site-navigation a[aria-current="page"] { color: var(--deep-blue); background: #ffd0ed; }

.main-content { min-height: 55vh; padding-block: clamp(1.5rem, 5vw, 3.5rem); }
h1, h2, h3 { margin-top: 0; color: var(--pink-dark); line-height: 1.18; text-wrap: balance; }
h1 { margin-bottom: .7em; font-size: clamp(2rem, 5vw, 3.15rem); letter-spacing: -.025em; }
h2 { margin-bottom: .55em; font-size: clamp(1.35rem, 3vw, 1.75rem); }
p { margin-block: 0 1em; }
.lead { max-width: 65ch; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.25rem); }
.eyebrow { margin-bottom: .35rem; color: var(--blue-text); font-size: .83rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.prose { max-width: 760px; margin-inline: auto; }
.wide-prose { max-width: 980px; }
.prose > * + h2, .prose section + section { margin-top: 2rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.35rem; }
.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: .68rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--friendly-font);
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.button-primary { color: #4b2738; background: #ff9bd8; box-shadow: 0 3px 0 #f05aae; }
.button-primary:hover { color: #40202f; background: #ff83ce; }
.button-outline { color: var(--pink); background: rgb(255 255 255 / 80%); border-color: var(--pink); }
.button-outline:hover { color: #4b2738; background: #ffd1ed; }
.hero .button-outline { border-width: 1px; }

.hero {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: #edf6fd;
    border: 1px solid #ffd8f0;
    border-radius: clamp(1rem, 3vw, 2rem);
    box-shadow: var(--shadow);
}
.hero-copy { align-self: center; padding: clamp(1.35rem, 4vw, 3rem); padding-bottom: 0; }
.hero-copy h1 { margin-bottom: .45em; }
.hero-art {
    display: grid;
    min-height: 270px;
    align-self: stretch;
    place-items: end center;
    padding-block: clamp(1.75rem, 3.25vw, 2.75rem);
    overflow: hidden;
    background: #edf6fd;
}
.hero-art img {
    width: auto;
    height: 285px;
    max-width: 92%;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgb(79 74 77 / 10%));
}
.announcement {
    margin-bottom: 1.5rem;
    padding: clamp(1.25rem, 4vw, 2rem);
    background: #f2f8fe;
    border: 2px dashed #9dcbf2;
    border-radius: var(--radius);
}
.announcement h2 { color: var(--blue-text); }
.announcement-body p:last-child { margin-bottom: 0; }
.card-grid { display: grid; gap: 1rem; }
.info-card {
    display: block;
    padding: 1.2rem;
    color: var(--ink);
    background: #fff8fc;
    border: 2px solid var(--pink-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-decoration: none;
}
.info-card:hover { color: var(--ink); border-color: #ff9bd8; transform: translateY(-2px); }
.info-card h2 { margin-bottom: .25rem; }
.info-card p { margin: 0; color: var(--muted); }

.team-list { display: grid; gap: .8rem; padding: 0; list-style: none; }
.team-list li { padding: 1rem; background: var(--sky); border-radius: var(--radius-small); }
.team-list strong, .team-list span { display: block; }
.team-list span { color: var(--muted); }
.two-columns, .contact-grid { display: grid; gap: 1.5rem; align-items: start; }
.panel { padding: 1.25rem; background: #f3f9fe; border-radius: var(--radius); }
.hours-table { width: 100%; max-width: 440px; margin-bottom: 1.5rem; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: .65rem .4rem; border-bottom: 1px solid var(--line); }
.hours-table th { text-align: left; }
.hours-table td { color: var(--pink-dark); font-variant-numeric: tabular-nums; font-weight: 800; text-align: right; }
.review-note, .privacy-note {
    padding: .85rem 1rem;
    color: #4e3b00;
    background: #fff4c9;
    border-left: 4px solid #d7a900;
    border-radius: .45rem;
}
.phone-link { font-size: 1.25rem; font-weight: 800; }
.map-card { margin: 0; padding: .65rem; background: var(--pink-soft); border-radius: var(--radius); }
.map-card img { width: 100%; border-radius: calc(var(--radius) - .3rem); }
.faq-list { display: grid; gap: .65rem; }
.faq-list details { overflow: hidden; background: #fff; border: 2px solid var(--pink-soft); border-radius: var(--radius-small); }
.faq-list summary { padding: .9rem 1rem; color: var(--pink-dark); font-weight: 800; cursor: pointer; }
.faq-list details[open] summary { background: var(--pink-soft); }
.faq-list details p { padding: 0 1rem 1rem; margin: .9rem 0 0; }
.external-links { display: grid; gap: .7rem; padding: 0; list-style: none; }
.external-links a { display: block; padding: 1rem; background: #fff; border: 2px solid var(--pink-soft); border-radius: var(--radius-small); font-weight: 800; text-decoration: none; }

.form-page { max-width: 680px; }
.contact-form { position: relative; display: grid; gap: 1rem; margin-top: 1.5rem; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 800; }
.field input, .field textarea {
    width: 100%;
    padding: .75rem .85rem;
    color: var(--ink);
    background: #fff;
    border: 2px solid #d9cad3;
    border-radius: .7rem;
}
.field input:focus, .field textarea:focus { border-color: var(--blue-text); outline: 3px solid #bfe8ff; outline-offset: 1px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.required-note { color: var(--muted); font-size: .92rem; }
.alert { padding: 1rem; border-radius: var(--radius-small); }
.alert-success { color: var(--success); background: var(--success-bg); }
.alert-error { color: var(--error); background: var(--error-bg); }
.alert ul { margin-bottom: 0; }
.error-page { text-align: center; }

.site-footer { padding-block: 1.5rem; color: var(--deep-blue); background: #dceefe; border-top: 2px solid #b9daf6; }
.footer-row { display: grid; gap: 1rem; }
.site-footer a { color: #245f8c; }
@media (max-width: 979px) {
    .js-enabled .nav-toggle { display: flex; }
    .js-enabled .site-navigation:not(.is-open) { display: none; }
    .site-navigation { border-top: 1px solid var(--pink-soft); }
}

@media (min-width: 700px) {
    .card-grid, .two-columns, .contact-grid { grid-template-columns: 1fr 1fr; }
    .footer-row { grid-template-columns: 1fr auto; align-items: start; }
    .footer-row > :last-child { text-align: right; }
}

@media (min-width: 980px) {
    body { font-size: 1.1rem; }
    .site-header { position: sticky; top: 0; }
    .header-row {
        min-height: 102px;
        grid-template-columns: 76px auto minmax(0, 1fr) auto;
        grid-template-areas: "mark name nav actions";
        gap: 0 .75rem;
        padding-block: .25rem;
    }
    .brand-mark { width: 76px; align-self: end; }
    .brand-mark img { width: 72px; height: 96px; }
    .brand-name { width: 191px; }
    .site-navigation { background: transparent; }
    .site-navigation ul { flex-direction: row; flex-wrap: nowrap; align-items: center; justify-content: flex-end; padding: 0; }
    .site-navigation a { padding: .48rem .55rem; font-size: .94rem; white-space: nowrap; }
    .hero { grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); align-items: stretch; }
    .hero-copy { padding-bottom: clamp(1.5rem, 4vw, 3rem); }
    .hero-art { display: flex; align-items: center; }
    .hero-art img { height: min(430px, 34vw); margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

@media print {
    .preview-banner, .site-navigation, .header-actions, .button-row { display: none !important; }
    .site-header { position: static; }
    body { padding: 0; color: #000; font-size: 11pt; }
    a { color: #000; }
}
