/* ═══════════════════════════════════════════════════════════════════
   Savannah Vallier — Home & Mobile Processing
   Warm, earthy dark theme for a custom processing service.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Theme Variables (Dark Default) ─────────────────────────── */
:root {
    /* Backgrounds */
    --color-bg:            #1a1a1a;
    --color-bg-alt:        #1f1f1f;
    --color-bg-card:       #222222;
    --color-bg-footer:     #141414;
    --color-bg-nav:        rgba(26, 26, 26, 0.95);
    --color-bg-nav-mobile: rgba(20, 20, 20, 0.98);
    --color-bg-packaging-option: rgba(255, 255, 255, 0.03);
    --color-bg-pricing-header:   rgba(192, 57, 43, 0.12);
    --color-badge-bg:      rgba(255, 255, 255, 0.06);

    /* Text */
    --color-text:             #e8ddd0;
    --color-text-heading:     #f5efe8;
    --color-text-muted:       #a09488;
    --color-text-dim:         #7a7066;
    --color-text-card:        #b8aa9a;
    --color-text-footer:      #555;
    --color-btn-primary-text: #fff;
    --color-step-number-text: #fff;

    /* Accent */
    --color-accent:        #c0392b;
    --color-accent-hover:  #e74c3c;
    --color-accent-bright: #ff6b5b;

    /* Borders */
    --color-border:        rgba(255, 255, 255, 0.06);
    --color-border-strong: rgba(255, 255, 255, 0.08);
    --color-border-pricing-row: rgba(255, 255, 255, 0.04);
    --color-border-image:  rgba(255, 255, 255, 0.12);

    /* Badge */
    --color-badge-border:  rgba(255, 255, 255, 0.1);

    /* Hero gradient */
    --color-hero-bg-start:  #1a1a1a;
    --color-hero-bg-end:    #141414;
    --color-hero-glow-accent: rgba(192, 57, 43, 0.12);
    --color-hero-glow-green:  rgba(39, 174, 96, 0.06);

    /* Scrollbar */
    --color-scrollbar-track: #1a1a1a;
    --color-scrollbar-thumb: #333;
    --color-scrollbar-thumb-hover: #444;
}

/* ─── Light Theme ────────────────────────────────────────────── */
@media (prefers-color-scheme: light) {
    :root {
        --color-bg:            #faf5ee;
        --color-bg-alt:        #f5efe8;
        --color-bg-card:       #ffffff;
        --color-bg-footer:     #f5efe8;
        --color-bg-nav:        rgba(250, 245, 238, 0.95);
        --color-bg-nav-mobile: rgba(245, 239, 232, 0.98);
        --color-bg-packaging-option: rgba(0, 0, 0, 0.03);
        --color-bg-pricing-header:   rgba(192, 57, 43, 0.10);
        --color-badge-bg:      rgba(0, 0, 0, 0.04);

        --color-text:             #333333;
        --color-text-heading:     #1a1a1a;
        --color-text-muted:       #7a7066;
        --color-text-dim:         #7a7066;
        --color-text-card:        #555555;
        --color-text-footer:      #7a7066;
        --color-btn-primary-text: #fff;
        --color-step-number-text: #fff;

        --color-accent:        #c0392b;
        --color-accent-hover:  #e74c3c;
        --color-accent-bright: #ff6b5b;

        --color-border:        rgba(0, 0, 0, 0.08);
        --color-border-strong: rgba(0, 0, 0, 0.10);
        --color-border-pricing-row: rgba(0, 0, 0, 0.05);
        --color-border-image:  rgba(0, 0, 0, 0.12);
        --color-badge-border:  rgba(0, 0, 0, 0.08);

        --color-hero-bg-start:  #faf5ee;
        --color-hero-bg-end:    #f5efe8;
        --color-hero-glow-accent: rgba(192, 57, 43, 0.08);
        --color-hero-glow-green:  rgba(39, 174, 96, 0.04);

        --color-scrollbar-track: #f5efe8;
        --color-scrollbar-thumb: #c4b8a8;
        --color-scrollbar-thumb-hover: #b0a090;
    }
}

/* ─── Reset ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ─── Container ───────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── Typography ───────────────────────────────────────────────── */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-btn-primary-text);
    box-shadow: 0 4px 14px rgba(192, 57, 43, 0.35);
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.5);
    transform: translateY(-2px);
}

/* ─── Section Layout ──────────────────────────────────────────── */
.section {
    padding: 5rem 0;
}

.section--dark {
    background: var(--color-bg-alt);
}

.section__title {
    font-size: 2rem;
    color: var(--color-text-heading);
    margin-bottom: 0.5rem;
    text-align: center;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 3rem;
}

/* ─── Navigation ───────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg-nav);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 0;
    transition: background 0.3s ease;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-heading);
    letter-spacing: 0.02em;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav__links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
    padding: 0.4rem 0;
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--color-text-heading);
}

.nav__links a.active {
    border-bottom: 2px solid #c0392b;
}

.nav__cta {
    background: var(--color-accent);
    color: #fff !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem !important;
}

.nav__cta:hover {
    background: var(--color-accent-hover);
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-bg-nav-mobile);
        backdrop-filter: blur(10px);
        padding: 1rem 1.5rem 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--color-border);
    }

    .nav__links.nav__links--open {
        display: flex;
    }
}

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, var(--color-hero-glow-accent) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, var(--color-hero-glow-green) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-hero-bg-start) 0%, var(--color-hero-bg-end) 100%);
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero__image-wrap {
    flex-shrink: 0;
    order: 2;
}

.hero__image {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-border-image);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    opacity: 0.9;
    display: block;
}

.hero__content {
    flex: 1;
    min-width: 0;
    max-width: 600px;
}

.hero__badge {
    display: inline-block;
    background: var(--color-badge-bg);
    border: 1px solid var(--color-badge-border);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: 3.25rem;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
}

.hero__sub {
    font-weight: 400;
    color: var(--color-text-muted);
    font-size: 2rem;
}

.hero__tagline {
    font-size: 1.2rem;
    color: var(--color-text-card);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero__hint {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.seasonal-note {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.35rem 1rem;
    background: rgba(192, 57, 43, 0.12);
    border: 1px solid rgba(192, 57, 43, 0.25);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--color-accent-bright);
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .hero__inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .hero__image-wrap {
        order: 0;
    }
    .hero__image {
        width: 200px;
        height: 200px;
    }
    .hero__content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.25rem;
    }
    .hero__sub {
        font-size: 1.35rem;
    }
    .hero__tagline {
        font-size: 1rem;
    }
}

/* ─── Services ─────────────────────────────────────────────────── */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.service-card__icon {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.service-card__title {
    font-size: 1.25rem;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
}

.service-card__location {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card__list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--color-text-card);
    font-size: 0.95rem;
}

.service-card__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* ─── Animals ─────────────────────────────────────────────────── */
.animals__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.animal-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.75rem;
}

.animal-card__header {
    margin-bottom: 1rem;
}

.animal-card__icon {
    color: #c0392b;
    margin-bottom: 0.75rem;
}

.animal-card__header h3 {
    font-size: 1.2rem;
    color: var(--color-text-heading);
    position: relative;
    display: inline-block;
}

.animal-card__header h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    margin-top: 0.4rem;
}

.animal-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.animal-card__list li {
    color: var(--color-text-card);
    font-size: 0.95rem;
    padding-left: 1rem;
    position: relative;
}

.animal-card__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.animal-card__note {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    font-style: italic;
}

/* Packaging */
.animals__packaging {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
}

.animals__packaging h3 {
    font-size: 1.2rem;
    color: var(--color-text-heading);
    margin-bottom: 0.5rem;
}

.animals__packaging-intro {
    font-size: 0.88rem;
    color: #7a7066;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.5;
}

/* Packaging groups — use-case grouping */
.animals__packaging-groups {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.packaging-group {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    border-left: 3px solid #c0392b;
}

.packaging-group__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.packaging-group__icon {
    color: #c0392b;
    flex-shrink: 0;
}

.packaging-group__use {
    font-weight: 700;
    color: #f5efe8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.packaging-group__options {
    display: flex;
    flex-direction: column;
}

.packaging-group .packaging-option {
    padding: 0;
    background: none;
    border-radius: 0;
}

.packaging-option__label {
    display: block;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.packaging-option__best,
.packaging-option__freezer {
    display: block;
    font-size: 0.82rem;
    line-height: 1.6;
}

.packaging-option__best {
    color: #b8aa9a;
}

.packaging-option__freezer {
    color: #c0392b;
    font-weight: 500;
}

.packaging-option__desc {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.82rem;
    color: var(--color-text-dim);
}

.animals__packaging-note {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: #7a7066;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
}

/* ─── Policies ────────────────────────────────────────────────── */
.policies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.policy-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.75rem;
}

.policy-card__title {
    font-size: 1.1rem;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.policy-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.policy-card__list li {
    color: var(--color-text-card);
    font-size: 0.95rem;
    padding-left: 1.25rem;
    position: relative;
}

.policy-card__list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* ─── Prep / Before Your Appointment ──────────────────────────── */
.prep__accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 780px;
    margin: 0 auto 2rem;
}

.prep-detail {
    background: #222222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.prep-detail[open] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.prep-detail__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.15s ease;
}

.prep-detail__summary::-webkit-details-marker {
    display: none;
}

.prep-detail__summary:hover {
    background: rgba(255, 255, 255, 0.03);
}

.prep-detail__summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 300;
    color: #c0392b;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    line-height: 1;
}

.prep-detail[open] .prep-detail__summary::after {
    transform: rotate(45deg);
}

.prep-detail__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f5efe8;
}

.prep-detail__subtitle {
    font-size: 0.85rem;
    color: #7a7066;
    font-weight: 400;
}

.prep-detail__body {
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.prep-detail__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1rem;
}

.prep-detail__list li {
    color: #b8aa9a;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.prep-detail__list li::before {
    content: "\u2713";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 0.85rem;
}

.prep-detail__list a {
    color: #e74c3c;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prep-detail__list a:hover {
    color: #ff6b5b;
}

.prep-detail--all {
    border-color: rgba(192, 57, 43, 0.2);
}

.prep-detail--all .prep-detail__summary::after {
    color: #27ae60;
}

.prep__footer {
    text-align: center;
    font-size: 0.95rem;
    color: #7a7066;
}

.prep__footer a {
    color: #e74c3c;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prep__footer a:hover {
    color: #ff6b5b;
}

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: #222222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq__item[open] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq__question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f5efe8;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.2s ease;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::before {
    content: "+";
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #c0392b;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.25s ease, background 0.2s ease;
}

.faq__item[open] .faq__question::before {
    content: "\u2212";
    background: #e74c3c;
    transform: rotate(180deg);
}

.faq__question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq__answer {
    padding: 0 1.5rem 1.25rem;
    color: #b8aa9a;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq__answer p {
    margin-bottom: 0.75rem;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

.faq__answer ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.faq__answer ul:last-child {
    margin-bottom: 0;
}

.faq__answer li {
    padding-left: 1.25rem;
    position: relative;
    color: #b8aa9a;
}

.faq__answer li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #c0392b;
}

.faq__answer strong {
    color: #e8ddd0;
}

.prep-detail {
    background: #222222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.prep-detail[open] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.prep-detail__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.15s ease;
}

.prep-detail__summary::-webkit-details-marker {
    display: none;
}

.prep-detail__summary:hover {
    background: rgba(255, 255, 255, 0.03);
}

.prep-detail__summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 300;
    color: #c0392b;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    line-height: 1;
}

.prep-detail[open] .prep-detail__summary::after {
    transform: rotate(45deg);
}

.prep-detail__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f5efe8;
}

.prep-detail__subtitle {
    font-size: 0.85rem;
    color: #7a7066;
    font-weight: 400;
}

.prep-detail__body {
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.prep-detail__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1rem;
}

.prep-detail__list li {
    color: #b8aa9a;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.prep-detail__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 0.85rem;
}

.prep-detail__list a {
    color: #e74c3c;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prep-detail__list a:hover {
    color: #ff6b5b;
}

.prep-detail--all {
    border-color: rgba(192, 57, 43, 0.2);
}

.prep-detail--all .prep-detail__summary::after {
    color: #27ae60;
}

.prep__footer {
    text-align: center;
    font-size: 0.95rem;
    color: #7a7066;
}

.prep__footer a {
    color: #e74c3c;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prep__footer a:hover {
    color: #ff6b5b;
}

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq__item[open] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq__question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-heading);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.2s ease;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::before {
    content: "+";
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-btn-primary-text);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.25s ease, background 0.2s ease;
}

.faq__item[open] .faq__question::before {
    content: "−";
    background: var(--color-accent-hover);
    transform: rotate(180deg);
}

.faq__question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq__answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-card);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq__answer p {
    margin-bottom: 0.75rem;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

.faq__answer ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.faq__answer ul:last-child {
    margin-bottom: 0;
}

.faq__answer li {
    padding-left: 1.25rem;
    position: relative;
    color: var(--color-text-card);
}

.faq__answer li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.faq__answer strong {
    color: var(--color-text);

}

/* ─── Pricing ──────────────────────────────────────────────────── */
.pricing__table {
    border: 1px solid var(--color-border-strong);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto 1.5fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    align-items: center;
    border-bottom: 1px solid var(--color-border-pricing-row);
}

.pricing-row:last-child {
    border-bottom: none;
}

/* Pricing groups */
.pricing__group {
    margin-bottom: 2.5rem;
}

.pricing__group:last-child {
    margin-bottom: 0;
}

.pricing__group-title {
    font-size: 1.15rem;
    color: var(--color-text-heading);
    margin-bottom: 0.25rem;
}

.pricing__group-loc {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.pricing__group-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.pricing__group .pricing__table {
    margin-bottom: 0;
}

.pricing-row--header {
    background: var(--color-bg-pricing-header);
    font-weight: 700;
    color: var(--color-text-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-row__item {
    color: var(--color-text-heading);
    font-size: 0.95rem;
}

.pricing-row__rate {
    color: var(--color-text);
    font-weight: 600;
    white-space: nowrap;
}

.pricing-row__rate .small {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

.pricing-row__note {
    color: var(--color-text-dim);
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .pricing-row {
        grid-template-columns: 1fr auto;
    }
    .pricing-row__note {
        grid-column: 1 / -1;
    }
}

/* Booking steps */
.pricing__steps {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
}

.pricing__steps h3 {
    font-size: 1.2rem;
    color: var(--color-text-heading);
    margin-bottom: 1.25rem;
}

.pricing__steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    counter-reset: step;
}

.pricing__steps-list li {
    counter-increment: step;
    padding-left: 2.5rem;
    position: relative;
    color: var(--color-text-card);
    font-size: 0.95rem;
}

.pricing__steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-step-number-text);
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing__steps-list a {
    color: var(--color-accent-hover);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pricing__steps-list a:hover {
    color: var(--color-accent-bright);
}

/* ─── Process Walkthrough ──────────────────────────────────────── */
.process__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 780px;
    margin: 0 auto;
}

.process__step {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.process__step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-step-number-text);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--color-bg), 0 2px 8px rgba(192, 57, 43, 0.3);
    margin-top: 1.5rem;
}

.process__step-line {
    position: absolute;
    left: 1.5rem;
    top: 3rem;
    bottom: 0;
    width: 2px;
    background: var(--color-border-strong);
    z-index: 0;
}

.process__step-line--last {
    display: none;
}

.process__step-card {
    flex: 1;
    margin-left: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process__step-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.process__step-icon {
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.process__step-title {
    font-size: 1.1rem;
    color: var(--color-text-heading);
    margin-bottom: 0.5rem;
}

.process__step-desc {
    font-size: 0.95rem;
    color: var(--color-text-card);
    line-height: 1.7;
}

.process__note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.process__note a {
    color: var(--color-accent-hover);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.process__note a:hover {
    color: var(--color-accent-bright);
}

@media (max-width: 600px) {
    .process__step-card {
        margin-left: 1rem;
        padding: 1rem 1.25rem;
    }
    .process__step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
        margin-top: 1.25rem;
    }
    .process__step-line {
        left: 1.25rem;
    }
}

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
    background: var(--color-bg-footer);
    border-top: 1px solid var(--color-border);
    padding: 3rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__col--full {
    grid-column: 1 / -1;
}

.footer__col h3 {
    font-size: 1rem;
    color: var(--color-text-heading);
    margin-bottom: 0.75rem;
}

.footer__col p {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent-hover);
    display: inline-block;
    margin-top: 0.25rem;
}

.footer__phone:hover {
    color: var(--color-accent-bright);
}

.footer__bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-footer);
}

/* ─── Gallery ──────────────────────────────────────────────────── */
.gallery {
    scroll-margin-top: 4rem;
}

.gallery__accordion {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    max-width: 900px;
    margin: 0 auto;
}

.gallery__accordion[open] {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.gallery__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.15s ease;
}

.gallery__summary::-webkit-details-marker {
    display: none;
}

.gallery__summary:hover {
    background: rgba(255, 255, 255, 0.03);
}

.gallery__summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.gallery__accordion[open] .gallery__summary::after {
    transform: rotate(45deg);
}

.gallery__summary-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-heading);
}

.gallery__summary-hint {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    font-weight: 400;
    display: block;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.gallery-card {
    background: var(--color-bg-alt);
    border: 1px dashed var(--color-border-strong);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    min-height: 180px;
    justify-content: center;
}

.gallery-card:hover {
    border-color: var(--color-accent);
    background: rgba(192, 57, 43, 0.04);
}

.gallery-card__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-dim);
}

.gallery-card__icon {
    opacity: 0.5;
}

.gallery-card__label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.gallery-card__caption {
    font-size: 0.82rem;
    color: var(--color-text-dim);
    line-height: 1.5;
    max-width: 260px;
}

@media (max-width: 600px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery__summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .gallery__summary::after {
        position: absolute;
        right: 1.5rem;
        top: 1.25rem;
    }

    .gallery__summary {
        position: relative;
    }
}

/* Print: hide gallery */
@media print {
    .gallery {
        display: none !important;
    }
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }

    .section__title {
        font-size: 1.6rem;
    }

    .service-card,
    .animal-card,
    .policy-card {
        padding: 1.25rem;
    }

    .services__grid,
    .animals__grid,
    .policies__grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-scrollbar-track);
}
::-webkit-scrollbar-thumb {
    background: var(--color-scrollbar-thumb);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-scrollbar-thumb-hover);
}

/* ═══════════════════════════════════════════════════════════════════
   Print Stylesheet
   Clean, black-on-white output for pricing table and prep checklist.
   ═══════════════════════════════════════════════════════════════════ */

@media print {

    /* Page setup */
    @page {
        margin: 0.5in;
    }

    * {
        background: transparent !important;
        box-shadow: none !important;
        text-shadow: none !important;
        transform: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 11pt;
        line-height: 1.4;
    }

    /* Hide non-essential elements */
    .nav,
    .hero,
    .footer__bottom,
    .hero__cta,
    .hero__hint,
    .btn,
    .nav__cta {
        display: none !important;
    }

    /* Keep sections compact */
    .section {
        padding: 1rem 0 !important;
    }

    .section--dark {
        background: none !important;
    }

    /* Headings */
    .section__title {
        color: #000 !important;
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .section__subtitle {
        color: #555 !important;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    /* ─── Pricing Table ──────────────────────────────────────── */
    .pricing__group-title {
        color: #000 !important;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .pricing__group-loc {
        color: #555 !important;
    }

    .pricing__group-note {
        color: #444 !important;
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .pricing__table {
        border: 1px solid #000;
        border-radius: 0;
        margin-bottom: 1.5rem;
    }

    .pricing-row {
        display: grid;
        grid-template-columns: 1fr auto 1.5fr;
        gap: 0.75rem;
        padding: 0.5rem 0.75rem;
        border-bottom: 1px solid #ccc;
    }

    .pricing-row:last-child {
        border-bottom: none;
    }

    .pricing-row--header {
        background: none !important;
        color: #000 !important;
        font-size: 0.8rem;
        border-bottom: 2px solid #000;
    }

    .pricing-row__item {
        color: #000 !important;
        font-size: 0.9rem;
    }

    .pricing-row__rate {
        color: #000 !important;
        font-weight: 600;
    }

    .pricing-row__rate .small {
        color: #555 !important;
    }

    .pricing-row__note {
        color: #444 !important;
        font-size: 0.8rem;
    }

    /* Booking steps */
    .pricing__steps {
        background: none !important;
        border: 1px solid #000;
        border-radius: 0;
        padding: 1rem;
        page-break-inside: avoid;
    }

    .pricing__steps h3 {
        color: #000 !important;
    }

    .pricing__steps-list li {
        color: #000 !important;
    }

    .pricing__steps-list li::before {
        background: #000 !important;
        color: #fff !important;
    }

    .pricing__steps-list a {
        color: #000 !important;
        text-decoration: underline;
    }

    /* ─── Prep Checklist ──────────────────────────────────────── */
    /* Force all details to be open (no interactive disclosure on paper) */
    .prep-detail {
        display: block !important;
        border: 1px solid #999;
        border-radius: 0;
        background: none !important;
        page-break-inside: avoid;
    }

    .prep-detail[open] {
        box-shadow: none !important;
    }

    .prep-detail__summary {
        padding: 0.5rem 0.75rem;
        background: #f5f5f5 !important;
        border-bottom: 1px solid #ccc;
    }

    .prep-detail__summary::after {
        display: none !important;
    }

    .prep-detail__title {
        color: #000 !important;
        font-size: 0.95rem;
    }

    .prep-detail__subtitle {
        color: #555 !important;
        font-size: 0.8rem;
    }

    .prep-detail__body {
        display: block !important;
        padding: 0.5rem 0.75rem;
        border-top: 1px solid #ccc;
    }

    .prep-detail__list {
        padding-top: 0;
        gap: 0.35rem;
    }

    .prep-detail__list li {
        color: #000 !important;
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }

    .prep-detail__list li::before {
        color: #333 !important;
        content: "\2713";
    }

    .prep-detail__list a {
        color: #000 !important;
        text-decoration: underline;
    }

    .prep-detail--all {
        border-color: #000;
    }

    .prep__footer {
        text-align: left;
        color: #555 !important;
    }

    .prep__footer a {
        color: #000 !important;
        text-decoration: underline;
    }

    /* ─── Footer (simplified) ────────────────────────────────── */
    .footer {
        background: none !important;
        border-top: 1px solid #ccc;
        padding: 1rem 0 !important;
    }

    .footer__col h3 {
        color: #000 !important;
        font-size: 0.85rem;
    }

    .footer__col p {
        color: #444 !important;
        font-size: 0.8rem;
    }

    .footer__phone {
        color: #000 !important;
    }

    .footer__col--full p {
        font-size: 0.75rem;
        color: #666 !important;
    }

    /* Avoid orphan pages */
    .pricing__group,
    .prep__accordion {
        page-break-inside: avoid;
    }

    /* Undo dark-specific overrides not caught by the universal reset */
    .pricing-row--header {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}