/* ==================================================================
   ELLYN Dry Cleaners LLC - main stylesheet
   Design system: deep navy (trust) / teal (cleanliness) / gold accent
   System font stack, no external requests, WCAG 2.2 AA contrast.
   ================================================================== */

:root {
    --navy: #12263f;
    --navy-dark: #0c1a2c;
    --navy-soft: #1d3a5f;
    --teal: #0f7a6c;        /* AA on white for text/links */
    --teal-bright: #18a08b; /* graphics only */
    --teal-tint: #e7f4f1;
    --gold: #c9a24b;
    --gold-dark: #8a6d2a;   /* AA on white */
    --bg: #ffffff;
    --bg-soft: #f5f7f9;
    --text: #1d2b36;
    --text-muted: #4c5d6b;
    --border: #d9e1e8;
    --error: #b3261e;
    --error-bg: #fdeceb;
    --success: #14603f;
    --success-bg: #e8f5ee;
    --warning-bg: #fdf6e3;
    --warning-border: #e0c877;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow: 0 1px 3px rgba(18, 38, 63, 0.08), 0 4px 16px rgba(18, 38, 63, 0.07);
    --shadow-hover: 0 4px 10px rgba(18, 38, 63, 0.10), 0 10px 28px rgba(18, 38, 63, 0.12);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --container: 1120px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4 {
    line-height: 1.25;
    color: var(--navy);
    margin: 0 0 0.6em;
    font-weight: 700;
    text-wrap: balance;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h3 { font-size: 1.15rem; }

p, ul, ol, table { margin: 0 0 1.1em; }

a { color: var(--teal); text-underline-offset: 2px; }
a:hover { color: var(--navy); }

:focus-visible {
    outline: 3px solid var(--teal-bright);
    outline-offset: 2px;
    border-radius: 3px;
}

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}
.container.narrow { max-width: 780px; }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0; border: 0;
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    top: -60px; left: 12px;
    z-index: 200;
    background: var(--navy);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 8px 8px;
    transition: top 0.15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 11px 22px;
    min-height: 44px;
    border: 2px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-lg { padding: 14px 30px; font-size: 1.05rem; }
.btn-small { padding: 6px 14px; min-height: 34px; font-size: 0.9rem; }

.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--navy); color: #fff; }

.btn-secondary { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: #dab55e; color: var(--navy-dark); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; }

.btn-danger { background: var(--error); color: #fff; }
.btn-danger:hover { background: #8e1d17; color: #fff; }

/* ---------- Header & navigation ---------- */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 12px;
    flex-wrap: wrap;
}
.brand img { display: block; width: clamp(200px, 30vw, 290px); height: auto; }

.nav-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    min-height: 44px;
    font: inherit;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
}
.nav-toggle-bar {
    display: inline-block;
    width: 20px; height: 2px;
    background: var(--navy);
    position: relative;
}
.nav-toggle-bar::before, .nav-toggle-bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px; height: 2px;
    background: var(--navy);
}
.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

.primary-nav { display: flex; align-items: center; gap: 20px; }
.primary-nav ul {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.primary-nav a:not(.btn) {
    display: inline-block;
    padding: 10px 12px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
}
.primary-nav a:not(.btn):hover { background: var(--teal-tint); color: var(--teal); }
.primary-nav a[aria-current="page"] { color: var(--teal); box-shadow: inset 0 -3px 0 var(--teal); border-radius: 8px 8px 0 0; }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-soft) 100%);
    color: #eef3f8;
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    align-items: center;
    gap: 32px;
    padding-block: clamp(48px, 8vw, 96px);
}
.hero h1 { color: #fff; margin-bottom: 0.4em; }
.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1em;
}
.hero-lede { font-size: 1.15rem; max-width: 56ch; color: #d5dfe9; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-art { text-align: center; }
.hero-art img {
    width: clamp(140px, 18vw, 220px);
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
    animation: float-in 0.8s ease both;
}
@keyframes float-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(48px, 7vw, 84px); }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 700px; margin-bottom: 36px; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; }
.section-more { margin-top: 32px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-soft));
    color: #dfe8f1;
    padding-block: clamp(36px, 6vw, 64px);
}
.page-hero h1 { color: #fff; margin-bottom: 0.2em; }
.page-hero-intro { font-size: 1.15rem; max-width: 60ch; margin: 0; }

.breadcrumbs { background: var(--navy-dark); padding-block: 10px; font-size: 0.9rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; color: #6b7f94; }
.breadcrumbs a { color: #aec2d4; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs [aria-current="page"] { color: #e8eef4; }

/* ---------- Cards & grids ---------- */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}
.service-card { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-icon { color: var(--teal); margin-bottom: 14px; }
.service-card h3 { margin-bottom: 0.4em; }
.service-card p { margin: 0; color: var(--text-muted); }

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}
.benefit h3 { padding-left: 26px; position: relative; }
.benefit h3::before {
    content: "";
    position: absolute;
    left: 0; top: 6px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--gold);
}
.benefit p { color: var(--text-muted); margin: 0; }

/* ---------- Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px;
    list-style: none;
    margin: 0 0 1em;
    padding: 0;
    counter-reset: step;
}
.steps-vertical { grid-template-columns: 1fr; max-width: 640px; }
.step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}
.step-num {
    display: inline-grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.step h3 { margin-bottom: 0.3em; }
.step p { margin: 0; color: var(--text-muted); }

/* ---------- Service list (services page) ---------- */
.service-list { display: grid; gap: 22px; margin-bottom: 40px; }
.service-row { display: flex; gap: 24px; align-items: flex-start; }
.service-row-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 72px; height: 72px;
    border-radius: var(--radius);
    background: var(--teal-tint);
    color: var(--teal);
}
.service-row-body h2 { font-size: 1.35rem; margin-bottom: 0.35em; }
.service-row-body p:last-child { margin-bottom: 0; }

/* ---------- Lists ---------- */
.check-list { list-style: none; padding: 0; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 10px; }
.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}
.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px 20px;
    list-style: none;
    padding: 0;
}
.area-list li { padding-left: 24px; position: relative; }
.area-list li::before {
    content: "";
    position: absolute;
    left: 4px; top: 0.55em;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
}
.sitemap-list { columns: 2; column-gap: 40px; }
@media (max-width: 600px) { .sitemap-list { columns: 1; } }

/* ---------- FAQ ---------- */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}
.faq-item summary {
    padding: 18px 22px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style-position: outside;
}
.faq-item summary:hover { color: var(--teal); }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-answer { padding: 16px 22px 6px; color: var(--text-muted); }

/* ---------- Tables (pricing, hours) ---------- */
.price-group { margin-bottom: 40px; }
.price-table, .hours-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.price-table th, .price-table td, .hours-table th, .hours-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.price-table thead th { background: var(--navy); color: #fff; }
.price-table tbody tr:last-child > *, .hours-table tbody tr:last-child > * { border-bottom: 0; }
.price-table tbody th { font-weight: 600; color: var(--text); }
.price-note { display: block; font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.price-unit { color: var(--text-muted); font-size: 0.9rem; margin-left: 4px; }
.hours-table th { width: 40%; }
.hours-unconfirmed {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    border-radius: var(--radius);
    padding: 12px 16px;
}
.hours-footnote { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; }

/* ---------- Notice boxes ---------- */
.notice-box {
    background: var(--teal-tint);
    border: 1px solid #bfe2da;
    border-radius: var(--radius);
    padding: 22px 26px;
    margin-block: 36px;
}
.notice-box h2 { font-size: 1.15rem; }
.notice-box p:last-child { margin-bottom: 0; }
.notice-box-first { margin-top: 0; }

/* ---------- Split layout ---------- */
.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}
.address-block { font-style: normal; margin-bottom: 1em; }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #e5ecf3;
    padding-block: 48px;
}
.cta-band h2 { color: #fff; margin-bottom: 0.25em; }
.cta-band p { margin: 0; }
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form { max-width: 720px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field-optional { font-weight: 400; color: var(--text-muted); font-size: 0.9rem; }
.required-mark { color: var(--error); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="date"], .field input[type="time"], .field input[type="number"],
.field input[type="password"], .field select, .field textarea {
    width: 100%;
    padding: 12px 14px;
    font: inherit;
    color: var(--text);
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 8px;
    min-height: 48px;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--teal);
    outline: 3px solid rgba(24, 160, 139, 0.25);
    outline-offset: 0;
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error); }
.field-error { color: var(--error); font-weight: 600; font-size: 0.92rem; margin: 6px 0 0; }
.field-help { color: var(--text-muted); font-size: 0.92rem; margin: 6px 0 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.field-checkbox { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; align-items: start; }
.field-checkbox input[type="checkbox"] { width: 22px; height: 22px; margin-top: 4px; accent-color: var(--teal); }
.field-checkbox label { font-weight: 400; margin: 0; color: var(--text); }
.field-checkbox .field-error, .field-checkbox .field-help { grid-column: 2; }

.consent-fieldset { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin: 0 0 24px; }
.form-footnote { color: var(--text-muted); font-size: 0.92rem; margin-top: 12px; }

/* Honeypot - hidden from humans, present for bots */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}

.form-errors {
    background: var(--error-bg);
    border: 2px solid var(--error);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 28px;
}
.form-errors h2 { color: var(--error); font-size: 1.05rem; margin-bottom: 0.4em; }
.form-errors ul { margin: 0; padding-left: 20px; }

/* ---------- Alerts ---------- */
.alert { border-radius: var(--radius); padding: 14px 20px; margin-block: 16px; border: 1px solid transparent; }
.alert-success { background: var(--success-bg); color: var(--success); border-color: #9fd4b7; font-weight: 600; }
.alert-error { background: var(--error-bg); color: var(--error); border-color: #eba9a4; font-weight: 600; }
.alert-warning { background: var(--warning-bg); color: #6b5411; border-color: var(--warning-border); }
.alert-info { background: var(--teal-tint); color: var(--teal); border-color: #bfe2da; }

/* ---------- Testimonials ---------- */
.testimonial { margin: 0; }
.testimonial p { font-style: italic; }
.testimonial footer { color: var(--text-muted); font-weight: 600; }

/* ---------- Legal pages ---------- */
.legal-page h2 { margin-top: 1.6em; }
.legal-notice {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    border-radius: var(--radius);
    padding: 16px 20px;
}
.legal-updated { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #c3d0dc; margin-top: 0; }
.site-footer a { color: #9fd8cc; }
.site-footer a:hover { color: #fff; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-block: 56px 32px;
}
.footer-brand img { margin-bottom: 16px; }
.footer-contact { line-height: 1.8; }
.footer-heading {
    color: #fff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col .btn { margin-top: 14px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-block: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}
.footer-bottom p { margin: 0; }
.footer-tagline { color: var(--gold); font-weight: 600; letter-spacing: 1px; }

/* ---------- Cookie notice ---------- */
.cookie-notice {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 300;
    padding: 16px;
}
.cookie-notice-inner {
    max-width: 720px;
    margin-inline: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    padding: 20px 24px;
}
.cookie-notice p { margin-bottom: 14px; font-size: 0.98rem; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Error pages ---------- */
.error-section { text-align: center; padding-block: clamp(64px, 12vw, 140px); }
.error-code {
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 800;
    color: var(--teal-tint);
    -webkit-text-stroke: 2px var(--teal);
    line-height: 1;
    margin-bottom: 0.1em;
}
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.error-help { margin-top: 24px; color: var(--text-muted); }

/* ---------- Responsive: navigation ----------
   The menu collapses only when JS is available (body.js is set by
   main.js). Without JavaScript the full menu stays visible, so the
   site remains completely navigable. */
@media (max-width: 920px) {
    body.js .nav-toggle { display: inline-flex; }
    .primary-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding-block: 12px 18px;
    }
    body.js .primary-nav { display: none; }
    body.js .primary-nav.is-open { display: flex; }
    .primary-nav ul { flex-direction: column; gap: 0; }
    .primary-nav a:not(.btn) { display: block; padding: 14px 12px; border-radius: 8px; }
    .primary-nav a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--teal); border-radius: 8px; }
    .nav-actions { flex-direction: column; align-items: stretch; }
    .nav-actions .btn { text-align: center; }
    .hero-inner { grid-template-columns: 1fr; text-align: left; }
    .hero-art { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    body { font-size: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .service-row { flex-direction: column; }
    .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

/* ==================================================================
   2026 public-site art direction
   A content-led editorial treatment for the homepage and navigation.
   Interior-page and form styles above remain the shared foundation.
   ================================================================== */

:root {
    --navy: #10283f;
    --navy-dark: #081a2b;
    --navy-soft: #1a4058;
    --teal: #087a6b;
    --teal-bright: #15a28d;
    --teal-tint: #e8f5f2;
    --gold: #d2a84b;
    --bg-soft: #f3f5f5;
    --text: #1a2933;
    --text-muted: #52616b;
    --radius: 10px;
    --radius-lg: 16px;
    --container: 1200px;
}

body {
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4 {
    letter-spacing: -0.025em;
}

h2 { font-size: clamp(2rem, 4vw, 3.45rem); }

.section-kicker {
    margin: 0 0 13px;
    color: var(--teal);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-kicker-light { color: #71d7c6; }

.lead-copy {
    color: #344650;
    font-size: clamp(1.1rem, 1.8vw, 1.32rem);
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 750;
    text-decoration: none;
    border-bottom: 1px solid rgba(16, 40, 63, 0.3);
}

.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(5px); }

/* Header */
.site-header {
    background: #fff;
    border: 0;
    box-shadow: 0 1px 0 rgba(16, 40, 63, 0.12);
}

.utility-bar {
    color: #d9e4eb;
    background: var(--navy-dark);
    font-size: 0.82rem;
}

.utility-inner {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.utility-tagline {
    margin: 0;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.utility-details {
    display: flex;
    align-items: center;
    gap: 16px;
}

.utility-bar a {
    color: #e5edf2;
    text-decoration: none;
}

.utility-bar a:hover { color: #fff; }

.utility-divider {
    width: 1px;
    height: 15px;
    background: rgba(255,255,255,0.25);
}

.utility-phone { font-weight: 750; }

.nav-shell { position: relative; background: #fff; }

.header-inner {
    min-height: 78px;
    flex-wrap: nowrap;
    gap: 24px;
    padding-block: 10px;
}

.brand { flex: 0 0 auto; }
.brand img { width: clamp(196px, 18vw, 236px); }

.primary-nav {
    flex: 1;
    justify-content: flex-end;
    gap: clamp(10px, 1.5vw, 22px);
}

.primary-nav ul {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
}

.primary-nav a:not(.btn) {
    padding: 11px clamp(7px, 0.85vw, 12px);
    font-size: 0.91rem;
    font-weight: 680;
    white-space: nowrap;
}

.primary-nav a[aria-current="page"] {
    box-shadow: inset 0 -2px 0 var(--teal);
}

.nav-cta {
    flex: 0 0 auto;
    padding-inline: 18px;
    font-size: 0.91rem;
    white-space: nowrap;
}

.nav-toggle-icon {
    display: grid;
    width: 22px;
    gap: 4px;
}

.nav-toggle-icon span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:first-child { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:last-child { transform: translateY(-6px) rotate(-45deg); }

/* Home hero */
.hero-home {
    position: relative;
    display: grid;
    min-height: clamp(620px, calc(100svh - 114px), 790px);
    isolation: isolate;
    background: var(--navy-dark);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    z-index: -2;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(4, 18, 30, 0.97) 0%, rgba(7, 27, 43, 0.89) 37%, rgba(7, 27, 43, 0.42) 67%, rgba(7, 27, 43, 0.16) 100%),
        linear-gradient(0deg, rgba(5, 19, 31, 0.34), transparent 55%);
}

.hero-home .hero-inner {
    display: flex;
    width: 100%;
    align-items: center;
    padding-block: clamp(70px, 10vw, 130px);
}

.hero-home .hero-copy { max-width: 720px; }

.hero-home h1 {
    max-width: 11.5ch;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(3rem, 6.2vw, 5.35rem);
    font-weight: 730;
    letter-spacing: -0.052em;
    line-height: 0.98;
}

.hero-home .hero-eyebrow {
    margin-bottom: 22px;
    color: #74d5c5;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}

.hero-home .hero-lede {
    max-width: 58ch;
    color: #e0e8ed;
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    line-height: 1.65;
}

.hero-home .hero-actions { margin-top: 32px; }

.hero-home .btn-primary {
    color: #fff;
    background: var(--teal-bright);
}

.hero-home .btn-primary:hover { background: #0b806f; }

.hero-contact {
    margin: 22px 0 0;
    color: #b8c7d1;
    font-size: 0.96rem;
}

.hero-contact a { color: #fff; font-weight: 750; }

/* Homepage editorial sections */
.home-intro { padding-block: clamp(76px, 10vw, 136px); }

.editorial-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr);
    gap: clamp(52px, 10vw, 140px);
    align-items: start;
}

.editorial-split h2 {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(2.35rem, 4.6vw, 4rem);
    line-height: 1.08;
}

.intro-copy { padding-top: 28px; }
.intro-copy p:last-of-type { color: var(--text-muted); }

.services-home { padding-block: clamp(76px, 9vw, 120px); background: var(--bg-soft); }

.section-head-wide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
    max-width: none;
    gap: 60px;
    align-items: end;
    margin-bottom: 54px;
}

.section-head-wide h2 { margin-bottom: 0; }
.section-head-wide > p { margin-bottom: 5px; }

.service-feature-list { border-top: 1px solid #ccd5d8; }

.service-feature {
    display: grid;
    grid-template-columns: 56px 72px minmax(0, 1fr) 50px;
    gap: 24px;
    align-items: center;
    min-height: 150px;
    padding-block: 26px;
    border-bottom: 1px solid #ccd5d8;
    transition: padding-inline 180ms ease, background-color 180ms ease;
}

.service-feature:hover {
    padding-inline: 18px;
    background: #fff;
}

.service-index {
    color: #7b8a92;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.service-feature-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    color: var(--teal);
    border: 1px solid #c8dbd6;
    border-radius: 50%;
    background: var(--teal-tint);
}

.service-feature-icon .service-icon { margin: 0; }
.service-feature-copy h3 { margin-bottom: 7px; font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.service-feature-copy p { max-width: 70ch; margin: 0; color: var(--text-muted); }
.service-feature-link { color: var(--navy); font-size: 1.8rem; text-align: center; text-decoration: none; }

.care-guide {
    color: #cbd8e0;
    background: var(--navy-dark);
    padding-block: clamp(78px, 10vw, 130px);
}

.care-guide h2 { color: #fff; }

.care-guide-intro {
    display: grid;
    grid-template-columns: 0.75fr 1.3fr;
    gap: 20px 70px;
    margin-bottom: 70px;
}

.care-guide-intro .section-kicker { grid-column: 1 / -1; }
.care-guide-intro h2 { max-width: 12ch; margin: 0; }
.care-guide-intro > p:last-child { max-width: 52ch; margin-top: 10px; font-size: 1.1rem; }

.care-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.18);
}

.care-points article { padding: 34px 28px 0 0; }
.care-points article + article { padding-left: 28px; border-left: 1px solid rgba(255,255,255,0.18); }
.care-points span { display: block; margin-bottom: 42px; color: var(--gold); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.1em; }
.care-points h3 { color: #fff; font-size: 1.2rem; }
.care-points p { margin: 0; color: #afc0ca; font-size: 0.96rem; }

.pickup-story { padding-block: clamp(80px, 11vw, 145px); }

.pickup-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: clamp(60px, 10vw, 140px);
    align-items: start;
}

.pickup-copy { position: sticky; top: 150px; }
.pickup-copy h2 { max-width: 12ch; }
.pickup-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 30px; }

.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.process-list li { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.process-number { display: grid; width: 44px; height: 44px; place-items: center; color: var(--teal); font-weight: 800; border: 1px solid #a8cec6; border-radius: 50%; }
.process-list h3 { margin-bottom: 6px; font-size: 1.2rem; }
.process-list p { margin: 0; color: var(--text-muted); }

.garment-notes { background: #eef2f1; padding-block: clamp(76px, 10vw, 126px); }
.garment-notes .section-head { max-width: 760px; margin-bottom: 56px; }
.knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #c6d1d0; }
.knowledge-grid article { min-height: 215px; padding: 32px 30px 24px 0; border-bottom: 1px solid #c6d1d0; }
.knowledge-grid article:not(:nth-child(3n + 1)) { padding-left: 30px; border-left: 1px solid #c6d1d0; }
.knowledge-grid h3 { font-size: 1.22rem; }
.knowledge-grid p { margin: 0; color: var(--text-muted); }
.policy-link { margin-top: 28px; color: var(--text-muted); }

.area-banner { padding-block: clamp(64px, 8vw, 96px); color: #dce7eb; background: var(--teal); }
.area-banner-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 70px; align-items: center; }
.area-banner h2 { margin-bottom: 15px; color: #fff; }
.area-banner p { max-width: 58ch; margin-bottom: 0; }
.area-list-light { grid-template-columns: repeat(2, minmax(140px, 1fr)); margin: 0; }
.area-list-light li { color: #fff; font-weight: 680; }
.area-list-light li::before { background: var(--gold); }

.faq-home { padding-block: clamp(80px, 10vw, 128px); }
.faq-layout { display: grid; grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr); gap: clamp(60px, 10vw, 140px); }
.faq-intro { position: sticky; top: 150px; align-self: start; }
.faq-intro h2 { font-size: clamp(2.2rem, 4vw, 3.3rem); }
.faq-intro > p { color: var(--text-muted); }
.faq-list { border-top: 1px solid var(--border); }
.faq-home .faq-item { margin: 0; border: 0; border-bottom: 1px solid var(--border); border-radius: 0; box-shadow: none; }
.faq-home .faq-item summary { position: relative; padding: 25px 42px 25px 0; font-size: 1.05rem; list-style: none; }
.faq-home .faq-item summary::-webkit-details-marker { display: none; }
.faq-home .faq-item summary::after { content: "+"; position: absolute; top: 20px; right: 2px; color: var(--teal); font-size: 1.6rem; font-weight: 400; }
.faq-home .faq-item[open] summary::after { content: "−"; }
.faq-home .faq-item[open] summary { border-bottom: 0; }
.faq-home .faq-answer { padding: 0 45px 20px 0; }

.visit-section { background: var(--bg-soft); padding-block: clamp(75px, 9vw, 120px); }
.visit-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; background: #fff; box-shadow: 0 22px 65px rgba(16, 40, 63, 0.09); }
.visit-panel, .hours-panel { padding: clamp(36px, 6vw, 72px); }
.visit-panel { color: #d7e2e8; background: var(--navy); }
.visit-panel h2, .visit-panel strong { color: #fff; }
.visit-panel .section-kicker { color: #70d4c4; }
.visit-panel .address-block { font-size: 1.08rem; }
.visit-phone a { color: #fff; font-size: clamp(1.35rem, 2.5vw, 1.8rem); font-weight: 750; text-decoration: none; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.visit-panel .btn-secondary { border-color: rgba(255,255,255,0.7); color: #fff; background: transparent; }
.visit-panel .btn-secondary:hover { color: var(--navy); background: #fff; }
.hours-panel .hours-table { box-shadow: none; }

/* Reveal only after JavaScript has successfully registered the observer. */
body.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    body.js .nav-toggle { display: inline-flex; }

    .header-inner { min-height: 72px; }
    .brand img { width: 214px; }

    .primary-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 10px 0 20px;
    }

    body.js .primary-nav { display: none; }
    body.js .primary-nav.is-open { display: flex; }

    .primary-nav ul { flex-direction: column; align-items: stretch; }
    .primary-nav a:not(.btn) { display: block; padding: 13px 12px; font-size: 1rem; }
    .primary-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--teal); }
    .nav-cta { margin-inline: 12px; }

    .care-points { grid-template-columns: repeat(2, 1fr); }
    .care-points article { padding-bottom: 32px; }
    .care-points article:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,0.18); }
    .care-points article:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.18); }
}

@media (max-width: 760px) {
    .utility-tagline { display: none; }
    .utility-inner { justify-content: flex-end; }
    .utility-details { width: 100%; justify-content: space-between; gap: 10px; }

    .hero-home { min-height: 650px; }
    .hero-media { object-position: 67% center; }
    .hero-overlay { background: linear-gradient(90deg, rgba(4,18,30,0.96), rgba(4,18,30,0.72)), linear-gradient(0deg, rgba(4,18,30,0.62), transparent); }
    .hero-home .hero-inner { padding-block: 70px; }
    .hero-home h1 { max-width: 9.7ch; }

    .editorial-split,
    .section-head-wide,
    .care-guide-intro,
    .pickup-layout,
    .area-banner-inner,
    .faq-layout,
    .visit-layout {
        grid-template-columns: 1fr;
    }

    .editorial-split { gap: 20px; }
    .intro-copy { padding-top: 0; }
    .section-head-wide { gap: 12px; }
    .care-guide-intro { gap: 12px; margin-bottom: 44px; }
    .care-guide-intro .section-kicker { grid-column: auto; }
    .pickup-layout, .faq-layout { gap: 55px; }
    .pickup-copy, .faq-intro { position: static; }
    .knowledge-grid { grid-template-columns: 1fr 1fr; }
    .knowledge-grid article:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
    .knowledge-grid article:nth-child(even) { padding-left: 24px; border-left: 1px solid #c6d1d0; }
    .area-banner-inner { gap: 30px; }
}

@media (max-width: 540px) {
    .container { padding-inline: 18px; }
    .utility-location { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .utility-phone { font-size: 0.77rem; }
    .brand img { width: 184px; }
    .nav-toggle { padding: 7px 10px; }
    .nav-toggle-label { font-size: 0.92rem; }

    .hero-home { min-height: 620px; }
    .hero-home h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
    .hero-home .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-home .btn { width: 100%; }

    .service-feature { grid-template-columns: 44px 1fr 34px; gap: 14px; min-height: 128px; }
    .service-feature-icon { display: none; }
    .service-feature-copy h3 { font-size: 1.3rem; }
    .service-feature-link { font-size: 1.45rem; }

    .care-points { grid-template-columns: 1fr; border-top: 0; }
    .care-points article,
    .care-points article + article,
    .care-points article:nth-child(3),
    .care-points article:nth-child(4) {
        padding: 28px 0;
        border-top: 1px solid rgba(255,255,255,0.18);
        border-left: 0;
    }
    .care-points span { margin-bottom: 18px; }

    .knowledge-grid { grid-template-columns: 1fr; }
    .knowledge-grid article,
    .knowledge-grid article:nth-child(even) {
        min-height: auto;
        padding: 26px 0;
        border-left: 0;
    }
    .area-list-light { grid-template-columns: 1fr; }
    .visit-panel, .hours-panel { padding: 34px 24px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .btn:hover, .service-card:hover { transform: none; }
    body.reveal-ready [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
    .site-header, .site-footer, .cta-band, .cookie-notice, .skip-link, .breadcrumbs { display: none; }
    body { font-size: 12pt; color: #000; }
    a::after { content: " (" attr(href) ")"; font-size: 0.85em; }
}
