/* =============================================================
   PeptaPaws — Coming Soon Stylesheet
   Design DNA: PetPal template (fonts + structural patterns)
   Brand palette: PeptaPaws (navy / teal / warm gold)
============================================================= */

:root {
    --pp-body-font: 'Plus Jakarta Sans', sans-serif;
    --pp-heading-font: 'Baloo Bhaina 2', 'Plus Jakarta Sans', sans-serif;

    --pp-navy: #0B2545;
    --pp-navy-deep: #061A35;
    --pp-teal: #0F8C7E;
    --pp-teal-dark: #0A6F63;
    --pp-gold: #D4A24A;
    --pp-gold-light: #F4E4C2;
    --pp-cream: #FAFAF7;
    --pp-text: #2C3A50;
    --pp-text-muted: #6B7891;
    --pp-border: #E2E6EF;
    --pp-white: #FFFFFF;
    --pp-success: #1B9E6E;
    --pp-error: #D04C4C;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
    font-family: var(--pp-body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--pp-text);
    background-color: var(--pp-cream);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--pp-heading-font);
    color: var(--pp-navy);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.6em 0;
}

a { color: var(--pp-teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pp-teal-dark); }

/* =================== LAYOUT WRAPPERS ====================== */
.pp-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.pp-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =================== HEADER ============================== */
.pp-header {
    padding: 28px 0;
    position: relative;
    z-index: 5;
}

.pp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pp-logo {
    font-family: var(--pp-heading-font);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.5px;
    color: var(--pp-navy);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.pp-logo:hover { color: var(--pp-navy); }

/* Inline SVG logo mark — sized via parent. */
.pp-logo-mark {
    display: inline-block;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

/* Reverse variant for dark backgrounds: white paw, gold accent toe. */
.pp-logo-mark--reverse {
    --pp-logo-bg: var(--pp-white);
    --pp-logo-paw: var(--pp-navy);
    --pp-logo-accent: var(--pp-gold);
}

.pp-header-tag {
    font-size: 13px;
    color: var(--pp-text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =================== HERO ============================== */
.pp-hero {
    flex: 1;
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(15, 140, 126, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(212, 162, 74, 0.10) 0%, transparent 50%),
        var(--pp-cream);
}

.pp-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.pp-hero-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.35;
}

.pp-hero-shape--01 { top: 60px; right: 8%; width: 60px; }
.pp-hero-shape--03 { bottom: 80px; left: 5%; width: 80px; animation: pp-spin 24s linear infinite; }

@keyframes pp-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.pp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(15, 140, 126, 0.12);
    color: var(--pp-teal-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 24px;
}

.pp-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pp-teal);
    box-shadow: 0 0 0 4px rgba(15, 140, 126, 0.20);
}

.pp-hero-title {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.pp-hero-title .accent { color: var(--pp-teal); }
.pp-hero-title .gold { color: var(--pp-gold); }

.pp-hero-lead {
    font-size: 18px;
    line-height: 1.65;
    color: var(--pp-text);
    margin-bottom: 36px;
    max-width: 520px;
}

/* =================== EMAIL FORM ============================== */
.pp-form {
    display: flex;
    gap: 12px;
    background: var(--pp-white);
    padding: 8px;
    border-radius: 100px;
    box-shadow: 0 12px 40px rgba(11, 37, 69, 0.08);
    max-width: 520px;
    border: 1px solid var(--pp-border);
}

.pp-form input[type="email"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 22px;
    font-family: var(--pp-body-font);
    font-size: 15px;
    color: var(--pp-text);
    outline: none;
    min-width: 0;
}

.pp-form input[type="email"]::placeholder { color: var(--pp-text-muted); }

.pp-btn {
    appearance: none;
    border: none;
    background: var(--pp-navy);
    color: var(--pp-white);
    font-family: var(--pp-body-font);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 100px;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
    white-space: nowrap;
}

.pp-btn:hover { background: var(--pp-teal); transform: translateY(-1px); }
.pp-btn:active { transform: translateY(0); }
.pp-btn:disabled { background: var(--pp-text-muted); cursor: not-allowed; transform: none; }

.pp-form-note {
    font-size: 13px;
    color: var(--pp-text-muted);
    margin-top: 14px;
    max-width: 520px;
}

.pp-form-note .gold-dot { color: var(--pp-gold); font-weight: 800; }

.pp-form-msg {
    margin-top: 14px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
    max-width: 520px;
}

.pp-form-msg.is-success {
    display: block;
    background: rgba(27, 158, 110, 0.12);
    color: var(--pp-success);
    border: 1px solid rgba(27, 158, 110, 0.25);
}

.pp-form-msg.is-error {
    display: block;
    background: rgba(208, 76, 76, 0.10);
    color: var(--pp-error);
    border: 1px solid rgba(208, 76, 76, 0.25);
}

/* =================== HERO IMAGE PANEL ============================== */
.pp-hero-visual {
    position: relative;
    text-align: center;
}

.pp-hero-visual-frame {
    position: relative;
    display: block;
    padding: 18px;
}

.pp-hero-visual-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(212, 162, 74, 0.18) 0%, rgba(15, 140, 126, 0.20) 100%);
    z-index: 0;
}

.pp-hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    display: block;
    box-shadow: 0 18px 50px rgba(11, 37, 69, 0.12);
}

.pp-hero-badge {
    position: absolute;
    background: var(--pp-white);
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(11, 37, 69, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.pp-hero-badge--top {
    top: 30px;
    left: -10px;
}

.pp-hero-badge--bottom {
    bottom: 30px;
    right: -10px;
}

.pp-hero-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--pp-gold-light);
    color: var(--pp-gold);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 800;
}

.pp-hero-badge-icon.teal { background: rgba(15, 140, 126, 0.15); color: var(--pp-teal); }

.pp-hero-badge-text {
    font-size: 12px;
    line-height: 1.3;
    color: var(--pp-text-muted);
}

.pp-hero-badge-text strong {
    display: block;
    color: var(--pp-navy);
    font-size: 14px;
    font-weight: 700;
}

/* =================== TRUST STRIP ============================== */
.pp-trust {
    background: var(--pp-white);
    padding: 32px 0;
    border-top: 1px solid var(--pp-border);
}

.pp-trust-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.pp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pp-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(15, 140, 126, 0.10);
    color: var(--pp-teal);
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.pp-trust-title {
    font-family: var(--pp-heading-font);
    font-size: 16px;
    color: var(--pp-navy);
    font-weight: 700;
}

.pp-trust-sub {
    font-size: 13px;
    color: var(--pp-text-muted);
}

/* =================== FOOTER ============================== */
.pp-footer {
    padding: 36px 0;
    background: var(--pp-cream);
    border-top: 1px solid var(--pp-border);
}

.pp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.pp-footer-copy {
    font-size: 13px;
    color: var(--pp-text-muted);
}

.pp-social {
    display: flex;
    gap: 10px;
}

.pp-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--pp-white);
    border: 1px solid var(--pp-border);
    display: grid;
    place-items: center;
    color: var(--pp-navy);
    font-size: 14px;
    transition: all .2s ease;
}

.pp-social a:hover {
    background: var(--pp-navy);
    color: var(--pp-white);
    border-color: var(--pp-navy);
    transform: translateY(-2px);
}

.pp-disclaimer {
    text-align: center;
    font-size: 11px;
    color: var(--pp-text-muted);
    padding: 20px 24px 0;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =============================================================
   MARKETING HOMEPAGE (/home) — additional sections
============================================================= */

/* ---- Top nav for the full site (different from coming-soon header) ---- */
.pp-nav {
    padding: 18px 0;
    background: var(--pp-cream);
    border-bottom: 1px solid var(--pp-border);
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(8px);
    background: rgba(250, 250, 247, 0.92);
}

.pp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pp-nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pp-nav-links a {
    color: var(--pp-navy);
    font-size: 14px;
    font-weight: 600;
    transition: color .2s ease;
}

.pp-nav-links a:hover { color: var(--pp-teal); }

.pp-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--pp-navy);
    color: var(--pp-white);
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transition: background .2s ease;
}

.pp-nav-cta:hover { background: var(--pp-teal); color: var(--pp-white); }

/* ---- Section primitives ---- */
.pp-section {
    padding: 88px 0;
    position: relative;
}

.pp-section--alt { background: var(--pp-white); }
.pp-section--navy { background: var(--pp-navy); color: var(--pp-cream); }
.pp-section--navy h2, .pp-section--navy h3 { color: var(--pp-white); }
.pp-section--tight { padding: 56px 0; }

.pp-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.pp-section-head--left {
    text-align: left;
    max-width: 640px;
    margin: 0 0 40px;
}

.pp-section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pp-teal);
    margin-bottom: 16px;
}

.pp-section--navy .pp-section-eyebrow { color: var(--pp-gold); }

.pp-section-title {
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.1;
    color: var(--pp-navy);
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}

.pp-section--navy .pp-section-title { color: var(--pp-white); }

.pp-section-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--pp-text);
    margin: 0;
}

.pp-section--navy .pp-section-lead { color: rgba(255, 255, 255, 0.78); }

/* ---- Two-column story block (text + visual) ---- */
.pp-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.pp-story--reverse .pp-story-text { order: 2; }

.pp-story-visual {
    position: relative;
    aspect-ratio: 5 / 4;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--pp-gold-light) 0%, rgba(15, 140, 126, 0.18) 100%);
    overflow: hidden;
    display: grid;
    place-items: center;
}

.pp-story-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 18px;
}

.pp-story-visual-pill {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: var(--pp-white);
    padding: 10px 18px;
    border-radius: 100px;
    font-family: var(--pp-heading-font);
    font-weight: 700;
    color: var(--pp-navy);
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.12);
    z-index: 2;
}

.pp-story-text h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 20px; }
.pp-story-text p { font-size: 16px; line-height: 1.75; color: var(--pp-text); margin: 0 0 16px; }
.pp-story-text p:last-child { margin-bottom: 0; }

/* ---- SKU showcase ---- */
.pp-sku-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pp-sku {
    background: var(--pp-white);
    border-radius: 20px;
    border: 1px solid var(--pp-border);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pp-sku:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11, 37, 69, 0.10);
    border-color: var(--pp-teal);
}

.pp-sku-image {
    aspect-ratio: 4 / 3;
    background: var(--pp-gold-light);
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
}

.pp-sku-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}

.pp-sku:hover .pp-sku-image img { transform: scale(1.04); }

.pp-sku--restore .pp-sku-image { background: rgba(15, 140, 126, 0.14); }
.pp-sku--glow .pp-sku-image    { background: rgba(212, 162, 74, 0.18); }
.pp-sku--vitality .pp-sku-image { background: rgba(11, 37, 69, 0.08); }
.pp-sku--move .pp-sku-image    { background: rgba(208, 76, 76, 0.10); }

.pp-sku-body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pp-sku-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 18px;
    margin-bottom: 14px;
    background: var(--pp-gold-light);
    color: var(--pp-gold);
}

.pp-sku--restore .pp-sku-icon { background: rgba(15, 140, 126, 0.14); color: var(--pp-teal); }
.pp-sku--glow .pp-sku-icon    { background: rgba(212, 162, 74, 0.18); color: var(--pp-gold); }
.pp-sku--vitality .pp-sku-icon { background: rgba(11, 37, 69, 0.10); color: var(--pp-navy); }
.pp-sku--move .pp-sku-icon    { background: rgba(208, 76, 76, 0.12); color: #C44545; }

.pp-sku-name {
    font-family: var(--pp-heading-font);
    font-size: 22px;
    font-weight: 800;
    color: var(--pp-navy);
    margin: 0 0 6px;
    letter-spacing: 0.5px;
}

.pp-sku-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pp-text-muted);
    margin-bottom: 14px;
}

.pp-sku-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--pp-text);
    margin: 0 0 18px;
    flex: 1;
}

.pp-sku-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px 12px;
    padding-top: 16px;
    border-top: 1px solid var(--pp-border);
}

.pp-sku-price {
    font-family: var(--pp-heading-font);
    font-size: 20px;
    color: var(--pp-navy);
    font-weight: 800;
    white-space: nowrap;
}

.pp-sku-soon {
    white-space: nowrap;
}

.pp-sku-price small {
    font-size: 12px;
    font-weight: 500;
    color: var(--pp-text-muted);
    margin-left: 4px;
}

.pp-sku-soon {
    font-size: 12px;
    font-weight: 700;
    color: var(--pp-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Peptide library ---- */
.pp-peptide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pp-peptide {
    background: var(--pp-white);
    border-radius: 16px;
    padding: 26px 24px;
    border: 1px solid var(--pp-border);
}

.pp-peptide-name {
    font-family: var(--pp-heading-font);
    font-size: 20px;
    color: var(--pp-navy);
    margin: 0 0 4px;
    font-weight: 800;
}

.pp-peptide-tag {
    font-size: 12px;
    color: var(--pp-teal);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.pp-peptide-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--pp-text);
    margin: 0;
}

/* ---- Why-us pillars (on navy) ---- */
.pp-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pp-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(212, 162, 74, 0.18);
    color: var(--pp-gold);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.pp-pillar-title {
    font-family: var(--pp-heading-font);
    font-size: 22px;
    color: var(--pp-white);
    margin: 0 0 12px;
    font-weight: 700;
}

.pp-pillar-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

/* ---- Made-for personas ---- */
.pp-personas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pp-persona {
    background: var(--pp-white);
    border: 1px solid var(--pp-border);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: left;
}

.pp-persona-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(15, 140, 126, 0.12);
    color: var(--pp-teal-dark);
    margin-bottom: 14px;
}

.pp-persona h4 {
    font-family: var(--pp-heading-font);
    font-size: 19px;
    color: var(--pp-navy);
    margin: 0 0 10px;
    font-weight: 700;
}

.pp-persona p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--pp-text);
    margin: 0;
}

/* ---- FAQ accordion ---- */
.pp-faq {
    max-width: 820px;
    margin: 0 auto;
}

.pp-faq-item {
    border-bottom: 1px solid var(--pp-border);
}

.pp-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    text-align: left;
    font-family: var(--pp-heading-font);
    font-size: 18px;
    color: var(--pp-navy);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.pp-faq-q::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: var(--pp-teal);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(15, 140, 126, 0.10);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform .2s ease;
}

.pp-faq-item.is-open .pp-faq-q::after { content: '\2212'; transform: rotate(0); }

.pp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.pp-faq-item.is-open .pp-faq-a { max-height: 600px; }

.pp-faq-a-inner {
    padding: 0 0 24px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--pp-text);
    max-width: 700px;
}

/* ---- CTA banner ---- */
.pp-cta {
    background:
        radial-gradient(ellipse at 90% 0%, rgba(212, 162, 74, 0.18) 0%, transparent 55%),
        var(--pp-navy);
    padding: 72px 0;
    color: var(--pp-cream);
    text-align: center;
}

.pp-cta h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    color: var(--pp-white);
    margin: 0 0 16px;
}

.pp-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 580px;
    margin: 0 auto 32px;
}

.pp-cta .pp-form { margin: 0 auto; }
.pp-cta .pp-form input[type="email"] { color: var(--pp-text); }

/* ---- Site footer (full version) ---- */
.pp-site-footer {
    background: var(--pp-navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 56px 0 24px;
}

.pp-site-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.pp-site-footer h5 {
    font-family: var(--pp-heading-font);
    color: var(--pp-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 18px;
}

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

.pp-site-footer li { margin-bottom: 10px; }

.pp-site-footer a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color .2s ease;
}

.pp-site-footer a:hover { color: var(--pp-gold); }

.pp-site-footer-brand {
    font-family: var(--pp-heading-font);
    font-weight: 800;
    color: var(--pp-white);
    font-size: 24px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    --pp-logo-bg: var(--pp-white);
    --pp-logo-paw: var(--pp-navy-deep);
    --pp-logo-accent: var(--pp-gold);
}

.pp-site-footer-brand .pp-logo-mark {
    width: 36px;
    height: 36px;
}

.pp-site-footer-tag {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 18px;
    max-width: 320px;
}

.pp-site-footer-bottom {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.pp-site-footer-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 24px 0 0;
    max-width: 900px;
}

/* =================== RESPONSIVE ============================== */
@media (max-width: 1000px) {
    .pp-sku-grid { grid-template-columns: repeat(2, 1fr); }
    .pp-peptide-grid { grid-template-columns: repeat(2, 1fr); }
    .pp-pillars { grid-template-columns: 1fr; gap: 28px; }
    .pp-personas { grid-template-columns: 1fr; }
    .pp-story { grid-template-columns: 1fr; gap: 32px; }
    .pp-story--reverse .pp-story-text { order: 0; }
    .pp-site-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
    .pp-hero { padding: 32px 0 48px; }
    .pp-hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .pp-hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
    .pp-hero-badge--top, .pp-hero-badge--bottom { display: none; }
    .pp-trust-inner { grid-template-columns: 1fr; gap: 20px; }
    .pp-section { padding: 64px 0; }
    .pp-nav-links { display: none; }
}

@media (max-width: 640px) {
    .pp-sku-grid { grid-template-columns: 1fr; }
    .pp-peptide-grid { grid-template-columns: 1fr; }
    .pp-site-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .pp-header { padding: 20px 0; }
    .pp-header-tag { display: none; }
    .pp-form {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
    }
    .pp-form input[type="email"] { padding: 12px 14px; text-align: center; }
    .pp-btn { width: 100%; }
    .pp-footer-inner { flex-direction: column; text-align: center; }
    .pp-section { padding: 48px 0; }
    .pp-cta { padding: 48px 0; }
}
