/* ============================================================================
   MR. LAUNDRY — INNER PAGES (shared patterns)
   Depends on design-system.css + layout.css.
   ============================================================================ */

/* ---------------------------------------------------------------------------
   PAGE HERO (image background + overlay)
--------------------------------------------------------------------------- */
.page-hero {
    position: relative; overflow: hidden;
    display: grid; place-items: center; text-align: center;
    min-height: clamp(340px, 48vw, 520px);
    padding: clamp(3rem, 8vw, 6rem) var(--gutter);
}
.page-hero > img.page-hero__bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.page-hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(4,18,34,.62), rgba(4,18,34,.78)),
                radial-gradient(700px 360px at 75% 0, var(--glow), transparent 60%);
}
.page-hero__inner { max-width: 820px; }
.page-hero .eyebrow { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff; }
.page-hero h1 { color: #fff; font-size: var(--fs-3xl); }
.page-hero p { color: rgba(255,255,255,.9); font-size: var(--fs-md); max-width: 60ch; margin: var(--sp-4) auto 0; }
.page-hero .cta-row { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; margin-top: var(--sp-6); }

/* Simple (no-image) page header */
.page-head { text-align: center; padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter) 0; }
.page-head h1 { font-size: var(--fs-2xl); }
.page-head p { color: var(--ink-muted); max-width: 60ch; margin: var(--sp-3) auto 0; font-size: var(--fs-md); }

/* ---------------------------------------------------------------------------
   FEATURE CARDS (icon)
--------------------------------------------------------------------------- */
.feature { text-align: center; }
.feature .ico {
    width: 60px; height: 60px; margin: 0 auto var(--sp-4); border-radius: var(--r-md);
    background: var(--neon-soft); border: 1px solid var(--border-strong); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
}
.feature h3 { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.feature p { font-size: var(--fs-sm); }

/* Plain text service card */
.svc-text h3 { font-size: var(--fs-md); margin-bottom: var(--sp-2); color: var(--accent); }
.svc-text p { font-size: var(--fs-sm); }

/* Image service card (image-top) */
.svc-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.svc-card .media { aspect-ratio: 16 / 10; overflow: hidden; }
.svc-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.svc-card.card--hover:hover .media img { transform: scale(1.06); }
.svc-card .body { padding: clamp(1.2rem, 2.5vw, 1.6rem); }
.svc-card h3 { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.svc-card p { font-size: var(--fs-sm); }

/* MrLaundry+ level cards */
.tier { text-align: center; }
.tier h3 { font-size: var(--fs-lg); color: var(--accent); margin-bottom: var(--sp-2); }
.tier .badge { display: inline-block; font-weight: 700; font-size: var(--fs-sm); color: var(--ink); background: var(--neon-soft); border: 1px solid var(--border-strong); padding: .3rem .9rem; border-radius: var(--r-pill); margin-bottom: var(--sp-3); }
.tier p { font-size: var(--fs-sm); }
.reward-card h3 { font-size: var(--fs-md); margin-bottom: var(--sp-3); color: var(--accent); }
.reward-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.reward-card li { font-size: var(--fs-sm); color: var(--ink-muted); display: flex; gap: 8px; }
.reward-card li::before { content: "•"; color: var(--accent); }

/* ---------------------------------------------------------------------------
   GALLERY (responsive, replaces old carousel)
--------------------------------------------------------------------------- */
.gallery { display: grid; gap: var(--sp-3); grid-template-columns: repeat(2, 1fr); margin-top: var(--sp-7); }
.gallery figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .gallery { grid-template-columns: repeat(5, 1fr); } }

/* ---------------------------------------------------------------------------
   SHARED CTA BAND (also used on inner pages)
--------------------------------------------------------------------------- */
.cta-band {
    position: relative; overflow: hidden; text-align: center;
    border-radius: var(--r-xl); padding: clamp(2.5rem, 6vw, 4rem) var(--gutter);
    background: var(--surface); border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg);
}
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(700px 300px at 50% 0, var(--glow), transparent 65%); }
.cta-band h2 { font-size: var(--fs-2xl); }
.cta-band p { max-width: 52ch; margin: var(--sp-3) auto var(--sp-6); color: var(--ink-muted); }
.cta-band .cta-row { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------------
   FAQ (reuse home accordion look here too)
--------------------------------------------------------------------------- */
.faq-list { max-width: 820px; margin: var(--sp-7) auto 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-item > summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-base); color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; line-height: 1; transition: transform var(--t) var(--ease); }
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 1.3rem 1.2rem; color: var(--ink-muted); font-size: var(--fs-sm); }

/* ---------------------------------------------------------------------------
   LEGAL / PROSE ARTICLE
--------------------------------------------------------------------------- */
.prose { max-width: 820px; margin: var(--sp-7) auto var(--sp-9); padding-inline: var(--gutter); }
.prose h1 { font-size: var(--fs-2xl); margin-bottom: var(--sp-5); }
.prose h2 { font-size: var(--fs-lg); margin-top: var(--sp-7); margin-bottom: var(--sp-3); }
.prose h3 { font-size: var(--fs-md); margin-top: var(--sp-5); margin-bottom: var(--sp-2); }
.prose p, .prose li { color: var(--ink-muted); font-size: var(--fs-base); }
.prose ul, .prose ol { padding-left: 1.3rem; display: flex; flex-direction: column; gap: var(--sp-2); margin-block: var(--sp-3); }
.prose a { font-weight: 600; }
.prose hr { border: 0; border-top: 1px solid var(--border); margin-block: var(--sp-6); }
.prose .updated { color: var(--ink-soft); font-size: var(--fs-sm); margin-bottom: var(--sp-6); }

/* ---------------------------------------------------------------------------
   CONTACT
--------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; margin-top: var(--sp-7); }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }
.contact-card { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-line { display: flex; align-items: flex-start; gap: var(--sp-3); }
.contact-line .ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: var(--r-md); background: var(--neon-soft); border: 1px solid var(--border-strong); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-line h3 { font-size: var(--fs-base); margin-bottom: 2px; }
.contact-line a, .contact-line p { font-size: var(--fs-sm); color: var(--ink-muted); }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-4); }
.form-field label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.form-field input, .form-field textarea, .form-field select {
    font: inherit; font-size: var(--fs-base); padding: .8rem 1rem; border-radius: var(--r-md);
    border: 1px solid var(--border-strong); background: var(--surface); color: var(--ink); width: 100%;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; box-shadow: var(--ring); border-color: var(--accent); }
.form-field textarea { min-height: 130px; resize: vertical; }
