@font-face {
    font-family: "IowanOldSt BT";
    src: url("fonts/IowanOldStBT-Roman.311ab1bcd75e.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Tinos";
    src: url("fonts/Tinos-Regular.9399a8d32ba9.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("fonts/Inter-Regular.e092f17f85b5.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("fonts/Inter-Medium.cd9ac96043f1.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("fonts/Inter-Bold.a06d959f6e5f.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("fonts/InterDisplay-Regular.5ec39af341bf.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("fonts/InterDisplay-Medium.20dd30212610.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("fonts/InterDisplay-SemiBold.a7f1d7f72c36.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f8f1e5;
    --nav-cream: #fffaee;
    --ink: #090706;
    --brown: #1a0e0a;
    --btn-dark: #1d0d07;
    --muted: #534b46;
    --media-placeholder: #908d87;
    --radius-card: 12px;
    --serif-display: "IowanOldSt BT", "Iowan Old Style", Georgia, serif;
    --serif-name: "Tinos", "Times New Roman", serif;
    --sans: "Inter Display", Inter, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, sans-serif;
    --sans-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
    --gutter: clamp(20px, 5.5vw, 80px);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--btn-dark);
    color: var(--nav-cream);
    border-radius: 999px;
    padding: 12px 24px;
    font-family: var(--sans-ui);
    font-size: 15px;
    font-weight: 500;
}

/* Nav */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--nav-cream);
    border-bottom: 1px solid rgba(9, 7, 6, 0.1);
    padding: 0 clamp(16px, 2.8vw, 40px);
}

.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    max-width: 1280px;
    margin: 0 auto;
}

.brand img {
    display: block;
    width: 118px;
    height: 32px;
}

.nav-links {
    display: none;
    gap: 32px;
    font-family: var(--sans-ui);
    font-size: 16px;
    letter-spacing: -0.02em;
}

.nav-cta {
    padding: 8px 20px;
    height: 48px;
    white-space: nowrap;
}

.nav-cta svg {
    width: 22px;
    height: 22px;
    flex: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* Listing hero */

.hero {
    position: relative;
    height: min(66vh, 660px);
    min-height: 420px;
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
}

.hero h1 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: var(--serif-display);
    font-size: clamp(44px, 5vw, 66px);
    font-weight: 400;
    letter-spacing: -2px;
    color: #fff;
    text-align: center;
}

/* Walker grid */

.walker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px var(--gutter) 88px;
}

@media (min-width: 720px) {
    .walker-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 960px) {
    .walker-grid {
        grid-template-columns: repeat(4, 1fr);
        column-gap: 25px;
        row-gap: 48px;
    }
}

.walker-card {
    display: block;
}

.card-media {
    position: relative;
    aspect-ratio: 302 / 385;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--media-placeholder);
}

.card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: var(--serif-name);
    font-size: 64px;
    color: rgba(255, 250, 238, 0.6);
}

.play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    cursor: pointer;
}

.play-badge svg {
    width: 26px;
    height: 26px;
    margin-left: 3px;
}

.card-id {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0 12px;
}

.card-avatar {
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 999px;
    overflow: hidden;
    background: #e3dccc;
}

.card-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    color: var(--muted);
}

.card-name {
    font-family: var(--serif-name);
    font-size: clamp(24px, 2.3vw, 32px);
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 0.95;
}

/* Personality + descriptor pills */

.pack-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(9, 7, 6, 0.06);
    border-radius: 28px;
    padding: 5px 17px 5px 5px;
    font-family: var(--sans-ui);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.35px;
    line-height: 1.05;
}

.pack-pill img {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 999px;
}

/* Profile */

.walker-profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1146px;
    margin: 0 auto;
    padding: 44px var(--gutter) 80px;
}

@media (min-width: 768px) {
    .walker-profile {
        grid-template-columns: 1fr 370px;
        gap: clamp(40px, 6vw, 84px);
        align-items: start;
    }
    .profile-details {
        max-width: 528px;
    }
}

.profile-media {
    position: relative;
    aspect-ratio: 370 / 600;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--media-placeholder);
}

.profile-media img,
.profile-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-media video {
    cursor: pointer;
}

.profile-media .play-badge {
    width: 74px;
    height: 74px;
}

.profile-media.is-playing .play-badge {
    display: none;
}

.profile-details h1 {
    margin: 0 0 20px;
    font-family: var(--serif-name);
    font-size: clamp(38px, 4vw, 46px);
    font-weight: 400;
    letter-spacing: -1.8px;
    line-height: 0.95;
}

.descriptors {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 16px 0 0;
}

.descriptors li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(9, 7, 6, 0.12);
    border-radius: 999px;
    padding: 9px 18px;
    font-family: var(--sans-ui);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.descriptors svg {
    width: 15px;
    height: 15px;
    flex: none;
}

.bio {
    margin: 26px 0 0;
    font-family: var(--sans-ui);
    font-size: 18px;
    line-height: 1.45;
    color: var(--muted);
}

.bio + .bio {
    margin-top: 18px;
}

.book-cta {
    margin-top: 34px;
}

.profile-divider {
    max-width: 1280px;
    margin: 0 auto 96px;
    border: 0;
    border-top: 1px solid rgba(9, 7, 6, 0.12);
}

/* Matching copy block (listing page) */

.match-block {
    text-align: center;
    padding: 40px 20px 130px;
}

.match-art {
    width: min(610px, 80vw);
    height: auto;
}

.match-block h2 {
    margin: 40px auto 0;
    max-width: 900px;
    font-family: var(--serif-display);
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 400;
    letter-spacing: -4px;
    line-height: 1.2;
    color: var(--brown);
}

.match-block p {
    max-width: 760px;
    margin: 28px auto 0;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(26, 14, 10, 0.8);
}

/* Footer */

.site-footer {
    background: var(--brown);
    color: var(--nav-cream);
    padding-top: 80px;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) {
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
}

.footer-column h3 {
    margin: 0 0 22px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 250, 238, 0.8);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin: 0 0 14px;
    font-size: 16px;
    color: #fff;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-park {
    display: block;
    width: 100%;
    height: clamp(200px, 31vw, 447px);
    object-fit: cover;
    object-position: bottom;
    margin-top: 72px;
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 28px var(--gutter) 44px;
}

.footer-bottom img {
    display: block;
    width: 118px;
    height: 32px;
}
