*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #f7f5f0;
    --surface: #ffffff;
    --border: rgba(58, 77, 40, 0.1);
    --border-hover: rgba(58, 77, 40, 0.22);
    --text: #2c3320;
    --text-sec: #6b7259;
    --green: #304b30;
    --gold: #f9a31a;
    --gold-light: #fdf5e0;
    --danger: #d44;
}

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
}

/* Grain */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

.bg-wash {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(106,163,199,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 30% 80%, rgba(48, 75, 48,0.07) 0%, transparent 50%),
        radial-gradient(ellipse 50% 35% at 75% 70%, rgba(249, 163, 26,0.06) 0%, transparent 50%);
}

.glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(48, 75, 48,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: transform 0.06s linear, opacity 0.5s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.glow.active { opacity: 1; }
@media (hover: none) { .glow { display: none; } }

/* Container */
.container {
    max-width: 440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.25rem 4rem;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo-wrap {
    width: 172px;
    height: 172px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 1.5rem;
    perspective: 600px;
    cursor: pointer;
}
.logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.15s ease-out;
    will-change: transform;
    box-shadow: 0 0 0 1px var(--border), 0 12px 40px -8px rgba(44,51,32,0.15), 0 4px 12px -2px rgba(44,51,32,0.08);
}
.logo-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(48, 75, 48,0.15);
    transition: border-color 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.logo-wrap:hover .logo-ring { border-color: rgba(48, 75, 48,0.4); transform: scale(1.035); }

/* Typography */
.brand-name {
    font-family: 'Gambetta', serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.015em;
    margin-bottom: 0.75rem;
}
.brand-name span { color: var(--green); }

/* Bio */
.bio {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.bio-line {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-sec);
    line-height: 1.5;
    letter-spacing: 0.01em;
}

/* Links */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.section-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-sec);
    align-self: flex-start;
    padding-left: 0.15rem;
    margin-top: 0.6rem;
    margin-bottom: -0.15rem;
}

.link-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, background 0.3s ease;
}
.link-btn::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    border-radius: 14px 0 0 14px;
    transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.link-btn:hover::after { width: 3.5px; }
.link-btn:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 8px 24px -6px rgba(44,51,32,0.1); }
.link-btn:active { transform: translateY(0); transition-duration: 0.06s; }

.link-btn.youtube::after { background: #ff3b30; }
.link-btn.youtube:hover { background: rgba(255,59,48,0.03); }
.link-btn.instagram::after { background: #e1306c; }
.link-btn.instagram:hover { background: rgba(225,48,108,0.03); }
.link-btn.facebook::after { background: #1877f2; }
.link-btn.facebook:hover { background: rgba(24,119,242,0.03); }
.link-btn.tiktok::after { background: #010101; }
.link-btn.tiktok:hover { background: rgba(1,1,1,0.02); }
.link-btn.pootlr::after { background: var(--green); }
.link-btn.pootlr:hover { background: rgba(48, 75, 48,0.04); }
.link-btn.contact::after { background: var(--gold); }
.link-btn.contact:hover { background: rgba(249, 163, 26,0.03); }
.link-btn.shop::after { background: var(--green); }
.link-btn.shop:hover { background: rgba(48, 75, 48,0.04); }

.link-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    margin-right: 0.85rem; border-radius: 10px;
    transition: transform 0.25s ease, background 0.25s ease;
}
.link-btn:hover .link-icon { transform: scale(1.06); }
.link-icon svg { width: 18px; height: 18px; }

.link-btn.youtube .link-icon { background: rgba(255,59,48,0.08); color: #ff3b30; }
.link-btn.youtube:hover .link-icon { background: rgba(255,59,48,0.14); }
.link-btn.instagram .link-icon { background: rgba(225,48,108,0.08); color: #e1306c; }
.link-btn.instagram:hover .link-icon { background: rgba(225,48,108,0.14); }
.link-btn.facebook .link-icon { background: rgba(24,119,242,0.08); color: #1877f2; }
.link-btn.facebook:hover .link-icon { background: rgba(24,119,242,0.14); }
.link-btn.tiktok .link-icon { background: rgba(1,1,1,0.06); color: #222; }
.link-btn.tiktok:hover .link-icon { background: rgba(1,1,1,0.1); }
.link-btn.pootlr .link-icon { background: rgba(48, 75, 48,0.1); color: var(--green); }
.link-btn.pootlr:hover .link-icon { background: rgba(48, 75, 48,0.18); }
.link-btn.contact .link-icon { background: rgba(249, 163, 26,0.1); color: var(--gold); }
.link-btn.contact:hover .link-icon { background: rgba(249, 163, 26,0.18); }
.link-btn.shop .link-icon { background: rgba(48, 75, 48,0.1); color: var(--green); }
.link-btn.shop:hover .link-icon { background: rgba(48, 75, 48,0.18); }

.link-label { flex: 1; }
.link-arrow { color: var(--text-sec); flex-shrink: 0; opacity: 0; transform: translateX(-6px); transition: opacity 0.25s ease, transform 0.25s ease; }
.link-btn:hover .link-arrow { opacity: 0.6; transform: translateX(0); }

.link-btn.disabled { cursor: default; opacity: 0.45; }
.link-btn.disabled:hover { background: var(--surface); border-color: var(--border); transform: none; box-shadow: none; }
.link-btn.disabled:hover::after { width: 0; }
.link-btn.disabled:hover .link-icon { transform: none; }
.link-btn.disabled:hover .link-arrow { opacity: 0; }

.badge {
    font-size: 0.6rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--gold); background: var(--gold-light); padding: 0.18rem 0.5rem;
    border-radius: 20px; margin-left: 0.55rem; line-height: 1;
}

/* Featured card */
.featured-card {
    width: 100%;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, rgba(48, 75, 48,0.06) 0%, rgba(249, 163, 26,0.05) 100%);
    border: 1px solid rgba(48, 75, 48,0.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.featured-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(48, 75, 48,0.1); border-radius: 10px;
    font-size: 1.1rem; line-height: 1;
}
.featured-body { display: flex; flex-direction: column; gap: 0.1rem; }
.featured-kicker {
    font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--green);
}
.featured-title {
    font-size: 0.84rem; font-weight: 500; color: var(--text); line-height: 1.35;
}

/* Product cards */
.products-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}
.product-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 8px 24px -6px rgba(44,51,32,0.1); }
.product-card:active { transform: translateY(0); transition-duration: 0.06s; }

.product-img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: var(--bg); }

.product-body { padding: 0.7rem 0.75rem 0.8rem; display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.product-name { font-size: 0.82rem; font-weight: 600; line-height: 1.3; display: flex; align-items: center; justify-content: space-between; gap: 0.3rem; }
.product-name svg { flex-shrink: 0; color: var(--text-sec); opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease; transform: translateX(-3px); }
.product-card:hover .product-name svg { opacity: 0.5; transform: translateX(0); }
.product-detail { font-size: 0.73rem; font-weight: 300; color: var(--text-sec); line-height: 1.4; }
.product-tag { display: inline-block; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--green); background: rgba(48, 75, 48,0.08); padding: 0.15rem 0.45rem; border-radius: 20px; margin-top: 0.25rem; align-self: flex-start; }

/* Shop page category spacing */
.products-grid { margin-top: 0.5rem; }
.products-grid + .section-label { margin-top: 1.5rem; }

.affiliate-note {
    margin-top: 2rem;
    padding: 0.8rem 1rem;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-sec);
    line-height: 1.55;
    text-align: center;
    background: rgba(48, 75, 48,0.04);
    border: 1px solid rgba(48, 75, 48,0.1);
    border-radius: 10px;
}

.footer { margin-top: 2.5rem; font-size: 0.72rem; font-weight: 300; color: var(--text-sec); letter-spacing: 0.04em; }

/* Animate in */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    animation: revealUp 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Shop page header */
.page-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.page-header .logo-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
}
.page-header .logo-inner {
    box-shadow: 0 0 0 1px var(--border), 0 4px 12px -4px rgba(44,51,32,0.1);
}
.page-header .logo-ring { inset: -3px; }
.page-title {
    font-family: 'Gambetta', serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.015em;
    flex: 1;
}
.back-link {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: opacity 0.2s ease;
}
.back-link:hover { opacity: 0.7; }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-sec);
    font-size: 0.88rem;
}

/* Page-title subtitle (keyword tail inside the H1) */
.page-title-sub {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 0.82rem;
    color: var(--text-sec);
    letter-spacing: 0;
    display: block;
    margin-top: 0.15rem;
    line-height: 1.3;
}

/* Homepage bio podcast text-link */
.bio-link-line {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-sec);
    line-height: 1.55;
}
.bio-link-line a {
    color: var(--green);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(48, 75, 48,0.3);
    transition: border-color 0.2s ease;
}
.bio-link-line a:hover { border-bottom-color: var(--green); }

/* ── The Awning Hour ─────────────────────────────────────────────────── */

/* Homepage promo banner */
.awning-promo {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 1.1rem;
    margin: 0.25rem 0 1.5rem;
    text-decoration: none;
    color: var(--text);
    background: linear-gradient(135deg, rgba(48, 75, 48,0.10) 0%, rgba(249, 163, 26,0.09) 100%);
    border: 1px solid rgba(48, 75, 48,0.22);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.awning-promo:hover {
    border-color: rgba(48, 75, 48,0.42);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px -8px rgba(44,51,32,0.14);
}
.awning-promo:active { transform: translateY(0); transition-duration: 0.06s; }
.awning-promo-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
}
.awning-promo-logo img { width: 44px; height: 44px; object-fit: contain; display: block; }
.awning-promo-body { display: flex; flex-direction: column; gap: 0.12rem; flex: 1; min-width: 0; }
.awning-promo-kicker {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}
.awning-promo-title {
    font-family: 'Gambetta', serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.2;
}
.awning-promo-sub {
    font-size: 0.78rem;
    color: var(--text-sec);
    line-height: 1.35;
}
.awning-promo-arrow {
    color: var(--green);
    flex-shrink: 0;
    opacity: 0.7;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.awning-promo:hover .awning-promo-arrow { opacity: 1; transform: translateX(3px); }

/* Explore-list podcast accent */
.link-btn.podcast .link-icon { background: rgba(48, 75, 48,0.1); color: var(--green); }

/* Podcast page: large hero logo */
.awning-hero-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0.75rem 0 1.75rem;
}
.awning-hero-logo img {
    width: min(320px, 80%);
    height: auto;
    display: block;
}

/* Podcast page: coming-soon hero */
.awning-coming-soon {
    width: 100%;
    text-align: center;
    padding: 1.5rem 1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}
.awning-kicker {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}
.awning-headline {
    font-family: 'Gambetta', serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.015em;
    color: var(--text);
    line-height: 1.15;
    margin: 0;
}
.awning-subline {
    font-size: 0.9rem;
    color: var(--text-sec);
    line-height: 1.55;
    max-width: 34ch;
    margin: 0;
}
.awning-cta-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.4rem;
}
.awning-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.awning-cta.primary { background: var(--green); color: #fff; border-color: var(--green); }
.awning-cta.primary:hover { opacity: 0.92; transform: translateY(-1px); }
.awning-cta.secondary { background: var(--surface); color: var(--text); }
.awning-cta.secondary:hover { border-color: var(--border-hover); transform: translateY(-1px); }

/* Podcast page: about / long-form body copy */
.awning-about {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.25rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text);
}
.awning-about h2 {
    font-family: 'Gambetta', serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    color: var(--text);
}
.awning-about h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 1.1rem 0 0.4rem;
}
.awning-about p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-sec);
    margin: 0 0 0.6rem;
}
.awning-about p:last-child { margin-bottom: 0; }
.awning-about a {
    color: var(--green);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(48, 75, 48,0.3);
    transition: border-color 0.2s ease;
}
.awning-about a:hover { border-bottom-color: var(--green); }

/* Podcast page: live embed */
.awning-live { width: 100%; display: flex; flex-direction: column; gap: 0.75rem; }
.awning-platforms { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.awning-platforms a {
    flex: 1;
    text-align: center;
    padding: 0.65rem 0.9rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: border-color 0.2s ease;
}
.awning-platforms a:hover { border-color: var(--border-hover); }

/* ── /hello QR landing page ─────────────────────────────────────────── */

.hello-body { background: var(--bg); }

/* Splash welcome — fullscreen logo "stamp" before the greeting */
.splash {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.7,0,0.84,0), transform 0.7s cubic-bezier(0.7,0,0.84,0);
}
.splash-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 70% 50% at 50% 35%, rgba(48, 75, 48,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 50% 70%, rgba(249, 163, 26,0.14) 0%, transparent 60%),
        var(--bg);
    animation: splashBg 1.4s ease-out;
}
@keyframes splashBg {
    0% { opacity: 0; }
    20% { opacity: 1; }
}
.splash-logo {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    position: relative;
    transform-origin: center;
    animation: splashLogoIn 1.1s cubic-bezier(0.34,1.56,0.64,1) both;
}
.splash-logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--border), 0 24px 60px -16px rgba(44,51,32,0.32), 0 8px 24px -6px rgba(48, 75, 48,0.25);
    background: var(--surface);
}
.splash-logo-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.splash-logo-ring,
.splash-logo-ring-2 {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(48, 75, 48,0.4);
    opacity: 0;
    animation: splashRing 1.4s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}
.splash-logo-ring-2 {
    border-color: rgba(249, 163, 26,0.4);
    animation-delay: 0.55s;
    animation-duration: 1.5s;
}
@keyframes splashLogoIn {
    0% { transform: scale(0.2) rotate(-18deg); opacity: 0; }
    55% { transform: scale(1.12) rotate(6deg); opacity: 1; }
    75% { transform: scale(0.98) rotate(-2deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes splashRing {
    0% { transform: scale(0.7); opacity: 0.85; }
    100% { transform: scale(1.85); opacity: 0; }
}
.splash-thanks {
    font-family: 'Gambetta', serif;
    font-weight: 700;
    font-size: 1.95rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--green);
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1.25rem;
    opacity: 0;
    transform: translateY(10px);
    animation: splashThanks 0.7s cubic-bezier(0.16,1,0.3,1) 0.65s forwards;
}
.splash-thanks-wave {
    display: inline-block;
    font-size: 1.7rem;
    transform-origin: 70% 70%;
    animation: helloWave 1.8s ease-in-out 1.2s infinite;
}
@keyframes splashThanks {
    to { opacity: 1; transform: translateY(0); }
}
.splash-brand {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-sec);
    opacity: 0;
    transform: translateY(8px);
    animation: splashBrand 0.7s cubic-bezier(0.16,1,0.3,1) 0.85s forwards;
}
.splash-brand span { color: var(--green); }
@keyframes splashBrand {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .splash-thanks { font-size: 1.65rem; }
    .splash-thanks-wave { font-size: 1.4rem; }
    .splash-brand { font-size: 0.7rem; letter-spacing: 0.16em; }
    .splash-logo { width: 140px; height: 140px; }
}
.splash.splash-out {
    opacity: 0;
    transform: scale(1.12);
}

/* While splash is up, hide the actual page content. Reveal after. */
body.splash-active { overflow: hidden; }
.post-splash > .reveal { animation-play-state: paused; opacity: 0; }
.post-splash.splash-done > .reveal { animation-play-state: running; }
@media (prefers-reduced-motion: reduce) {
    .post-splash > .reveal { animation-play-state: running; opacity: 0; }
}

.hello-container {
    max-width: 460px;
    padding-top: 2.25rem;
    text-align: center;
}

.hello-logo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 0.9rem;
}
.hello-logo .logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--border), 0 14px 36px -10px rgba(44,51,32,0.18);
}
.hello-logo .logo-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hello-logo .logo-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid rgba(48, 75, 48,0.22);
    pointer-events: none;
}

.hello-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-light);
    padding: 0.32rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.85rem;
}
.hello-wave-emoji {
    display: inline-block;
    font-size: 0.95rem;
    transform-origin: 70% 70%;
    animation: helloWave 2.6s ease-in-out infinite;
}
@keyframes helloWave {
    0%, 60%, 100% { transform: rotate(0); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
}
@media (prefers-reduced-motion: reduce) {
    .hello-wave-emoji { animation: none; }
}

.hello-headline {
    font-family: 'Gambetta', serif;
    font-weight: 700;
    font-size: 2.1rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
    color: var(--text);
}
.hello-headline span { color: var(--green); }

.hello-sub {
    font-size: 0.95rem;
    color: var(--text-sec);
    line-height: 1.55;
    max-width: 36ch;
    margin: 0 auto 1.4rem;
}

/* Wave — primary CTA card, form collapses inside */
.wave-collapse {
    width: 100%;
    margin: 0.55rem 0 0.55rem;
    text-align: left;
}
.wave-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 1.05rem 1.15rem;
    background: linear-gradient(135deg, rgba(48, 75, 48,0.10) 0%, rgba(249, 163, 26,0.10) 100%);
    border: 1px solid rgba(48, 75, 48,0.28);
    border-radius: 16px;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.18s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px -12px rgba(48, 75, 48,0.28);
}
.wave-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(249, 163, 26,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 90% 60% at 0% 100%, rgba(48, 75, 48,0.10) 0%, transparent 55%);
}
.wave-toggle > * { position: relative; }
.wave-toggle:hover {
    border-color: rgba(48, 75, 48,0.5);
    box-shadow: 0 16px 36px -12px rgba(48, 75, 48,0.4);
    transform: translateY(-2px);
}
.wave-toggle:active { transform: translateY(0); transition-duration: 0.06s; }
.wave-toggle-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: #fff;
    border: 1px solid rgba(48, 75, 48,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    flex-shrink: 0;
    transform-origin: 70% 70%;
    box-shadow: 0 4px 12px -4px rgba(48, 75, 48,0.25);
    animation: helloWave 3.2s ease-in-out infinite;
}
.wave-collapse.open .wave-toggle-icon { animation: helloWave 1.4s ease-in-out 1; }
.wave-toggle-text { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; min-width: 0; }
.wave-toggle-kicker {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}
.wave-toggle-label {
    font-family: 'Gambetta', serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.005em;
}
.wave-toggle-chevron {
    color: var(--green);
    flex-shrink: 0;
    opacity: 0.85;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.wave-collapse.open .wave-toggle-chevron { transform: rotate(180deg); }
.wave-collapse.open .wave-toggle {
    border-radius: 16px 16px 4px 4px;
}

.wave-body {
    padding: 1.1rem 1.15rem 1.15rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 16px 16px;
    margin-top: -1px;
    animation: waveBodyReveal 0.45s cubic-bezier(0.16,1,0.3,1);
}
@keyframes waveBodyReveal {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.wave-form { display: flex; flex-direction: column; gap: 0.75rem; }

.wave-field { display: flex; flex-direction: column; gap: 0.3rem; position: relative; }
.wave-field label {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}
.wave-optional {
    font-weight: 400;
    color: var(--text-sec);
    margin-left: 0.2rem;
}
.wave-field input,
.wave-field textarea {
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.72rem 0.85rem;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
}
.wave-field textarea { resize: vertical; min-height: 84px; line-height: 1.45; }
.wave-field input:focus,
.wave-field textarea:focus {
    outline: none;
    border-color: var(--green);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(48, 75, 48,0.12);
}
.wave-field input::placeholder,
.wave-field textarea::placeholder { color: rgba(107, 114, 89, 0.6); }
.wave-counter {
    position: absolute;
    bottom: 0.5rem;
    right: 0.7rem;
    font-size: 0.66rem;
    color: var(--text-sec);
    pointer-events: none;
    font-variant-numeric: tabular-nums;
}

.wave-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.wave-error {
    font-size: 0.8rem;
    color: var(--danger, #d44);
    display: none;
    line-height: 1.4;
    background: rgba(221,68,68,0.06);
    border: 1px solid rgba(221,68,68,0.18);
    border-radius: 8px;
    padding: 0.5rem 0.7rem;
}
.wave-error.show { display: block; }

.wave-submit {
    margin-top: 0.25rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.1rem;
    background: var(--green);
    color: #fff;
    border: 1px solid var(--green);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.25s ease, opacity 0.2s ease;
    box-shadow: 0 8px 22px -8px rgba(48, 75, 48,0.55);
}
.wave-submit:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(48, 75, 48,0.6); }
.wave-submit:active { transform: translateY(0); }
.wave-submit:disabled { opacity: 0.7; cursor: progress; transform: none; }
.wave-submit-emoji {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.wave-submit:hover .wave-submit-emoji { transform: rotate(20deg) translateX(2px); }
.wave-submit.sending .wave-submit-emoji { animation: helloWave 0.9s ease-in-out infinite; }

.wave-thanks {
    text-align: center;
    padding: 1rem 0.5rem 0.4rem;
    animation: revealUp 0.5s cubic-bezier(0.16,1,0.3,1);
}
.wave-thanks-icon {
    font-size: 2.6rem;
    margin-bottom: 0.4rem;
    display: inline-block;
    animation: thanksPop 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes thanksPop {
    0% { transform: scale(0.4); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.wave-thanks-title {
    font-family: 'Gambetta', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.wave-thanks-sub {
    font-size: 0.9rem;
    color: var(--text-sec);
    line-height: 1.5;
    margin: 0 auto 1rem;
    max-width: 32ch;
}
.wave-thanks-again {
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--green);
    background: transparent;
    border: 1px solid rgba(48, 75, 48,0.3);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.wave-thanks-again:hover { background: rgba(48, 75, 48,0.06); border-color: var(--green); }

/* Friends heading — between wave and socials */
.hello-friends-heading {
    width: 100%;
    text-align: center;
    margin: 1.4rem 0 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}
.hello-friends-kicker {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.hello-friends-title {
    font-family: 'Gambetta', serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text);
    max-width: 32ch;
    margin: 0;
}

/* Socials */
.hello-ig {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 1.15rem 1.15rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 22%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 16px;
    margin-bottom: 0.55rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 34px -10px rgba(220, 39, 67, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hello-ig::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(255,255,255,0.18), transparent 60%);
    pointer-events: none;
}
.hello-ig:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(220, 39, 67, 0.65); }
.hello-ig:active { transform: translateY(0); }
.hello-ig-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border-radius: 13px;
    color: #fff;
    backdrop-filter: blur(4px);
}
.hello-ig-icon svg { width: 26px; height: 26px; }
.hello-ig-body { display: flex; flex-direction: column; gap: 0.1rem; flex: 1; min-width: 0; text-align: left; }
.hello-ig-kicker {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
}
.hello-ig-title {
    font-family: 'Gambetta', serif;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.005em;
}
.hello-ig-handle {
    font-size: 0.78rem;
    opacity: 0.9;
}
.hello-ig-arrow { color: #fff; opacity: 0.85; flex-shrink: 0; transition: transform 0.25s ease; }
.hello-ig:hover .hello-ig-arrow { transform: translateX(3px); }

/* Secondary social card (YouTube) */
.hello-secondary {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    text-decoration: none;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 0.55rem;
    text-align: left;
    transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
    position: relative;
    overflow: hidden;
}
.hello-secondary::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    border-radius: 14px 0 0 14px;
    transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.hello-secondary:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(44,51,32,0.14); }
.hello-secondary:hover::after { width: 3.5px; }
.hello-secondary-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    transition: transform 0.25s ease, background 0.25s ease;
}
.hello-secondary-icon svg { width: 22px; height: 22px; }
.hello-secondary:hover .hello-secondary-icon { transform: scale(1.05); }
.hello-secondary-body { display: flex; flex-direction: column; gap: 0.1rem; flex: 1; min-width: 0; }
.hello-secondary-title {
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
}
.hello-secondary-sub {
    font-size: 0.76rem;
    color: var(--text-sec);
    line-height: 1.4;
}
.hello-secondary-arrow { color: var(--text-sec); flex-shrink: 0; opacity: 0.6; transition: transform 0.25s ease, opacity 0.25s ease; }
.hello-secondary:hover .hello-secondary-arrow { opacity: 1; transform: translateX(3px); }
.hello-secondary.youtube::after { background: #ff3b30; }
.hello-secondary.youtube .hello-secondary-icon { background: rgba(255,59,48,0.1); color: #ff3b30; }
.hello-secondary.youtube:hover .hello-secondary-icon { background: rgba(255,59,48,0.18); }
.hello-secondary.youtube:hover { background: rgba(255,59,48,0.025); }

.hello-secondary.instagram::after { background: #e1306c; }
.hello-secondary.instagram .hello-secondary-icon { background: rgba(225,48,108,0.1); color: #e1306c; }
.hello-secondary.instagram:hover .hello-secondary-icon { background: rgba(225,48,108,0.18); }
.hello-secondary.instagram:hover { background: rgba(225,48,108,0.025); }

.hello-secondary.tiktok::after { background: #111; }
.hello-secondary.tiktok .hello-secondary-icon { background: rgba(0,0,0,0.06); color: #111; }
.hello-secondary.tiktok:hover .hello-secondary-icon { background: rgba(0,0,0,0.12); }
.hello-secondary.tiktok:hover { background: rgba(0,0,0,0.02); }

.hello-secondary.facebook::after { background: #1877f2; }
.hello-secondary.facebook .hello-secondary-icon { background: rgba(24,119,242,0.1); color: #1877f2; }
.hello-secondary.facebook:hover .hello-secondary-icon { background: rgba(24,119,242,0.18); }
.hello-secondary.facebook:hover { background: rgba(24,119,242,0.025); }

/* Tertiary, low-priority social link (YouTube — not established yet) */
.hello-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    margin: 0.65rem auto 0.4rem;
    background: transparent;
    border: 1px dashed var(--border);
    border-radius: 100px;
    color: var(--text-sec);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.hello-tertiary svg { color: #ff3b30; opacity: 0.85; flex-shrink: 0; }
.hello-tertiary:hover {
    border-color: rgba(255,59,48,0.3);
    color: var(--text);
    background: rgba(255,59,48,0.03);
}

.hello-social-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    margin-bottom: 0.4rem;
}
.hello-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 0.6rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 500;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hello-social svg { width: 20px; height: 20px; transition: transform 0.25s ease; }
.hello-social:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -8px rgba(44,51,32,0.12); border-color: var(--border-hover); }
.hello-social:hover svg { transform: scale(1.08); }
.hello-social.facebook svg { color: #1877f2; }
.hello-social.facebook:hover { background: rgba(24,119,242,0.04); }
.hello-social.tiktok svg { color: #111; }
.hello-social.tiktok:hover { background: rgba(0,0,0,0.03); }

.hello-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--green);
    text-decoration: none;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    transition: background 0.2s ease, gap 0.2s ease;
}
.hello-explore:hover { background: rgba(48, 75, 48,0.06); gap: 0.55rem; }

/* Confetti */
.confetti-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}
.confetti-bit {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 14px;
    border-radius: 2px;
    opacity: 0;
    animation: confettiFall 1.8s cubic-bezier(0.16,1,0.3,1) forwards;
    transform: translate3d(0, 0, 0) rotate(0);
}
@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0);
    }
    100% {
        opacity: 0;
        transform: translate3d(var(--dx), var(--dy), 0) rotate(var(--rot));
    }
}
@media (prefers-reduced-motion: reduce) {
    .confetti-bit { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 2.25rem 1rem 3.5rem; }
    .logo-wrap { width: 148px; height: 148px; }
    .brand-name { font-size: 1.4rem; }
    .link-btn { padding: 0.82rem 1rem; font-size: 0.88rem; }
    .link-icon { width: 32px; height: 32px; margin-right: 0.7rem; }
    .link-icon svg { width: 16px; height: 16px; }
    .products-grid { gap: 0.5rem; }
    .product-body { padding: 0.6rem 0.65rem 0.7rem; }
    .page-header .logo-wrap { width: 40px; height: 40px; }
    .page-title { font-size: 1.1rem; }
    .awning-promo { padding: 0.85rem 0.95rem; gap: 0.75rem; }
    .awning-promo-logo { width: 48px; height: 48px; }
    .awning-promo-logo img { width: 36px; height: 36px; }
    .awning-promo-title { font-size: 0.98rem; }
    .awning-headline { font-size: 1.3rem; }
    .page-title-sub { font-size: 0.75rem; }
    .awning-about { padding: 1.1rem 0.9rem; }
    .awning-about h2 { font-size: 1.05rem; }

    .hello-container { padding-top: 1.75rem; }
    .hello-logo { width: 100px; height: 100px; }
    .hello-headline { font-size: 1.85rem; }
    .hello-sub { font-size: 0.9rem; }
    .wave-toggle { padding: 0.95rem 1rem; gap: 0.8rem; }
    .wave-toggle-icon { width: 46px; height: 46px; font-size: 1.35rem; border-radius: 12px; }
    .wave-toggle-label { font-size: 1.06rem; }
    .wave-body { padding: 0.95rem 1rem 1rem; }
    .wave-submit { padding: 0.9rem 1rem; font-size: 0.95rem; }
    .hello-ig { padding: 1rem 1rem; }
    .hello-ig-icon { width: 46px; height: 46px; }
    .hello-ig-icon svg { width: 22px; height: 22px; }
    .hello-ig-title { font-size: 1.08rem; }
    .hello-secondary { padding: 0.8rem 0.9rem; }
    .hello-secondary-title { font-size: 0.92rem; }
    .hello-social { font-size: 0.82rem; padding: 0.78rem 0.5rem; }
}

/* ── Site navigation (shared, injected by /nav.js) ─────────────────────
 * A fixed top-right menu button on every page that opens an overlay
 * drawer with the site's main pages.
 */
.pwp-nav-btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    height: 42px;
    padding: 0 0.85rem 0 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 6px 18px -8px rgba(44,51,32,0.18), 0 1px 2px rgba(44,51,32,0.04);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    z-index: 60;
}
.pwp-nav-btn:hover { border-color: var(--border-hover); transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(44,51,32,0.24), 0 1px 2px rgba(44,51,32,0.04); }
.pwp-nav-btn:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.pwp-nav-btn-bars {
    width: 18px;
    height: 14px;
    position: relative;
    display: inline-block;
}
.pwp-nav-btn-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.6px;
    background: var(--green);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(0.16,1,0.3,1), opacity 0.2s ease, top 0.28s cubic-bezier(0.16,1,0.3,1);
}
.pwp-nav-btn-bar:nth-child(1) { top: 2px; }
.pwp-nav-btn-bar:nth-child(2) { top: 6.3px; }
.pwp-nav-btn-bar:nth-child(3) { top: 10.6px; }
.pwp-nav-btn[aria-expanded="true"] .pwp-nav-btn-bar:nth-child(1) { top: 6.3px; transform: rotate(45deg); }
.pwp-nav-btn[aria-expanded="true"] .pwp-nav-btn-bar:nth-child(2) { opacity: 0; }
.pwp-nav-btn[aria-expanded="true"] .pwp-nav-btn-bar:nth-child(3) { top: 6.3px; transform: rotate(-45deg); }

.pwp-nav-btn-label { font-family: inherit; }

.pwp-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 51, 32, 0.22);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 55;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4.75rem 1rem 2rem;
    overflow-y: auto;
}
html.pwp-nav-open .pwp-nav-overlay { opacity: 1; visibility: visible; }
html.pwp-nav-open { overflow: hidden; }

.pwp-nav-panel {
    width: 100%;
    max-width: 420px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.4rem 1.4rem 1.5rem;
    box-shadow: 0 24px 60px -16px rgba(44,51,32,0.32), 0 8px 24px -10px rgba(44,51,32,0.18);
    transform: translateY(-14px) scale(0.985);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
}
html.pwp-nav-open .pwp-nav-panel { transform: translateY(0) scale(1); opacity: 1; }

.pwp-nav-head {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.pwp-nav-eyebrow {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.pwp-nav-title {
    font-family: 'Gambetta', serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--text);
}

.pwp-nav-list { display: flex; flex-direction: column; gap: 0.4rem; }

.pwp-nav-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 0.95rem;
    background: var(--bg);
    border: 1px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    opacity: 0;
    transform: translateY(8px);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
html.pwp-nav-open .pwp-nav-item {
    animation: pwpNavItemIn 0.45s cubic-bezier(0.16,1,0.3,1) forwards;
    animation-delay: calc(0.1s + var(--i) * 0.045s);
}
@keyframes pwpNavItemIn { to { opacity: 1; transform: translateY(0); } }

.pwp-nav-item:hover { border-color: var(--border-hover); transform: translateX(2px); }
.pwp-nav-item:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.pwp-nav-item-body { display: flex; flex-direction: column; gap: 0.1rem; flex: 1; min-width: 0; }
.pwp-nav-item-kicker {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-sec);
}
.pwp-nav-item-label { font-size: 0.94rem; font-weight: 500; line-height: 1.3; }

.pwp-nav-item-arrow {
    width: 16px; height: 16px;
    color: var(--text-sec);
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}
.pwp-nav-item:hover .pwp-nav-item-arrow { color: var(--green); transform: translateX(3px); }

.pwp-nav-item.is-current { background: rgba(48, 75, 48, 0.06); border-color: rgba(48, 75, 48, 0.18); }
.pwp-nav-item.is-current .pwp-nav-item-label { color: var(--green); font-weight: 600; }
.pwp-nav-item.is-current .pwp-nav-item-kicker { color: var(--green); opacity: 0.75; }
.pwp-nav-item-pill {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(48, 75, 48, 0.12);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    flex-shrink: 0;
}

.pwp-nav-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    background: var(--green);
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pwp-nav-contact:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(48, 75, 48, 0.55); }
.pwp-nav-contact:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.pwp-nav-contact-body { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.pwp-nav-contact-label { font-size: 0.95rem; font-weight: 600; }
.pwp-nav-contact-email { font-size: 0.72rem; font-weight: 300; opacity: 0.78; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pwp-nav-contact svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.85; }

/* Keep page-title clear of the floating button on subpages */
.page-header { padding-right: 3.25rem; }
.wwu-topbar { padding-right: 3.25rem !important; }

@media (max-width: 520px) {
    .pwp-nav-btn { top: 0.75rem; right: 0.75rem; height: 40px; padding: 0 0.75rem 0 0.65rem; font-size: 0.78rem; }
    .pwp-nav-btn-label { display: none; }
    .pwp-nav-btn { padding: 0; width: 40px; justify-content: center; }
    .pwp-nav-overlay { padding-top: 4.25rem; }
    .pwp-nav-panel { padding: 1.2rem 1.1rem 1.3rem; border-radius: 20px; }
    .page-header { padding-right: 3rem; }
    .wwu-topbar { padding-right: 3rem !important; }
}

@media (prefers-reduced-motion: reduce) {
    .pwp-nav-btn, .pwp-nav-btn-bar, .pwp-nav-overlay, .pwp-nav-panel, .pwp-nav-item, .pwp-nav-contact { transition: none !important; }
    html.pwp-nav-open .pwp-nav-item { animation: none; opacity: 1; transform: none; }
}

