/* The Burrow product page — paper / Plushie Dreadfuls aesthetic
   Keeps Ensonova nav & footer dark, body is cream notebook paper. */

:root {
    --paper: #faf3e7;
    --paper-edge: #f1e6cf;
    --line: #d9c8a9;
    --ink: #1a1410;
    --ink-soft: #5a4d3e;
    --ink-faint: #8a7a63;
    --dreadful-red: #b40000;
    --dreadful-red-soft: #d54040;
    --dreadful-red-deep: #7a0000;
    --burrow-shadow: 0 18px 48px rgba(40, 25, 12, 0.18);
    --burrow-radius: 22px;
    --burrow-radius-sm: 14px;
    --font-handwritten: "Caveat", "Brush Script MT", cursive;
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body.burrow {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Subtle paper texture using layered radial gradients */
body.burrow::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(180, 140, 80, 0.08), transparent 60%),
        radial-gradient(800px 600px at 110% 110%, rgba(180, 0, 0, 0.04), transparent 60%),
        repeating-linear-gradient(0deg, transparent 0 38px, rgba(180,140,80,0.05) 38px 39px);
    pointer-events: none;
    z-index: 0;
}

/* Top navigation — kept dark to match Ensonova system */
.burrow-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #0a0a0b;
    border-bottom: 1px solid rgba(215, 166, 74, 0.18);
    padding: 16px 32px;
    backdrop-filter: blur(8px);
}
.burrow-nav__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.burrow-nav__brand {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: #f5f1ea;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.burrow-nav__brand a { color: inherit; text-decoration: none; }
.burrow-nav__divider {
    width: 1px;
    height: 14px;
    background: rgba(215, 166, 74, 0.4);
    align-self: center;
}
.burrow-nav__product {
    font-family: var(--font-handwritten);
    color: #d7a64a;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}
.burrow-nav__links { display: flex; align-items: center; gap: 22px; }
.burrow-nav__links a {
    color: #b8a888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}
.burrow-nav__links a:hover { color: #d7a64a; }

/* Hero */
.burrow-hero {
    position: relative;
    z-index: 1;
    padding: 96px 32px 64px;
    overflow: hidden;
}
.burrow-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.burrow-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dreadful-red);
}
.burrow-hero__eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--dreadful-red);
}
.burrow-hero__title {
    font-family: var(--font-handwritten);
    font-size: clamp(64px, 16vw, 144px);
    font-weight: 700;
    line-height: 0.85;
    color: var(--ink);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.burrow-hero__title em {
    font-style: normal;
    color: var(--dreadful-red);
}
.burrow-hero__by {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 14px 0 24px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
}
.burrow-hero__by img {
    height: 28px;
    width: auto;
    display: block;
}
.burrow-hero__deck {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 28px);
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
    max-width: 520px;
    margin: 0 0 16px;
}
.burrow-hero__lede {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 480px;
    margin: 0 0 32px;
}
.burrow-hero__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.burrow-hero__art {
    position: relative;
}
.burrow-hero__art-frame {
    position: relative;
    background: linear-gradient(160deg, #2a2624 0%, #1f1c1a 100%);
    border-radius: 28px;
    padding: 18px;
    box-shadow: var(--burrow-shadow);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}
.burrow-hero__art-frame:hover { transform: rotate(0deg); }
.burrow-hero__art-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.burrow-hero__art-tape {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 96px;
    height: 24px;
    background: rgba(180, 140, 80, 0.4);
    border-radius: 3px;
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Store buttons — paper-style with red accent */
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px 14px 18px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
    background: #2a221c;
}
.store-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.store-btn__small {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.7;
    display: block;
    line-height: 1.2;
}
.store-btn__big {
    font-size: 17px;
    font-weight: 700;
    display: block;
    line-height: 1.1;
}
.store-btn--coming {
    background: transparent;
    color: var(--ink);
    border: 1.5px dashed var(--ink-faint);
    box-shadow: none;
}
.store-btn--coming:hover {
    background: rgba(180, 140, 80, 0.08);
    color: var(--ink);
    border-color: var(--ink-soft);
}

/* Sections */
.burrow-section {
    position: relative;
    z-index: 1;
    padding: 80px 32px;
}
.burrow-section__container {
    max-width: 1100px;
    margin: 0 auto;
}
.burrow-section__eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dreadful-red);
    margin-bottom: 10px;
}
.burrow-section__title {
    font-family: var(--font-handwritten);
    font-size: clamp(40px, 9vw, 64px);
    font-weight: 700;
    line-height: 1;
    color: var(--ink);
    margin: 0 0 14px;
}
.burrow-section__lede {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 0 40px;
    line-height: 1.5;
}

/* Feature blocks (image + text alternating) */
.burrow-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 56px 0;
    border-bottom: 1px solid var(--line);
}
.burrow-feature:last-of-type { border-bottom: none; }
.burrow-feature--reverse .burrow-feature__media { order: 2; }
.burrow-feature--reverse .burrow-feature__copy { order: 1; }
.burrow-feature__copy h3 {
    font-family: var(--font-handwritten);
    font-size: clamp(30px, 7vw, 46px);
    font-weight: 700;
    line-height: 1;
    color: var(--ink);
    margin: 0 0 14px;
}
.burrow-feature__copy p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0 0 14px;
}
.burrow-feature__copy p:last-child { margin-bottom: 0; }
.burrow-feature__copy strong {
    color: var(--ink);
    font-weight: 600;
}
.burrow-feature__media {
    display: flex;
    justify-content: center;
}
.burrow-feature__phone {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(40, 25, 12, 0.22);
    background: var(--ink);
    transform: rotate(-1.2deg);
    transition: transform 0.4s ease;
}
.burrow-feature__phone img {
    width: 100%;
    height: auto;
    display: block;
}
.burrow-feature--reverse .burrow-feature__phone { transform: rotate(1.2deg); }
.burrow-feature__phone:hover { transform: rotate(0deg) translateY(-4px); }

/* Hand drawn paper divider — wave with center heart */
.burrow-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px auto;
    padding: 28px 32px;
    max-width: 800px;
}
.burrow-divider svg {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    opacity: 0.9;
}
@media (max-width: 540px) {
    .burrow-divider { padding: 20px 22px; }
    .burrow-divider svg { max-width: 180px; }
}

/* Privacy band */
.burrow-privacy-band {
    background: linear-gradient(180deg, var(--paper) 0%, var(--paper-edge) 100%);
    padding: 64px 32px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.burrow-privacy-band__inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
}
.burrow-privacy-band__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--dreadful-red);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.burrow-privacy-band__icon svg { width: 36px; height: 36px; }
.burrow-privacy-band h3 {
    font-family: var(--font-handwritten);
    font-size: 42px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 6px;
}
.burrow-privacy-band p {
    font-size: 16px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.6;
}

/* Plushie Dreadfuls callout */
.burrow-shop {
    padding: 80px 32px;
    text-align: center;
}
.burrow-shop__inner {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 56px 40px;
    box-shadow: var(--burrow-shadow);
    position: relative;
}
.burrow-shop__inner::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(180deg, transparent 60%, rgba(180, 0, 0, 0.04));
    pointer-events: none;
}
.burrow-shop__logo {
    width: 120px;
    height: auto;
    margin: 0 auto 18px;
    display: block;
}
.burrow-shop h2 {
    font-family: var(--font-handwritten);
    font-size: clamp(34px, 8vw, 52px);
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 12px;
    line-height: 1;
}
.burrow-shop p {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.burrow-shop a.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--dreadful-red);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 20px rgba(180,0,0,0.25);
}
.burrow-shop a.btn-red:hover {
    background: var(--dreadful-red-deep);
    transform: translateY(-2px);
}

/* Final CTA */
.burrow-cta {
    padding: 96px 32px;
    text-align: center;
}
.burrow-cta__container { max-width: 760px; margin: 0 auto; }
.burrow-cta h2 {
    font-family: var(--font-handwritten);
    font-size: clamp(44px, 12vw, 84px);
    font-weight: 700;
    line-height: 0.95;
    color: var(--ink);
    margin: 0 0 12px;
}
.burrow-cta h2 em {
    font-style: normal;
    color: var(--dreadful-red);
}
.burrow-cta p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 21px;
    color: var(--ink-soft);
    margin: 0 0 36px;
}
.burrow-cta__stores {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Footer — Ensonova dark to keep consistency */
.burrow-footer {
    background: #0a0a0b;
    color: #a8a08e;
    padding: 64px 32px 40px;
    position: relative;
    z-index: 1;
}
.burrow-footer__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.burrow-footer__brand h4 {
    font-family: var(--font-handwritten);
    font-size: 26px;
    color: #f5f1ea;
    margin: 0 0 6px;
}
.burrow-footer__brand p {
    color: #8a8273;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}
.burrow-footer__col h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #d7a64a;
    margin: 0 0 14px;
    font-weight: 600;
}
.burrow-footer__col a {
    display: block;
    color: #a8a08e;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}
.burrow-footer__col a:hover { color: #d7a64a; }
.burrow-footer__bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(215, 166, 74, 0.18);
    padding-top: 24px;
    font-size: 12px;
    color: #6b6354;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Responsive */
@media (max-width: 860px) {
    .burrow-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
    }
    .burrow-hero__eyebrow { justify-content: center; }
    .burrow-hero__by { justify-content: center; }
    .burrow-hero__deck, .burrow-hero__lede { margin-left: auto; margin-right: auto; }
    .burrow-hero__stores { justify-content: center; }
    .burrow-hero__art-frame { max-width: 360px; margin: 0 auto; }
    .burrow-feature { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
    .burrow-feature--reverse .burrow-feature__media { order: 0; }
    .burrow-feature--reverse .burrow-feature__copy { order: 0; }
    .burrow-feature__phone { max-width: 260px; }
    .burrow-feature__copy { text-align: center; }
    .burrow-privacy-band__inner { grid-template-columns: 1fr; text-align: center; gap: 18px; }
    .burrow-privacy-band__icon { margin: 0 auto; }
    .burrow-footer__container { grid-template-columns: 1fr 1fr; }
    .burrow-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
    .burrow-nav { padding: 12px 18px; }
    .burrow-nav__brand { gap: 8px; font-size: 14px; }
    .burrow-nav__product { font-size: 20px; }
    .burrow-nav__links { gap: 12px; }
    .burrow-nav__links a { font-size: 13px; }
    .burrow-hero { padding: 48px 18px 36px; }
    .burrow-hero__container { gap: 28px; }
    .burrow-hero__by img { height: 22px; }
    .burrow-hero__deck { font-size: 19px; }
    .burrow-hero__lede { font-size: 16px; }
    .burrow-hero__art-frame { max-width: 280px; padding: 14px; }
    .burrow-section { padding: 48px 18px; }
    .burrow-section__container { padding: 0; }
    .burrow-feature { padding: 28px 0; gap: 22px; }
    .burrow-feature__phone { max-width: 220px; }
    .burrow-feature__copy p { font-size: 16px; }
    .burrow-pullquote { padding: 36px 22px; }
    .burrow-privacy-band { padding: 48px 22px; }
    .burrow-privacy-band__icon { width: 64px; height: 64px; }
    .burrow-privacy-band__icon svg { width: 28px; height: 28px; }
    .burrow-shop { padding: 48px 18px; }
    .burrow-shop__inner { padding: 36px 22px; }
    .burrow-shop__logo { width: 92px; margin-bottom: 14px; }
    .burrow-shop p { font-size: 16px; }
    .burrow-cta { padding: 56px 18px; }
    .burrow-cta p { font-size: 18px; margin-bottom: 28px; }
    .store-btn { padding: 12px 18px 12px 14px; }
    .store-btn svg { width: 24px; height: 24px; }
    .store-btn__big { font-size: 15px; }
    .store-btn__small { font-size: 10px; }
    .burrow-footer { padding: 48px 22px 32px; }
    .burrow-footer__container { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
    .burrow-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Ultra-small phones (iPhone SE etc.) */
@media (max-width: 400px) {
    .burrow-hero { padding: 40px 16px 32px; }
    .burrow-hero__title { font-size: 60px; }
    .burrow-hero__art-frame { max-width: 240px; }
    .burrow-section { padding: 40px 16px; }
    .burrow-feature__phone { max-width: 200px; }
    .burrow-shop, .burrow-cta { padding: 40px 16px; }
    .burrow-shop__inner { padding: 32px 18px; }
}
