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

/* ─── 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: #1a1a1a;
    color: #e8ddd0;
    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: #c0392b;
    color: #fff;
    box-shadow: 0 4px 14px rgba(192, 57, 43, 0.35);
}

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

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

.section--dark {
    background: #1f1f1f;
}

.section__title {
    font-size: 2rem;
    color: #f5efe8;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section__subtitle {
    font-size: 1.1rem;
    color: #a09488;
    text-align: center;
    margin-bottom: 3rem;
}

/* ─── Navigation ───────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    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: #f5efe8;
    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: #e8ddd0;
    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: #a09488;
    transition: color 0.2s ease;
    padding: 0.4rem 0;
}

.nav__links a:hover {
    color: #f5efe8;
}

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

.nav__cta:hover {
    background: #e74c3c;
}

/* 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: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem 1.5rem 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .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%, rgba(192, 57, 43, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(39, 174, 96, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #1a1a1a 0%, #141414 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 rgba(255,255,255,0.12);
    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: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    color: #a09488;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: 3.25rem;
    color: #f5efe8;
    margin-bottom: 1rem;
}

.hero__sub {
    font-weight: 400;
    color: #a09488;
    font-size: 2rem;
}

.hero__tagline {
    font-size: 1.2rem;
    color: #b8aa9a;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero__hint {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #7a7066;
}

@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: #222222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    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: #c0392b;
    margin-bottom: 1rem;
}

.service-card__title {
    font-size: 1.25rem;
    color: #f5efe8;
    margin-bottom: 1rem;
}

.service-card__location {
    font-weight: 400;
    font-size: 0.95rem;
    color: #a09488;
}

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

.service-card__list li {
    position: relative;
    padding-left: 1.25rem;
    color: #b8aa9a;
    font-size: 0.95rem;
}

.service-card__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c0392b;
}

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

.animal-card {
    background: #222222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.75rem;
}

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

.animal-card__header h3 {
    font-size: 1.2rem;
    color: #f5efe8;
    position: relative;
    display: inline-block;
}

.animal-card__header h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #c0392b;
    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: #b8aa9a;
    font-size: 0.95rem;
    padding-left: 1rem;
    position: relative;
}

.animal-card__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c0392b;
}

.animal-card__note {
    font-size: 0.85rem;
    color: #7a7066;
    font-style: italic;
}

/* Packaging */
.animals__packaging {
    background: #222222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem;
}

.animals__packaging h3 {
    font-size: 1.2rem;
    color: #f5efe8;
    margin-bottom: 1.25rem;
}

.animals__packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.packaging-option {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.packaging-option__label {
    display: block;
    font-weight: 600;
    color: #f5efe8;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.packaging-option__desc {
    font-size: 0.85rem;
    color: #7a7066;
}

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

.policy-card {
    background: #222222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.75rem;
}

.policy-card__title {
    font-size: 1.1rem;
    color: #f5efe8;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.policy-card__list li {
    color: #b8aa9a;
    font-size: 0.95rem;
    padding-left: 1.25rem;
    position: relative;
}

.policy-card__list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c0392b;
}

/* ─── Pricing ──────────────────────────────────────────────────── */
.pricing__table {
    border: 1px solid rgba(255, 255, 255, 0.08);
    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 rgba(255, 255, 255, 0.04);
}

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

.pricing-row--header {
    background: rgba(192, 57, 43, 0.12);
    font-weight: 700;
    color: #f5efe8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-row__item {
    color: #f5efe8;
    font-size: 0.95rem;
}

.pricing-row__rate {
    color: #e8ddd0;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-row__rate .small {
    font-weight: 400;
    font-size: 0.8rem;
    color: #7a7066;
}

.pricing-row__note {
    color: #7a7066;
    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: #222222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem;
}

.pricing__steps h3 {
    font-size: 1.2rem;
    color: #f5efe8;
    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: #b8aa9a;
    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: #c0392b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

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

.pricing__steps-list a:hover {
    color: #ff6b5b;
}

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
    background: #141414;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    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: #f5efe8;
    margin-bottom: 0.75rem;
}

.footer__col p {
    color: #7a7066;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e74c3c;
    display: inline-block;
    margin-top: 0.25rem;
}

.footer__phone:hover {
    color: #ff6b5b;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #555;
}

/* ─── 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: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #444;
}