/* ==========================================================================
   PetPass — marketing site. "The happiest passport in the world": a beloved,
   well-travelled sticker-book passport. Teal + coral + sunny-yellow from the
   logo, chunky rounded shapes, squishy candy buttons, paw-print trails.
   Fredoka (display) / Nunito (body) / Space Mono (passport data).
   Hand-authored (no build step): served straight from public/.
   ========================================================================== */

@font-face {
    font-family: 'Mulled Wine Season';
    src: url('/fonts/MulledWineSeason-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --cream: #fdf6ec;
    --cream-deep: #f6ead6;
    --card: #fffdf8;
    --ink: #223c3c;
    --ink-soft: #566966;
    --ink-mute: #8fa09b;
    --line: #ece0cb;
    --line-strong: #ddccb0;

    /* brand colours from the logo SVG */
    --teal: #164348;
    --teal-700: #123a3f;
    --teal-900: #0e2f33;
    --teal-bright: #2f9d94;
    --teal-100: #d9e8e6;

    --mint: #e6f2ef;
    --mint-deep: #d1e9e3;

    --coral: #e35d5a;
    --coral-deep: #cd4744;
    --coral-soft: #f7d8d4;

    --sun: #fbc94a;
    --sun-deep: #eeb42c;
    --sun-soft: #fdeec3;

    --brown: #6b625b;

    --brand: 'Mulled Wine Season', 'Fredoka', system-ui, sans-serif;
    --display: 'Fredoka', system-ui, 'Segoe UI', sans-serif;
    --sans: 'Nunito', system-ui, 'Segoe UI', sans-serif;
    --mono: 'Space Mono', ui-monospace, 'Courier New', monospace;

    --radius: 24px;
    --radius-sm: 15px;
    --radius-lg: 34px;
    --shadow: 0 10px 26px -14px rgba(31, 81, 89, 0.35);
    --shadow-pop: 0 26px 54px -22px rgba(31, 81, 89, 0.45);
    --w: 1140px;

    /* a single paw, tinted per use via the `fill` in the data-URI */
    --paw: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231f5159'%3E%3Cellipse cx='7.2' cy='8.4' rx='2' ry='2.7' transform='rotate(-18 7.2 8.4)'/%3E%3Cellipse cx='12' cy='6.6' rx='2' ry='2.8'/%3E%3Cellipse cx='16.8' cy='8.4' rx='2' ry='2.7' transform='rotate(18 16.8 8.4)'/%3E%3Cpath d='M12 11.2c-2.6 0-5.6 2.5-5.6 5.2 0 1.6 1.2 2.6 2.7 2.6 1.1 0 1.9-.5 2.9-.5s1.8.5 2.9.5c1.5 0 2.7-1 2.7-2.6 0-2.7-3-5.2-5.6-5.2Z'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.62;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--teal); text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--brand);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: 0.01em;
}

::selection { background: var(--sun); color: var(--teal-900); }

.wrap { max-width: var(--w); margin: 0 auto; padding: 0 28px; }

/* ── kicker: a little rounded sticker badge ────────────────────────────── */

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--coral-deep);
    background: var(--coral-soft);
    padding: 5px 13px 5px 11px;
    border-radius: 999px;
    transform: rotate(-1.5deg);
}

.kicker::before {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--paw);
    background-size: contain;
    background-repeat: no-repeat;
    /* recolor the teal paw to coral */
    filter: sepia(1) saturate(6) hue-rotate(-28deg) brightness(1.02);
}

.section-head.center .kicker { transform: rotate(-1.5deg); }

/* ── buttons: squishy candy buttons with a chunky bottom edge ──────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
    padding: 13px 26px;
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 5px 0 var(--teal-900);
}
.btn-primary:hover { background: #235c65; transform: translateY(-2px); box-shadow: 0 7px 0 var(--teal-900); }
.btn-primary:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--teal-900); }

.btn-outline {
    background: var(--card);
    color: var(--teal);
    box-shadow: 0 5px 0 var(--line-strong);
    border: 2px solid var(--line-strong);
}
.btn-outline:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--line-strong); border-color: var(--teal); color: var(--teal); }
.btn-outline:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--line-strong); }

.btn-gold {
    background: var(--sun);
    color: var(--teal-900);
    font-weight: 700;
    box-shadow: 0 5px 0 var(--sun-deep);
}
.btn-gold:hover { background: #ffd45f; transform: translateY(-2px); box-shadow: 0 7px 0 var(--sun-deep); }
.btn-gold:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--sun-deep); }

.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-sm.btn-primary { box-shadow: 0 4px 0 var(--teal-900); }
.btn-sm.btn-outline { box-shadow: 0 4px 0 var(--line-strong); }

/* ── header ────────────────────────────────────────────────────────────── */

.site-head {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--card);
    border-bottom: 2px solid var(--line);
    box-shadow: 0 6px 24px -18px rgba(14, 47, 51, 0.5);
}

.site-head .bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 28px;
    max-width: var(--w);
    margin: 0 auto;
}

.wordmark {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--display);
    font-size: 25px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: -0.02em;
}

.wordmark svg {
    color: var(--coral);
    background: var(--coral-soft);
    padding: 5px;
    border-radius: 50%;
    box-sizing: content-box;
}

.site-nav { display: flex; align-items: center; gap: 26px; }

.site-nav a.navlink {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink-soft);
    transition: color 0.15s;
}

.site-nav a.navlink:hover,
.site-nav a.navlink.is-active { color: var(--coral-deep); }

.nav-divider { width: 1.5px; height: 18px; background: var(--line); border-radius: 2px; flex-shrink: 0; }

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

/* mobile menu toggle (hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 38px;
    padding: 0 9px;
    background: var(--card);
    border: 2px solid var(--line);
    border-radius: 11px;
    cursor: pointer;
}
.nav-toggle-bar { display: block; width: 100%; height: 2.5px; background: var(--teal-900); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.site-head.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.site-head.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-head.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .site-head .bar { position: relative; }
    .site-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 22px 16px;
        background: var(--card);
        border-bottom: 2px solid var(--line);
        box-shadow: 0 16px 26px -16px rgba(14, 47, 51, 0.4);
        opacity: 0; visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    }
    .site-head.is-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
    .site-nav a.navlink { padding: 12px 4px; font-size: 16px; border-bottom: 1px solid var(--line); }
    .nav-divider { display: none; }
    .site-nav .navdrop { position: static; }
    .site-nav .navdrop-toggle { display: none; }
    .site-nav .navdrop-menu,
    .site-nav .navdrop:hover .navdrop-menu,
    .site-nav .navdrop:focus-within .navdrop-menu {
        position: static; top: auto; left: auto;
        transform: none; opacity: 1; visibility: visible;
        min-width: 0; background: transparent;
        border: none; border-radius: 0; box-shadow: none;
        padding: 0; z-index: auto;
    }
    .site-nav .navdrop-menu a { padding: 12px 4px; font-size: 16px; font-weight: 700; color: var(--ink-soft); border-radius: 0; border-bottom: 1px solid var(--line); }
    .site-nav .navdrop-menu a:last-child { border-bottom: none; }
    .site-nav .navdrop-menu a svg { display: none; } /* hide icons so labels line up with Home / Features */
    .site-nav .navdrop-menu a:hover, .site-nav .navdrop-menu a[aria-current="page"] { background: transparent; color: var(--coral-deep); }
}

@media (max-width: 560px) {
    .site-head .bar { padding: 11px 18px; }
    .head-actions .btn-primary { display: none; } /* repeated in hero & CTA */
    .hero { padding: 52px 0 72px; }
    .hero .lede { font-size: 17px; }
    .hero-ctas .btn { flex: 1 1 auto; }
    section.block { padding: 68px 0; }
    .wrap { padding: 0 20px; }
}

/* ── hero ──────────────────────────────────────────────────────────────── */

.hero {
    position: relative;
    padding: 76px 0 96px;
    background:
        radial-gradient(60% 45% at 88% 4%, var(--sun-soft), transparent 62%),
        radial-gradient(55% 45% at 2% 30%, var(--mint), transparent 60%);
    overflow: hidden;
}

/* scattered paw confetti behind the hero */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image: var(--paw), var(--paw), var(--paw);
    background-repeat: no-repeat;
    background-size: 46px, 30px, 62px;
    background-position: 12% 78%, 74% 22%, 90% 84%;
}

.hero .wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 10fr) minmax(0, 9fr);
    gap: 56px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(34px, 7.2vw, 64px);
    color: var(--teal-900);
    margin: 18px 0 20px;
    line-height: 1.04;
}

.hero h1 em {
    font-style: normal;
    color: var(--coral);
    position: relative;
    white-space: nowrap;
}

/* hand-drawn underline scribble under the highlighted word */
.hero h1 em::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 0.02em;
    height: 0.34em;
    background: var(--sun);
    border-radius: 999px;
    z-index: -1;
    transform: rotate(-1deg);
}

.hero .lede {
    font-size: 19px;
    font-weight: 500;
    color: var(--ink-soft);
    max-width: 46ch;
    margin-bottom: 30px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-note {
    margin-top: 20px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--ink-mute);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-note .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 0 4px color-mix(in srgb, var(--teal-bright) 22%, transparent); }

/* passport visual */
.hero-visual { position: relative; min-height: 470px; }

.passport-book {
    position: relative;
    width: min(400px, 100%);
    margin-left: auto;
    background:
        radial-gradient(130% 80% at 18% 4%, rgba(47, 163, 154, 0.4), transparent 55%),
        linear-gradient(158deg, var(--teal), var(--teal-900));
    border-radius: 28px;
    box-shadow: var(--shadow-pop);
    padding: 13px;
    transform: rotate(-2.5deg);
    animation: float-a 7s ease-in-out infinite;
}

/* washi tape holding the passport to the page */
.passport-book::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    width: 122px;
    height: 30px;
    transform: translateX(-50%) rotate(-3deg);
    background: repeating-linear-gradient(45deg, color-mix(in srgb, var(--sun) 80%, transparent) 0 8px, color-mix(in srgb, var(--sun-deep) 78%, transparent) 8px 16px);
    border-radius: 3px;
    opacity: 0.92;
}

.passport-inner {
    border: 2px solid rgba(251, 201, 74, 0.6);
    border-radius: 18px;
    padding: 28px 26px 24px;
    color: #eef6f2;
    position: relative;
}

.passport-title {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sun);
    text-align: center;
    margin-bottom: 18px;
}

.passport-id {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.pet-photo {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 18px;
    background: rgba(251, 201, 74, 0.14);
    border: 2px dashed rgba(251, 201, 74, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.pet-fields { flex: 1; display: grid; gap: 9px; }

.pet-field .f-label {
    font-family: var(--mono);
    font-size: 8.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(238, 246, 242, 0.55);
}

.pet-field .f-value {
    font-family: var(--display);
    font-weight: 500;
    font-size: 17px;
    color: #fbfdfb;
    line-height: 1.2;
}

.pet-field .f-value.mono { font-family: var(--mono); font-weight: 400; font-size: 12.5px; letter-spacing: 0.06em; }

.passport-rows { border-top: 2px dashed rgba(238, 246, 242, 0.28); padding-top: 14px; display: grid; gap: 10px; }

.p-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 14px; font-weight: 700; }
.p-row .r-name { color: rgba(238, 246, 242, 0.9); }
.p-row .r-val { font-family: var(--mono); font-weight: 400; font-size: 11px; color: var(--sun); letter-spacing: 0.04em; white-space: nowrap; }

/* wobbly sticker-stamps */
.rubber-stamp {
    position: absolute;
    z-index: 3;
    font-family: var(--display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #fff;
    background: var(--coral);
    border: 3px solid #fff;
    border-radius: 999px;
    padding: 8px 16px;
    box-shadow: var(--shadow);
}

.rubber-stamp.green { background: var(--teal-bright); }

.stamp-1 { top: -20px; right: 4%; transform: rotate(9deg); animation: wobble 5s ease-in-out infinite; }
.stamp-2 { bottom: 108px; left: -26px; transform: rotate(-8deg); background: var(--sun); color: var(--teal-900); animation: wobble 6s 0.4s ease-in-out infinite; }

/* floating side cards */
.float-card {
    position: absolute;
    z-index: 2;
    background: var(--card);
    border: 2px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 13px 16px;
    display: flex;
    gap: 11px;
    align-items: center;
    max-width: 252px;
}

.float-card .fc-icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-card .fc-title { font-size: 13.5px; font-weight: 800; line-height: 1.25; color: var(--ink); }
.float-card .fc-sub { font-size: 11.5px; font-weight: 600; color: var(--ink-soft); line-height: 1.35; }

.float-1 { bottom: -6px; right: 44%; animation: float-b 8s ease-in-out infinite; }
.float-2 { top: -20px; left: -8px; animation: float-b 9s 0.8s ease-in-out infinite; }

@keyframes float-a { 0%, 100% { transform: rotate(-2.5deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-10px); } }
@keyframes float-b { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes wobble { 0%, 100% { rotate: 0deg; } 25% { rotate: -3deg; } 75% { rotate: 3deg; } }

@media (max-width: 920px) {
    .hero .wrap { grid-template-columns: minmax(0, 1fr); gap: 66px; }
    .hero-visual { min-height: 0; }
    .passport-book { margin: 0 auto; }
    .float-2 { display: none; }
    .stamp-2 { display: none; }
    .float-1 { right: auto; left: -6px; }
}

/* ── stamp marquee ─────────────────────────────────────────────────────── */

.marquee {
    background: var(--teal);
    color: #eef6f2;
    overflow: hidden;
    padding: 16px 0;
    border-top: 4px solid var(--sun);
    border-bottom: 4px solid var(--sun);
}

.marquee-track {
    display: flex;
    gap: 44px;
    width: max-content;
    animation: marquee 36s linear infinite;
}

.marquee span {
    font-family: var(--display);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 44px;
}

.marquee .star { color: var(--sun); font-style: normal; }

@keyframes marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
    .marquee-track, .passport-book, .float-card, .rubber-stamp { animation: none; }
}

/* ── sections ──────────────────────────────────────────────────────────── */

section.block { padding: 92px 0; }
section.block.tint { background: var(--mint); }

.section-head { max-width: 62ch; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 { font-size: clamp(32px, 3.8vw, 46px); color: var(--teal-900); margin: 14px 0 12px; }
.section-head p { color: var(--ink-soft); font-size: 17.5px; font-weight: 500; }

/* features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature {
    background: var(--card);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 26px;
    position: relative;
    transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.18s ease;
}

.feature:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow-pop); }

.feature .icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transform: rotate(-4deg);
}

.feature:hover .icon { animation: icon-wiggle 0.7s ease-in-out; }
@keyframes icon-wiggle { 0%, 100% { transform: rotate(-4deg); } 20% { transform: rotate(8deg) scale(1.12); } 45% { transform: rotate(-8deg) scale(1.12); } 70% { transform: rotate(5deg) scale(1.06); } }

.feature .icon svg { width: 26px; height: 26px; }
.feature .cat {
    display: block;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 5px;
}
.feature h3 { font-size: 21px; margin-bottom: 8px; color: var(--teal-900); }
.feature p { font-size: 15px; font-weight: 500; color: var(--ink-soft); }

.feature .corner {
    position: absolute;
    top: 20px;
    right: 22px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--line-strong);
}

@media (max-width: 920px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

/* how it works — connected by a walking paw-print trail */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step { position: relative; text-align: center; padding: 0 8px; }

.step .num {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--card);
    border: 3px solid var(--coral);
    box-shadow: 0 5px 0 var(--coral-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 600;
    font-size: 27px;
    color: var(--coral-deep);
}

.step h3 { font-size: 22px; color: var(--teal-900); margin-bottom: 8px; }
.step p { font-size: 15px; font-weight: 500; color: var(--ink-soft); }

/* paw-print trail walking between the step badges */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 54px);
    width: calc(100% - 108px);
    height: 26px;
    background-image: var(--paw);
    background-size: 24px 24px;
    background-repeat: repeat-x;
    background-position: left center;
    opacity: 0.32;
}

@media (max-width: 760px) {
    .steps { grid-template-columns: 1fr; gap: 34px; }
    .step:not(:last-child)::after { display: none; }
}

/* split spotlight */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split .copy h2 { font-size: clamp(30px, 3.4vw, 40px); color: var(--teal-900); margin: 14px 0 16px; }
.split .copy p { color: var(--ink-soft); font-size: 16.5px; font-weight: 500; margin-bottom: 14px; }

.split ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }

.split li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; font-weight: 600; }

.split li .tick {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--teal-bright);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 0 color-mix(in srgb, var(--teal-bright) 55%, var(--teal-900));
}

/* vaccination card visual */
.vax-stack { position: relative; padding: 20px 0 30px; }

.vax-card {
    background: var(--card);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px 24px;
    max-width: 400px;
    position: relative;
}

.vax-card:first-child { transform: rotate(-1.5deg); }
.vax-card + .vax-card { margin-top: 18px; margin-left: 44px; transform: rotate(1.5deg); }

.vax-card .spread { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.vax-card h4 { font-family: var(--display); font-size: 19px; color: var(--teal-900); }
.vax-card .vc-sub { font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-top: 3px; }

.vax-card .vc-rule { border: none; border-top: 2px dashed var(--line-strong); margin: 14px 0; }

.vax-card .vc-meta { display: flex; gap: 22px; font-family: var(--mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.04em; }
.vax-card .vc-meta b { display: block; font-family: var(--sans); font-size: 13.5px; color: var(--ink); font-weight: 800; margin-top: 2px; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 999px;
    padding: 5px 12px;
    transform: rotate(-2deg);
    white-space: nowrap;
}

.badge.ok { background: var(--teal-bright); box-shadow: 0 3px 0 color-mix(in srgb, var(--teal-bright) 55%, var(--teal-900)); }
.badge.due { background: var(--coral); box-shadow: 0 3px 0 var(--coral-deep); }

@media (max-width: 920px) {
    .split { grid-template-columns: 1fr; gap: 46px; }
    .vax-card + .vax-card { margin-left: 20px; }
}

/* directory strip */
.dir-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.dir-card {
    background: var(--card);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px 24px;
    transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.18s ease;
}

.dir-card:hover { transform: translateY(-5px) rotate(1deg); box-shadow: var(--shadow-pop); }

.dir-card .row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }

.dir-card .chip {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    color: #fff;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: rotate(-4deg);
}

.dir-card h4 { font-family: var(--display); font-size: 18px; color: var(--teal-900); }
.dir-card .d-sub { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.dir-card p { font-size: 14px; font-weight: 500; color: var(--ink-soft); }

.dir-card .stars { font-family: var(--mono); font-size: 12px; color: var(--sun-deep); letter-spacing: 0.06em; }

.dir-more { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }

@media (max-width: 760px) { .dir-cards { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .dir-more { flex-direction: column; align-items: stretch; } .dir-more .btn { justify-content: center; } }

/* ── CTA band ──────────────────────────────────────────────────────────── */

.cta-band { padding: 40px 0 110px; }

.cta-inner {
    position: relative;
    background:
        radial-gradient(120% 90% at 12% 4%, rgba(47, 163, 154, 0.45), transparent 55%),
        radial-gradient(90% 80% at 92% 100%, rgba(239, 111, 97, 0.35), transparent 55%),
        linear-gradient(158deg, var(--teal), var(--teal-900));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-pop);
    padding: 13px;
    overflow: hidden;
}

/* paw confetti inside the CTA */
.cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.09;
    background-image: var(--paw), var(--paw), var(--paw), var(--paw);
    background-repeat: no-repeat;
    background-size: 40px, 56px, 30px, 46px;
    background-position: 8% 24%, 90% 30%, 20% 82%, 82% 84%;
    /* recolor paws to cream */
    filter: brightness(0) invert(1);
}

.cta-frame {
    position: relative;
    border: 2px solid rgba(251, 201, 74, 0.55);
    border-radius: 24px;
    padding: 62px 28px;
    text-align: center;
    color: #eef6f2;
}

.cta-frame .kicker { color: var(--teal-900); background: var(--sun); }
.cta-frame .kicker::before { filter: none; }

.cta-frame h2 { font-size: clamp(32px, 4.4vw, 50px); color: #fbfdfb; margin: 14px 0 14px; }
.cta-frame p { color: rgba(238, 246, 242, 0.82); font-size: 17.5px; font-weight: 500; max-width: 52ch; margin: 0 auto 30px; }

.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── footer ────────────────────────────────────────────────────────────── */

.site-foot { border-top: 3px dotted var(--line-strong); padding: 36px 0 46px; }

.site-foot .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.site-foot .fine {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.02em;
    color: var(--ink-mute);
}

.site-foot nav { display: flex; gap: 22px; align-items: center; }

.site-foot nav a { font-size: 14.5px; font-weight: 700; color: var(--ink-soft); }
.site-foot nav a:hover { color: var(--coral-deep); }

/* ── reveal on scroll ──────────────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
    .reveal.in { opacity: 1; transform: none; }
    .reveal.d1 { transition-delay: 0.09s; }
    .reveal.d2 { transition-delay: 0.18s; }
    .reveal.d3 { transition-delay: 0.27s; }
}

/* ── floating doodles ──────────────────────────────────────────────────── */

.doodle { position: absolute; z-index: 0; pointer-events: none; }
.doodle svg { display: block; }

@media (prefers-reduced-motion: no-preference) {
    .doodle { animation: bob 6s ease-in-out infinite; }
    .doodle.sway { animation: sway 7.5s ease-in-out infinite; }
    .doodle.spin { animation: spin 24s linear infinite; }
    .doodle.dly { animation-delay: -2.4s; }
    .doodle.dly2 { animation-delay: -4.2s; }
}

@keyframes bob { 0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); } 50% { transform: translateY(-16px) rotate(calc(var(--r, 0deg) + 5deg)); } }
@keyframes sway { 0%, 100% { transform: translateX(0) rotate(var(--r, 0deg)); } 50% { transform: translateX(15px) rotate(calc(var(--r, 0deg) - 6deg)); } }
@keyframes spin { to { transform: rotate(360deg); } }

.hd-paw   { left: 3%;  bottom: 13%; --r: -12deg; width: 58px; }
.hd-yarn  { right: 4.5%; top: 15%; width: 62px; }
.hd-squig { right: 8%; bottom: 16%; --r: 5deg; width: 66px; }
.hd-dots  { right: 2%; bottom: 34%; --r: -8deg; }

@media (max-width: 920px) { .hd-squig, .hd-dots, .hd-yarn { display: none; } .hd-paw { bottom: 2%; } }

/* ── app process (dark 4-step) ─────────────────────────────────────────── */

.process {
    position: relative;
    background: linear-gradient(162deg, var(--teal-900), #0c1f24);
    color: #eef6f2;
    padding: 90px 0 96px;
    overflow: hidden;
}

.process .doodle svg path { stroke: rgba(238, 246, 242, 0.18); }
.process .pd-1 { top: 40px; right: 6%; --r: 8deg; }
.process .pd-2 { bottom: 40px; left: 4%; --r: -10deg; }

.process .section-head { max-width: 40ch; margin-bottom: 44px; }
.process .kicker { background: transparent; color: var(--sun); border: 2px solid rgba(251, 201, 74, 0.5); }
.process .kicker::before { filter: sepia(1) saturate(5) hue-rotate(2deg) brightness(1.15); }
.process h2 { color: #fbfdfb; font-size: clamp(30px, 3.8vw, 44px); }

.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.proc-step {
    position: relative;
    padding: 26px 20px 18px;
    border-top: 3px dotted rgba(238, 246, 242, 0.16);
    overflow: hidden;
}

.proc-step .ghost {
    position: absolute;
    top: 10px;
    right: 8px;
    z-index: 0;
    font-family: var(--display);
    font-weight: 700;
    font-size: 88px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(238, 246, 242, 0.055);
}

.proc-step .p-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 163, 154, 0.16);
    color: var(--teal-bright);
    margin-bottom: 20px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}

.proc-step:hover .p-icon { transform: translateY(-4px) rotate(-6deg); background: var(--sun); color: var(--teal-900); }

.proc-step h3 { position: relative; z-index: 1; font-size: 20px; color: #fbfdfb; margin-bottom: 8px; }
.proc-step p { position: relative; z-index: 1; font-size: 14.5px; font-weight: 500; color: rgba(238, 246, 242, 0.72); }

@media (max-width: 920px) { .proc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 520px) { .proc-grid { grid-template-columns: 1fr; } }

/* ── stats: numbers & bars that fill on scroll ─────────────────────────── */

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 44px; }

.stat {
    background: var(--card);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px 20px;
    text-align: center;
}

.stat .num { font-family: var(--display); font-weight: 600; font-size: clamp(38px, 4.4vw, 50px); color: var(--teal); line-height: 1; }
.stat .num .suf { color: var(--coral); }
.stat .lbl { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); margin-top: 10px; }

.score-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--card);
    border: 2px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-pop);
    padding: 30px 34px;
}

.score-card .sc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.score-card .sc-avatar {
    width: 54px; height: 54px; border-radius: 16px; flex-shrink: 0;
    background: var(--sun-soft); display: flex; align-items: center; justify-content: center; font-size: 28px;
    transform: rotate(-5deg);
}
.score-card .sc-name { font-family: var(--display); font-weight: 600; font-size: 19px; color: var(--teal-900); }
.score-card .sc-sub { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.score-card .sc-overall { margin-left: auto; text-align: right; }
.score-card .sc-overall b { font-family: var(--display); font-weight: 600; font-size: 34px; color: var(--teal-bright); line-height: 1; }
.score-card .sc-overall span { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }

.bars { display: grid; gap: 18px; }
.bar-row .bar-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.bar-row .bar-top .lbl { font-weight: 800; font-size: 14.5px; color: var(--ink); }
.bar-row .bar-top .pct { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--coral-deep); }

.bars .bar { height: 15px; background: var(--mint-deep); border-radius: 999px; overflow: hidden; }
.bars .bar > i { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--teal-bright), var(--teal)); transition: width 1.3s cubic-bezier(0.2, 0.7, 0.3, 1); }
.bars .bar.warm > i { background: linear-gradient(90deg, var(--sun), var(--coral)); }
.stats-band.in .bars .bar > i { width: var(--val); }

@media (max-width: 920px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } .score-card { padding: 24px 20px; } .score-card .sc-overall { margin-left: 0; } }

/* ── back-to-top button ────────────────────────────────────────────────── */

.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    border: 3px solid var(--card);
    box-shadow: var(--shadow-pop);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px) scale(0.9);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s;
}

.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--coral-deep); transform: translateY(-3px); }
.to-top svg { width: 24px; height: 24px; }

@media (prefers-reduced-motion: reduce) { .doodle { animation: none !important; } }

/* ═══════════════════════════════════════════════════════════════════════
   v2 — app-first redo: logo, real screenshots, trust, showcase,
   testimonials, FAQ, download CTA, rich footer
   ═══════════════════════════════════════════════════════════════════════ */

/* brand logo */
.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; display: block; }
@media (max-width: 560px) { .brand-logo { height: 38px; } }

/* button sizes & ghost variant */
.btn-lg { padding: 15px 30px; font-size: 17px; }
.btn-ghost { background: transparent; color: var(--ink-soft); box-shadow: none; }
.btn-ghost:hover { background: var(--cream-deep); color: var(--teal); transform: none; box-shadow: none; }
.btn-ghost:active { transform: translateY(1px); box-shadow: none; }

/* app-store badges */
.store-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.store-hint { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.store-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.store-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--teal-900); color: #fff;
    border-radius: 13px; padding: 8px 15px;
    box-shadow: 0 8px 18px -10px rgba(18, 47, 53, 0.7);
}
.store-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.06; text-align: left; }
.store-badge .sb-text small { font-size: 9px; font-weight: 600; letter-spacing: 0.03em; opacity: 0.82; }
.store-badge .sb-text b { font-family: var(--display); font-weight: 600; font-size: 15px; }

/* trust strip */
.trust { background: var(--card); border-top: 2px solid var(--line); border-bottom: 2px solid var(--line); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 30px; padding: 18px 28px; }
.trust-item { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 14.5px; color: var(--teal-900); }
.trust-item svg { color: var(--coral); flex-shrink: 0; }
@media (max-width: 760px) { .trust-row { justify-content: center; } }

/* hero copy + phone visual */
.hero-visual { position: relative; display: flex; justify-content: center; min-height: 0; }

.phone { display: block; width: 100%; height: auto; border-radius: 30px; box-shadow: 0 30px 62px -26px rgba(31, 81, 89, 0.55); }
.phone-hero { position: relative; z-index: 1; max-width: 320px; transform: rotate(2deg); }
@media (prefers-reduced-motion: no-preference) { .phone-hero { animation: phone-float 7s ease-in-out infinite; } }
@keyframes phone-float { 0%, 100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-11px); } }

.phone-glow { position: absolute; inset: 4% 8%; border-radius: 50%; z-index: 0; background: radial-gradient(circle, var(--mint-deep), transparent 68%); filter: blur(8px); }
.phone-glow.warm { background: radial-gradient(circle, var(--sun-soft), transparent 68%); }

.hero-visual .float-2 { top: 4%; left: -3%; right: auto; bottom: auto; }
.hero-visual .float-1 { bottom: 9%; right: -3%; left: auto; top: auto; }
.hero-visual .stamp-1 { top: -14px; right: 10%; }

@media (max-width: 920px) {
    .hero-copy { text-align: center; }
    .hero-copy .kicker { }
    .hero-ctas, .hero-copy .store-row { justify-content: center; }
    .hero .lede { margin-left: auto; margin-right: auto; }
    .hero-visual { margin-top: 8px; }
}
@media (max-width: 480px) {
    .hero-visual .float-1, .hero-visual .float-2 { position: static; margin: 12px auto 0; max-width: 260px; }
    .hero-visual { flex-wrap: wrap; }
}

/* app showcase */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.showcase + .showcase { margin-top: 46px; }
.showcase.reverse .show-visual { order: 2; }
.show-visual { position: relative; display: flex; justify-content: center; }
.show-visual .phone { max-width: 288px; transform: rotate(-2deg); }
.showcase.reverse .show-visual .phone { transform: rotate(2deg); }
.show-copy h3 { font-size: clamp(25px, 3vw, 34px); color: var(--teal-900); margin: 14px 0 12px; }
.show-copy p { color: var(--ink-soft); font-size: 16.5px; font-weight: 500; margin-bottom: 18px; }

.pill-mini { display: inline-block; font-family: var(--display); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--teal); background: var(--teal-100); padding: 4px 13px; border-radius: 999px; }
.pill-mini.warm { color: var(--coral-deep); background: var(--coral-soft); }

.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; font-weight: 600; }
.check-list .tick { width: 24px; height: 24px; flex-shrink: 0; margin-top: 1px; border-radius: 50%; background: var(--teal-bright); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 0 color-mix(in srgb, var(--teal-bright) 55%, var(--teal-900)); }

@media (max-width: 860px) {
    .showcase { grid-template-columns: 1fr; gap: 30px; }
    .showcase.reverse .show-visual { order: 0; }
    .show-copy { text-align: center; }
    .check-list { max-width: 430px; margin: 0 auto; }
}

/* testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: var(--card); border: 2px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 24px; }
.quote .stars { color: var(--sun-deep); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.quote blockquote { font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.55; margin-bottom: 18px; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote .q-avatar { width: 46px; height: 46px; border-radius: 14px; background: var(--mint); display: flex; align-items: center; justify-content: center; font-size: 25px; transform: rotate(-5deg); flex-shrink: 0; }
.quote figcaption span { display: flex; flex-direction: column; font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.quote figcaption b { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--teal-900); }
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; } }

/* FAQ accordion */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { display: grid; gap: 12px; }
.faq details { background: var(--card); border: 2px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--teal-900); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq .chev { width: 11px; height: 11px; border-right: 2.5px solid var(--coral); border-bottom: 2.5px solid var(--coral); transform: rotate(45deg); transition: transform 0.2s; flex-shrink: 0; margin-top: -4px; }
.faq details[open] .chev { transform: rotate(-135deg); margin-top: 2px; }
.faq details[open] summary { color: var(--coral-deep); }
.faq .faq-body { padding: 0 22px 20px; color: var(--ink-soft); font-size: 15px; font-weight: 500; }

/* download CTA (light) */
.get-app { padding: 34px 0 74px; }
.get-inner {
    position: relative;
    background: linear-gradient(150deg, var(--mint), var(--sun-soft));
    border: 2px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 50px 52px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
    overflow: hidden;
}
.get-copy h2 { font-size: clamp(28px, 3.6vw, 40px); color: var(--teal-900); margin: 12px 0 12px; }
.get-copy p { color: var(--ink-soft); font-size: 16.5px; font-weight: 500; max-width: 46ch; margin-bottom: 22px; }
.get-actions { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.get-actions .store-row { margin-top: 0; }
.get-visual { position: relative; display: flex; justify-content: center; }
.get-visual .phone { max-width: 250px; border-radius: 0; box-shadow: none; transform: rotate(2deg); filter: drop-shadow(0 26px 42px rgba(31, 81, 89, 0.42)); }
.ga-dood { bottom: 6%; left: 40%; }
@media (max-width: 860px) {
    .get-inner { grid-template-columns: 1fr; text-align: center; padding: 38px 24px; }
    .get-actions { align-items: center; }
    .get-visual { display: none; }
    /* move the paw out of the way of the store buttons */
    .ga-dood { top: 12px; right: 14px; left: auto; bottom: auto; opacity: 0.6; }
    .ga-dood svg { width: 52px; height: 52px; }
}

/* footer (dark) */
.site-foot { background: linear-gradient(160deg, var(--teal-900), #0c1f24); color: #eef6f2; border: none; padding: 62px 0 28px; }
.foot-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 34px; padding-bottom: 34px; border-bottom: 1px solid rgba(238, 246, 242, 0.14); }
.foot-brand .foot-logo { height: 40px; width: auto; background: #fff; padding: 8px 13px; border-radius: 12px; }
.foot-brand p { margin: 16px 0; font-size: 14.5px; font-weight: 500; color: rgba(238, 246, 242, 0.72); max-width: 34ch; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(238, 246, 242, 0.1); color: #eef6f2; transition: background 0.2s, transform 0.2s; }
.socials a:hover { background: var(--coral); transform: translateY(-3px); }
.foot-col h5, .foot-get h5 { font-family: var(--display); font-weight: 600; font-size: 15px; margin-bottom: 14px; color: #fff; }
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14.5px; font-weight: 600; color: rgba(238, 246, 242, 0.72); }
.foot-col a:hover { color: var(--sun); }
.foot-get p { font-size: 13.5px; font-weight: 500; color: rgba(238, 246, 242, 0.72); margin-bottom: 14px; }
.site-foot .store-badges { flex-direction: column; }
.site-foot .store-badge { background: rgba(238, 246, 242, 0.09); border: 1px solid rgba(238, 246, 242, 0.18); box-shadow: none; }
.foot-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-family: var(--mono); font-size: 12px; color: rgba(238, 246, 242, 0.6); }
.foot-bar .foot-credit { color: var(--sun); font-weight: 700; }
.foot-bar .foot-credit:hover { color: #fff; text-decoration: underline; }
.foot-bar nav { display: flex; gap: 18px; }
.foot-bar nav a { color: rgba(238, 246, 242, 0.6); font-size: 12px; font-weight: 400; }
.foot-bar nav a:hover { color: #fff; }
@media (max-width: 860px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 520px) { .foot-top { grid-template-columns: 1fr; } }

/* curvy wave dividers into the dark sections */
.wave-divider {
    display: block;
    width: 100%;
    height: 74px;
    line-height: 0;
    margin-bottom: -1px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 100%;
}
.wave-divider.into-process {
    background-color: var(--mint);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 74' preserveAspectRatio='none'%3E%3Cpath fill='%230e2f33' d='M0,38 C220,2 430,66 720,42 C1000,19 1200,62 1440,32 L1440,74 L0,74 Z'/%3E%3C/svg%3E");
}
.wave-divider.into-dark {
    background-color: var(--cream);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 74' preserveAspectRatio='none'%3E%3Cpath fill='%230e2f33' d='M0,38 C220,2 430,66 720,42 C1000,19 1200,62 1440,32 L1440,74 L0,74 Z'/%3E%3C/svg%3E");
}
@media (max-width: 600px) { .wave-divider { height: 46px; } }

/* scattered brand-icon doodles (real PetPass pattern icons) */
section.deco { position: relative; }
.deco > .wrap { position: relative; z-index: 1; }
.sec-doodles { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.sec-doodles .doodle { position: absolute; color: var(--teal); opacity: 0.1; }
.sec-doodles .doodle svg { display: block; width: 100%; height: auto; }
.sec-doodles .doodle.accent { opacity: 0.5; }

.sd-1 { top: 7%;   left: 2%;   width: 54px; --r: -8deg; }
.sd-2 { top: 12%;  right: 3%;  width: 60px; --r: 9deg; }
.sd-3 { top: 45%;  left: 1%;   width: 46px; --r: 5deg; }
.sd-4 { top: 52%;  right: 2%;  width: 56px; --r: -7deg; }
.sd-5 { bottom: 8%;  left: 4%; width: 58px; --r: 6deg; }
.sd-6 { bottom: 11%; right: 5%; width: 50px; --r: -11deg; }
.sd-7 { top: 26%;  left: 44%;  width: 40px; --r: 4deg; }

@media (max-width: 760px) { .sec-doodles .doodle { transform: scale(0.72); transform-origin: center; } }

/* hero product mockup */
.hero-mockup { position: relative; z-index: 1; display: block; width: 100%; max-width: 500px; height: auto; margin: 0 auto; filter: drop-shadow(0 26px 46px rgba(14, 47, 51, 0.3)); }
@media (prefers-reduced-motion: no-preference) { .hero-mockup { animation: float-b 8s ease-in-out infinite; } }

/* icon-doodles that size from their wrapper */
.doodle.di svg { display: block; width: 100%; height: auto; }

/* ═══════════════════════════════════════════════════════════════════════
   Nav dropdown (Vets & stores) + places pages (map, filter, listings)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── nav dropdown ──────────────────────────────────────────────────────── */
.navdrop { position: relative; }
.navdrop-toggle {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: var(--sans); font-size: 15px; font-weight: 700;
    color: var(--ink-soft); background: none; border: none; padding: 0;
    cursor: pointer; transition: color 0.15s;
}
.navdrop-toggle .caret { transition: transform 0.2s; }
.navdrop:hover .navdrop-toggle, .navdrop-toggle.is-active, .navdrop:focus-within .navdrop-toggle { color: var(--coral-deep); }
.navdrop:hover .caret, .navdrop:focus-within .caret { transform: rotate(180deg); }
.navdrop::after { content: ''; position: absolute; top: 100%; left: -14px; right: -14px; height: 16px; }
.navdrop-menu {
    position: absolute; top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 204px; background: var(--card);
    border: 2px solid var(--line); border-radius: 16px;
    box-shadow: var(--shadow-pop); padding: 8px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease; z-index: 60;
}
.navdrop:hover .navdrop-menu, .navdrop:focus-within .navdrop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.navdrop-menu a { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 11px; font-weight: 700; font-size: 15px; color: var(--teal-900); transition: background 0.15s, color 0.15s; }
.navdrop-menu a svg { width: 24px; height: 24px; color: var(--teal-bright); flex-shrink: 0; transition: transform 0.2s, color 0.15s; }
.navdrop-menu a:hover, .navdrop-menu a[aria-current="page"] { background: var(--coral-soft); color: var(--coral-deep); }
.navdrop-menu a:hover svg, .navdrop-menu a[aria-current="page"] svg { color: var(--coral-deep); transform: rotate(-8deg) scale(1.1); }

/* ── places hero + Namibia map ─────────────────────────────────────────── */
/* compact playful hero for interior pages (e.g. Features) */
.hero-dark.hero-compact { padding: 46px 0 150px; }
.hero-compact h1 { font-size: clamp(28px, 4.6vw, 44px); }
.hero-compact .hd-dog { height: auto; width: clamp(184px, 23vw, 286px); right: 7.5%; bottom: 0; filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.32)); }
.hero-compact .hd-mark1 { top: 13%; right: 34%; width: 52px; }
.hero-compact .hd-l1 { top: 12%; left: 3%; }
.hero-compact .hd-l2 { bottom: 40%; left: 5%; }

/* "see it in action" — an interactive phone you can swipe through */
.app-peek { padding: 60px 0 72px; }
.app-peek .section-head { margin-bottom: 38px; }

.phone-demo { position: relative; display: flex; align-items: center; justify-content: center; gap: clamp(10px, 3vw, 30px); }

.phone-case {
    position: relative; flex: 0 0 auto;
    width: min(288px, 76vw); aspect-ratio: 375 / 812;
    background: #141c1e; border-radius: 46px; padding: 11px;
    box-shadow: 0 34px 66px -22px rgba(20, 55, 60, 0.55), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.phone-case::after { /* side button */
    content: ''; position: absolute; right: -3px; top: 27%; width: 3px; height: 58px; border-radius: 3px; background: #0c1213;
}

.phone-screen { position: relative; width: 100%; height: 100%; background: var(--cream); border-radius: 35px; overflow: hidden; }

.pd-track {
    display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; cursor: grab; touch-action: pan-x;
}
.pd-track::-webkit-scrollbar { display: none; }
.pd-track.dragging { cursor: grabbing; scroll-behavior: auto; }
.pd-slide { flex: 0 0 100%; height: 100%; scroll-snap-align: center; }
.pd-shot { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; user-select: none; -webkit-user-drag: none; }

.pd-nav {
    flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
    background: var(--card); border: 1.5px solid var(--line); color: var(--teal-900);
    display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow);
    transition: background 0.15s, color 0.15s, transform 0.15s;
}
.pd-nav:hover { background: var(--coral-soft); color: var(--coral-deep); }
.pd-nav:active { transform: scale(0.94); }
.pd-nav svg { width: 22px; height: 22px; }
.pd-nav:disabled { opacity: 0.32; cursor: default; box-shadow: none; }
.pd-nav:disabled:hover { background: var(--card); color: var(--teal-900); }

.pd-dots { display: flex; justify-content: center; gap: 9px; margin-top: 24px; }
.pd-dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: var(--line); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.pd-dot.is-active { background: var(--coral); transform: scale(1.3); }

@media (max-width: 560px) {
    .pd-nav { display: none; } /* swipe + dots carry it on touch */
}

.places-hero {
    position: relative; overflow: hidden; padding: 56px 0 44px;
    background:
        radial-gradient(58% 50% at 86% 12%, var(--sun-soft), transparent 60%),
        radial-gradient(50% 46% at 4% 24%, var(--mint), transparent 60%);
}
.places-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.places-intro .kicker { position: relative; z-index: 1; }
.places-intro h1 { font-size: clamp(34px, 4.6vw, 52px); color: var(--teal-900); margin: 16px 0 16px; line-height: 1.04; }
.places-intro h1 em { font-style: normal; color: var(--coral); }
.places-intro .lede { font-size: 17.5px; font-weight: 500; color: var(--ink-soft); max-width: 46ch; margin-bottom: 24px; }
.map-hint { margin-top: 16px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; color: var(--ink-mute); }

.nam-map { position: relative; width: 100%; max-width: 450px; margin: 0 auto; aspect-ratio: 1 / 1; }
.nam-shape { width: 100%; height: 100%; display: block; filter: drop-shadow(0 16px 30px rgba(14, 47, 51, 0.16)); }
.nam-shape path { fill: #c4dcd7; }

.map-dot { position: absolute; transform: translate(-50%, -50%); background: none; border: none; padding: 0; cursor: pointer; }
.map-dot .dot { display: block; width: 14px; height: 14px; border-radius: 50%; background: var(--coral); border: 2.5px solid #fff; box-shadow: 0 2px 6px rgba(14, 47, 51, 0.3); transition: transform 0.15s; position: relative; }
.map-dot .dot::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid var(--coral); opacity: 0.5; animation: mapping 2.6s ease-out infinite; }
@keyframes mapping { 0% { transform: scale(1); opacity: 0.5; } 70%, 100% { transform: scale(2.3); opacity: 0; } }
.map-dot .dot-label {
    position: absolute; left: 50%; bottom: calc(100% + 7px); transform: translateX(-50%);
    white-space: nowrap; font-family: var(--display); font-weight: 600; font-size: 12px;
    color: var(--teal-900); background: var(--card); border: 1.5px solid var(--line);
    padding: 2px 9px; border-radius: 999px; opacity: 0; transition: opacity 0.15s;
    pointer-events: none; box-shadow: var(--shadow);
}
.map-dot:hover .dot, .map-dot.is-active .dot { transform: scale(1.4); }
.map-dot:hover .dot-label, .map-dot.is-active .dot-label { opacity: 1; }
.map-dot.is-active .dot { background: var(--sun); border-color: #fff; box-shadow: 0 0 0 5px color-mix(in srgb, var(--sun) 32%, transparent); }
.map-dot.is-active .dot::after { border-color: var(--sun); }

@media (max-width: 860px) {
    .places-hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .places-intro { text-align: center; }
    .places-intro .lede { margin-left: auto; margin-right: auto; }
    .nam-map { max-width: 360px; }
}
@media (prefers-reduced-motion: reduce) { .map-dot .dot::after { animation: none; } }

/* ── listing toolbar + town select ─────────────────────────────────────── */
.places-toolbar { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.pt-left h2 { font-size: clamp(26px, 3vw, 36px); color: var(--teal-900); }
.pt-left .result-count { display: block; margin-top: 6px; font-weight: 700; font-size: 14px; color: var(--ink-soft); }
.town-picker { display: flex; flex-direction: column; gap: 7px; }
.town-picker > span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.town-select {
    appearance: none; -webkit-appearance: none;
    font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--teal-900);
    background-color: var(--card); border: 2px solid var(--line-strong); border-radius: 12px;
    padding: 12px 44px 12px 16px; cursor: pointer; min-width: 230px;
    box-shadow: 0 4px 0 var(--line-strong);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e35d5a' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
.town-select:focus { outline: none; border-color: var(--teal); box-shadow: 0 4px 0 var(--teal-100); }

/* ── place cards ───────────────────────────────────────────────────────── */
.place-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.place-card { background: var(--card); border: 2px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px 22px 18px; display: flex; flex-direction: column; transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.18s ease; }
.place-card[hidden] { display: none !important; }
.pc-meta .pc-open:only-child { margin-left: 0; }
.place-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.place-card .pc-head { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.place-card .chip { width: 46px; height: 46px; border-radius: 14px; color: #fff; font-family: var(--display); font-weight: 600; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transform: rotate(-4deg); }
.place-card h3 { font-size: 18px; color: var(--teal-900); line-height: 1.14; }
.pc-town { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin-top: 4px; }
.pc-town svg { width: 15px; height: 15px; color: var(--coral); flex-shrink: 0; }
.pc-meta { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 11px; }
.pc-meta .stars { font-family: var(--mono); color: var(--sun-deep); }
.pc-meta .pc-dot { color: var(--line-strong); }
.pc-meta .pc-open { margin-left: auto; color: var(--teal-bright); font-weight: 800; }
.pc-meta .pc-open.delivers { color: var(--coral-deep); }
.pc-addr { display: flex; align-items: flex-start; gap: 7px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); margin-bottom: 16px; }
.pc-addr svg { color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.pc-actions { display: flex; gap: 10px; margin-top: auto; }
.pc-actions .btn { flex: 1; }
.no-results { text-align: center; font-size: 17px; font-weight: 600; color: var(--ink-soft); padding: 46px 20px; }

@media (max-width: 920px) { .place-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .place-grid { grid-template-columns: 1fr; } .places-toolbar { flex-direction: column; align-items: stretch; } .town-select { width: 100%; } }

/* ── warm hero: pet photo on a coral circle + the app ──────────────────── */
.hero-visual { position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 470px; }

.hero-circle {
    position: absolute;
    z-index: 0;
    width: 352px;
    height: 352px;
    border-radius: 50%;
    left: 52%;
    top: 47%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 36% 28%, #f08a7e, var(--coral) 80%);
    box-shadow: 0 26px 54px -20px rgba(227, 93, 90, 0.55);
}
.hero-circle::after {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 3px dashed rgba(47, 157, 148, 0.4);
}

.hero-dog {
    position: relative;
    z-index: 1;
    width: min(440px, 100%);
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 22px rgba(14, 47, 51, 0.26));
}

.hero-app {
    position: absolute;
    z-index: 2;
    width: 150px;
    height: auto;
    left: 0;
    bottom: 5%;
    border-radius: 22px;
    border: 5px solid #fff;
    box-shadow: var(--shadow-pop);
    transform: rotate(-7deg);
}

.hero-fc { position: absolute; z-index: 3; top: 8%; right: -2%; }

@media (prefers-reduced-motion: no-preference) {
    .hero-dog { animation: float-b 7s ease-in-out infinite; }
    .hero-app { animation: float-b 8s 0.6s ease-in-out infinite; }
    .hero-fc { animation: float-b 9s 0.3s ease-in-out infinite; }
}

@media (max-width: 920px) { .hero-visual { min-height: 420px; margin-top: 12px; } }
@media (max-width: 480px) {
    .hero-circle { width: 270px; height: 270px; }
    .hero-dog { width: 300px; }
    .hero-app { width: 116px; left: -2%; }
    .hero-fc { top: 2%; right: 0; }
    .hero-fc { max-width: 190px; }
}

/* ── hero: transparent art panel + headline (responsive) ───────────────── */
.hero-banner-hero {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    padding: 40px 0 48px;
}
.hero-banner-hero::before { display: none; }
.hero-banner-hero .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}
.hero-art-wrap { display: flex; justify-content: center; }
/* ── hero: full-colour teal block with wave (PetFood-style) ────────────── */
.hero-dark {
    position: relative;
    overflow: hidden;
    padding: 100px 0 190px;
    background:
        radial-gradient(70% 85% at 82% 8%, rgba(47, 157, 148, 0.4), transparent 62%),
        linear-gradient(160deg, #1c565e, var(--teal) 55%, #0f3237);
}
.hero-dark::before { display: none; }
.hero-dark .wrap {
    position: relative; z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 10fr) minmax(0, 8fr);
    gap: 40px;
    align-items: center;
}
.hero-dark h1 { color: #fff; font-size: clamp(32px, 4.1vw, 50px); }
.hero-dark h1 em { color: var(--coral); }
.hero-dark h1 em::after { display: none; }
.hero-dark .lede { color: rgba(238, 246, 242, 0.86); font-size: 17px; }
.hero-dark .kicker { background: rgba(227, 93, 90, 0.18); color: #f6aaa4; }
.hero-dark .btn-primary { background: var(--coral); color: #fff; box-shadow: 0 5px 0 var(--coral-deep); }
.hero-dark .btn-primary:hover { background: #ea6f6a; box-shadow: 0 7px 0 var(--coral-deep); }
.hero-dark .btn-outline { background: transparent; border-color: rgba(238, 246, 242, 0.45); color: #eef6f2; box-shadow: 0 5px 0 rgba(0, 0, 0, 0.28); }
.hero-dark .btn-outline:hover { border-color: #fff; color: #fff; }
.hero-dark .store-hint { color: rgba(238, 246, 242, 0.6); }
.hero-dark .store-badge { background: rgba(238, 246, 242, 0.1); border: 1px solid rgba(238, 246, 242, 0.22); box-shadow: none; }

.hd-dog {
    position: absolute; z-index: 1;
    bottom: 0; right: 7%;
    height: 88%; width: auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}
.hd-mark1 { position: absolute; z-index: 2; top: 13%; right: 36%; width: 58px; --r: 14deg; }
.hd-mark2 { position: absolute; z-index: 2; top: 34%; right: 3.5%; width: 62px; --r: -12deg; }

/* floating shapes on the left side */
.hd-l1 { position: absolute; z-index: 2; top: 9%; left: 2%; width: 48px; --r: -14deg; opacity: 0.3; }
.hd-l2 { position: absolute; z-index: 2; bottom: 32%; left: 2.5%; width: 42px; --r: 10deg; }
.hd-l3 { position: absolute; z-index: 2; top: 6%; left: 30%; width: 38px; opacity: 0.25; }
.hd-l4 { position: absolute; z-index: 2; bottom: 27%; left: 41%; width: 40px; --r: -8deg; opacity: 0.35; }

.hd-wave {
    position: absolute; z-index: 3;
    left: 0; right: 0; bottom: -1px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
}
.hd-wave-sun {
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150' preserveAspectRatio='none'%3E%3Cpath fill='%23e35d5a' d='M0,95 C230,20 470,145 760,82 C1030,25 1260,65 1440,18 L1440,150 L0,150 Z'/%3E%3C/svg%3E");
}
.hd-wave-cream {
    height: 112px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 112' preserveAspectRatio='none'%3E%3Cpath fill='%23fdf6ec' d='M0,92 C260,30 540,118 850,72 C1120,33 1330,80 1440,48 L1440,112 L0,112 Z'/%3E%3C/svg%3E");
}

@media (max-width: 900px) {
    .hero-dark { padding: 34px 0 120px; }
    .hero-dark .wrap { grid-template-columns: 1fr; gap: 12px; }
    .hero-dark .hero-copy { text-align: center; }
    .hero-dark .hero-ctas, .hero-dark .store-row { justify-content: center; }
    .hero-dark .lede { margin-left: auto; margin-right: auto; }
    .hd-dog { position: relative; display: block; height: auto; width: 62%; max-width: 330px; right: auto; margin: 14px auto -52px; }
    /* scatter the doodles as playful accents — corners + around the dog, clear of the heading */
    .hd-mark1, .hd-mark2, .hd-l1, .hd-l2, .hd-l4 { display: block; }
    .hd-mark1 { top: 2.5%; left: 5%; right: auto; width: 30px; }
    .hd-l1    { top: 2.5%; right: 6%; left: auto; width: 30px; }
    .hd-l3    { display: none; } /* dead-centre top — would sit on the heading */
    .hd-mark2 { top: auto; bottom: 20%; right: 5%; width: 34px; }
    .hd-l2    { bottom: 30%; left: 4%; width: 30px; }
    .hd-l4    { bottom: 24%; left: 44%; width: 30px; }
}

@media (max-width: 900px) {
    .hero-banner-hero { padding: 28px 0 30px; }
    .hero-banner-hero .wrap { grid-template-columns: 1fr; gap: 20px; }
    .hero-banner-hero .hero-copy { text-align: center; }
    .hero-banner-hero .hero-ctas, .hero-banner-hero .store-row { justify-content: center; }
    .hero-banner-hero .lede { margin-left: auto; margin-right: auto; }
    .hero-art { max-width: 460px; }
}
