@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Charm:wght@400;700&family=IBM+Plex+Sans+Thai:wght@300;400;500;600;700&family=Noto+Serif+Thai:wght@400;500;700&family=Poppins:wght@500;600&display=swap');

:root {
    --cream: #f4ead5;
    --cream-light: #faf3e3;
    --paper: #ede0c2;
    --ink: #1a1410;
    --red: #c0392b;
    --red-deep: #8b1f15;
    --yellow: #f4b942;
    --orange: #e07b2c;
    --brown: #5c3a21;
    --green: #6b8e23;
    --pink: #c45a8d;
    --shadow: rgba(26, 20, 16, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'IBM Plex Sans Thai', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    overflow-x: hidden;
    background: var(--cream);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(192, 57, 43, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 185, 66, 0.06) 0%, transparent 50%);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
    background-image:
        repeating-linear-gradient(45deg, transparent 0, transparent 2px, rgba(92, 58, 33, 0.015) 2px, rgba(92, 58, 33, 0.015) 4px),
        repeating-linear-gradient(-45deg, transparent 0, transparent 2px, rgba(92, 58, 33, 0.015) 2px, rgba(92, 58, 33, 0.015) 4px);
}

body, input, select, textarea, button {
    font-family: 'IBM Plex Sans Thai', sans-serif;
}

main, footer {
    position: relative;
    z-index: 2;
}

a {
    color: inherit;
}

.shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(26, 20, 16, 0.1);
    backdrop-filter: blur(8px);
    background: rgba(244, 234, 213, 0.92);
}

.site-header .shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    display: block;
    width: 88px;
    height: auto;
    flex: 0 0 auto;
    border-radius: 16px;
}

.brand-wordmark {
    font-family: 'Poppins', sans-serif;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-inline-form {
    margin: 0;
}

.nav-link-button {
    padding: 0.7rem 1rem;
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
    box-shadow: none;
}

.nav-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a.is-active {
    color: var(--red);
}

.nav-cta,
.button-link,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.nav-cta {
    padding: 0.7rem 1.2rem;
    background: var(--ink);
    color: var(--cream);
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 3px 3px 0 var(--red);
}

.nav-cta:hover,
.button-link:hover,
button:hover {
    transform: translate(-2px, -2px);
}

.page {
    padding: 32px 0 56px;
}

.page > .flash {
    margin-bottom: 24px;
    max-width: 780px;
}

.stack {
    display: grid;
    gap: 20px;
}

.narrow {
    max-width: 580px;
}

.eyebrow,
.section-eyebrow {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    color: var(--red);
}

h1, h2, h3 {
    margin: 0;
    line-height: 1.15;
}

h1,
.section-title {
    font-family: 'Noto Serif Thai', serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-family: 'Noto Serif Thai', serif;
    font-size: clamp(1.45rem, 3.5vw, 2.15rem);
}

h3 {
    font-family: 'Noto Serif Thai', serif;
    font-size: 1.35rem;
}

p {
    margin: 0;
    color: var(--brown);
}

.section-header {
    display: grid;
    gap: 10px;
    max-width: 780px;
    margin-bottom: 24px;
}

.section-sub {
    max-width: 640px;
    font-size: 1.02rem;
}

.hero-block,
.surface-panel,
.form-card,
.flash {
    position: relative;
    background: var(--cream-light);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
}

.hero-block {
    padding: clamp(28px, 5vw, 56px);
    overflow: hidden;
}

.hero-block::after {
    content: '';
    position: absolute;
    right: -36px;
    top: 24px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0.18;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 72%);
}

.hero-title {
    max-width: 12ch;
}

.hero-sub {
    max-width: 640px;
    font-size: 1.08rem;
}

.hero-actions,
.inline-links,
.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.accent-script {
    font-family: 'Charm', cursive;
    font-size: 1.25rem;
    color: var(--red);
}

.button-link,
button {
    padding: 0.95rem 1.35rem;
    background: var(--red);
    color: var(--cream);
    font-size: 0.96rem;
    font-weight: 600;
    box-shadow: 4px 4px 0 var(--ink);
}

button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.button-link.secondary,
.btn-secondary,
button.secondary {
    padding: 0.95rem 0;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
    border-bottom: 2px solid var(--ink);
}

.button-link.secondary:hover,
.btn-secondary:hover,
button.secondary:hover {
    color: var(--red);
    border-color: var(--red);
    transform: none;
}

.card-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.form-card,
.surface-panel {
    padding: 22px;
}

.collectible-card:nth-child(2n) {
    transform: rotate(1.2deg);
}

.collectible-card:nth-child(3n) {
    transform: rotate(-1.2deg);
}

.collectible-card:hover {
    transform: translateY(-6px) rotate(0deg);
    box-shadow: 8px 12px 0 var(--ink);
}

.flash {
    padding: 16px 18px;
}

.flash-success {
    border-color: rgba(107, 142, 35, 0.6);
    color: var(--green);
}

.flash-success p,
.flash-error p {
    color: inherit;
}

.flash-error {
    border-color: rgba(192, 57, 43, 0.65);
    color: var(--red-deep);
}

form {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--brown);
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--ink);
    border-radius: 2px;
    outline: none;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    background: #fff;
    box-shadow: 3px 3px 0 var(--yellow);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

code {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(192, 57, 43, 0.08);
    color: var(--red-deep);
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.75rem;
    border: 2px solid var(--ink);
    background: var(--yellow);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
}

.status-chip.public {
    background: #dbe8c0;
}

.status-chip.private {
    background: #f0cdc7;
}

.status-chip.undecided {
    background: #f6e2ac;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    background: var(--cream-light);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(26, 20, 16, 0.12);
    text-align: left;
}

.admin-table th {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    background: var(--paper);
}

.admin-table small {
    color: var(--brown);
}

.meta-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.meta-item {
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(26, 20, 16, 0.12);
    background: rgba(255, 255, 255, 0.35);
}

.meta-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    color: var(--red);
}

.story-block {
    padding: 16px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(26, 20, 16, 0.12);
    color: var(--ink);
}

.note-list {
    display: grid;
    gap: 14px;
}

.note-item {
    padding: 16px;
    border: 1px solid rgba(26, 20, 16, 0.12);
    background: rgba(255, 255, 255, 0.35);
}

.note-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--brown);
}

.player-shell {
    background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 100%);
    color: var(--cream);
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    padding: 24px;
}

.player-shell p,
.player-shell h1,
.player-shell h2 {
    color: inherit;
}

.gift-moment,
.gift-player {
    gap: 16px;
}

.gift-open-form {
    justify-items: start;
}

.gift-moment.is-revealing {
    opacity: 0.92;
    transform: scale(0.995);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gift-reveal-text {
    font-weight: 600;
    color: var(--yellow);
}

.audio-player {
    width: 100%;
    max-width: 720px;
    filter: sepia(0.2) saturate(0.9);
}

.audio-player.compact {
    max-width: 100%;
}

.filter-bar {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    align-items: end;
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
}

.tag-row {
    align-items: center;
}

.public-song-card {
    align-content: start;
}

.plain-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--brown);
}

.plain-list li + li {
    margin-top: 0.45rem;
}

.footer {
    margin-top: 40px;
    padding: 48px 0 32px;
    background: var(--ink);
    color: rgba(244, 234, 213, 0.72);
    text-align: center;
}

.footer p {
    color: rgba(244, 234, 213, 0.88);
}

.footer .brand {
    justify-content: center;
    margin-bottom: 12px;
    gap: 14px;
}

.footer .brand-wordmark {
    color: var(--cream);
}

.footer .logo-mark {
    width: 96px;
    padding: 6px 10px;
    background: rgba(244, 234, 213, 0.14);
}

.footer-tagline {
    margin: 12px 0 18px;
    font-family: 'Charm', cursive;
    font-size: 1.35rem;
    color: var(--yellow);
}

.footer-meta {
    margin-top: 18px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: rgba(244, 234, 213, 0.78);
}

@media (max-width: 1120px) {
    .site-header .shell {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav {
        width: 100%;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .nav-list {
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(100% - 24px, 1200px);
    }

    .page {
        padding: 24px 0 40px;
    }

    .hero-actions,
    .inline-links,
    .action-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-link,
    .nav-cta,
    button {
        width: 100%;
    }

    .nav-link-button {
        width: 100%;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .logo-mark {
        width: 78px;
    }

    .brand-wordmark {
        font-size: 1.35rem;
    }
}

[hidden] {
    display: none !important;
}

.brand-mark-wrap {
    position: relative;
    display: inline-flex;
}

.brand-mini-badge {
    position: absolute;
    right: -4px;
    bottom: -4px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 0.75rem;
    box-shadow: 2px 2px 0 var(--ink);
}

.campaign-ticker {
    position: relative;
    z-index: 110;
    overflow: hidden;
    height: 38px;
    background: linear-gradient(90deg, var(--red) 0%, var(--orange) 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.campaign-ticker-track {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: max-content;
    height: 100%;
    white-space: nowrap;
    padding-inline: 20px;
    animation: tickerSlide 28s linear infinite;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.campaign-ticker .dot {
    opacity: 0.6;
}

@keyframes tickerSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.season-banner {
    background: rgba(244, 185, 66, 0.18);
    border-bottom: 1px solid rgba(26, 20, 16, 0.08);
}

.season-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    flex-wrap: wrap;
}

.season-banner-copy {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--brown);
}

.season-banner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--ink);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.12em;
}

.season-banner-link {
    color: var(--red-deep);
    text-decoration: none;
    border-bottom: 2px solid rgba(139, 31, 21, 0.24);
    font-weight: 700;
}

.nav-pet-link {
    position: relative;
    color: var(--red-deep);
}

.nav-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.45rem;
    padding: 0.05rem 0.45rem;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 700;
    vertical-align: middle;
}

.nav-cta-season {
    background: var(--red);
    box-shadow: 3px 3px 0 var(--yellow);
}

.home-season-page,
.pet-landing-page,
.brief-page,
.packages-page {
    gap: 28px;
}

.season-hero,
.pet-landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.season-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(244, 185, 66, 0.22);
    color: var(--red-deep);
    font-weight: 600;
}

.season-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--red);
    animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(1.25);
    }
}

.season-trust-row,
.pet-inline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--brown);
    font-size: 0.92rem;
}

.season-countdown {
    display: inline-flex;
    align-items: stretch;
    gap: 16px;
    width: fit-content;
    padding: 1rem 1.1rem;
    border: 2px solid rgba(26, 20, 16, 0.1);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 4px 4px 0 rgba(26, 20, 16, 0.08);
}

.season-countdown-block {
    display: grid;
    gap: 4px;
}

.season-countdown-label {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--brown);
}

.season-slot-number {
    font-size: 2rem;
    line-height: 1;
    color: var(--red-deep);
}

.season-slot-caption {
    font-size: 0.8rem;
    color: var(--brown);
}

.season-divider {
    width: 1px;
    background: rgba(26, 20, 16, 0.12);
}

.season-time-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red-deep);
}

.season-hero-cards {
    display: grid;
    gap: 16px;
}

.season-feature-card,
.pet-story-card,
.pet-floating-note {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    padding: 22px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.season-feature-card:hover,
.pet-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 10px 0 var(--ink);
}

.season-feature-card.is-pet,
.featured-package-card {
    background: linear-gradient(145deg, rgba(250, 236, 231, 0.98) 0%, rgba(255, 253, 249, 0.98) 100%);
    border-color: var(--red);
}

.season-feature-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 14px;
}

.season-feature-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(192, 57, 43, 0.1);
    font-size: 1.5rem;
}

.season-badge-stack {
    display: grid;
    gap: 6px;
    justify-items: end;
}

.season-badge,
.season-mini-badge,
.pet-story-badge,
.pet-price-pill,
.featured-price {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.season-badge,
.pet-story-badge {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
}

.season-mini-badge,
.pet-price-pill {
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(244, 185, 66, 0.28);
    color: var(--red-deep);
    font-size: 0.78rem;
    font-weight: 700;
}

.pet-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pet-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 20, 16, 0.14);
    background: rgba(255, 255, 255, 0.75);
    color: var(--brown);
    font-size: 0.8rem;
}

.pet-season-block,
.pet-package-highlight {
    gap: 22px;
}

.season-particle {
    position: fixed;
    bottom: -32px;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    animation-name: particleFloat;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }

    10% {
        opacity: 0.55;
    }

    100% {
        opacity: 0;
        transform: translateY(-110vh) rotate(16deg);
    }
}

.shimmer-button {
    position: relative;
    overflow: hidden;
}

.shimmer-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -110%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerSweep 3s ease-in-out infinite;
}

@keyframes shimmerSweep {
    0% {
        left: -110%;
    }

    45%, 100% {
        left: 160%;
    }
}

.pet-landing-visual {
    align-content: start;
}

.pet-price-pill,
.featured-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--red-deep);
}

.pet-floating-note {
    color: var(--brown);
}

.pet-package-highlight-row {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
    gap: 22px;
    align-items: start;
}

.pet-highlight-price {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 2px dashed rgba(192, 57, 43, 0.34);
    background: rgba(255, 255, 255, 0.62);
}

.pet-highlight-price strong {
    font-size: 2rem;
    color: var(--red-deep);
}

.brief-mode-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mode-card {
    display: grid;
    gap: 6px;
    padding: 20px;
    border: 2px solid var(--ink);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 4px 4px 0 var(--ink);
    text-align: left;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.mode-card:hover,
.mode-card.is-active {
    transform: translateY(-3px);
    box-shadow: 7px 8px 0 var(--ink);
}

.mode-card.is-active {
    background: rgba(250, 236, 231, 0.92);
}

.mode-emoji {
    font-size: 1.6rem;
}

.mode-title {
    font-family: 'Noto Serif Thai', serif;
    font-size: 1.2rem;
    color: var(--ink);
}

.mode-desc {
    color: var(--brown);
    font-size: 0.92rem;
}

.brief-panels {
    display: grid;
    gap: 20px;
}

.pet-brief-form-shell {
    gap: 22px;
}

.pet-form-header {
    display: grid;
    gap: 10px;
}

.pet-form-error-note {
    padding: 14px 16px;
    border: 2px solid rgba(192, 57, 43, 0.35);
    background: rgba(250, 236, 231, 0.92);
    color: var(--red-deep);
    font-weight: 600;
}

.pet-progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.pet-progress-bar {
    height: 6px;
    border-radius: 999px;
    background: rgba(26, 20, 16, 0.08);
}

.pet-progress-bar.is-active {
    background: rgba(224, 123, 44, 0.8);
}

.pet-progress-bar.is-done {
    background: var(--red);
}

.pet-form-step {
    display: none;
    gap: 16px;
}

.pet-form-step.is-active {
    display: grid;
}

.pet-step-label {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
}

.pet-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pet-form-field {
    display: grid;
    gap: 10px;
}

.pet-field-label {
    font-size: 0.92rem;
    color: var(--brown);
}

.required {
    color: var(--red);
}

.pet-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pet-chip {
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(26, 20, 16, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--brown);
    font-size: 0.88rem;
    box-shadow: none;
}

.pet-chip.is-selected,
.pet-chip:hover {
    background: rgba(250, 236, 231, 0.98);
    color: var(--red-deep);
    border-color: rgba(192, 57, 43, 0.32);
    transform: none;
}

.pet-example-box,
.pet-package-box {
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.6);
    border-left: 4px solid rgba(224, 123, 44, 0.7);
}

.pet-package-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.pet-package-title {
    color: var(--red-deep);
    font-weight: 700;
}

.pet-package-note {
    margin-top: 4px;
    font-size: 0.86rem;
    color: var(--brown);
}

.pet-form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(26, 20, 16, 0.1);
}

.pet-step-counter {
    color: var(--brown);
    font-size: 0.9rem;
}

.pet-nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.featured-package-card::after {
    content: '✦';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.1rem;
    color: var(--red);
}

@media (max-width: 960px) {
    .season-hero,
    .pet-landing-hero,
    .pet-package-highlight-row {
        grid-template-columns: 1fr;
    }

    .brief-mode-switch {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .campaign-ticker-track {
        font-size: 0.75rem;
    }

    .season-banner-inner,
    .season-banner-copy,
    .pet-form-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .season-countdown {
        width: 100%;
        flex-direction: column;
    }

    .season-divider {
        width: 100%;
        height: 1px;
    }

    .pet-grid-2 {
        grid-template-columns: 1fr;
    }

    .pet-nav-actions {
        width: 100%;
        flex-direction: column;
    }

    .pet-nav-actions .button-link,
    .pet-nav-back {
        width: 100%;
    }
}
