/* Happy Feet Strollers — Shared Site Styles */

/* ── Reset layer (replaces Tailwind preflight conflicts) ── */
*, *::before, *::after { box-sizing: border-box; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; margin: 0; }
button:not([class*="hf-"]) { cursor: pointer; background: none; border: none; padding: 0; }
button, [type="button"], [type="submit"], [type="reset"] { cursor: pointer; }
a { color: inherit; }
select.hf-select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23F4C41C' d='M1 1l5 5 5-5'/></svg>");
    background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}

@font-face { font-family: 'Refinity'; src: url('../fonts/refinity/Refinity-Regular.woff') format('woff'), url('../fonts/refinity/Refinity-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Refinity'; src: url('../fonts/refinity/Refinity-Oblique.woff') format('woff'), url('../fonts/refinity/Refinity-Oblique.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }

:root {
    --hf-teal: #0F5A52;
    --hf-teal-deep: #073E38;
    --hf-teal-mid: #147268;
    --hf-teal-bright: #2C9889;
    --hf-yellow: #F4C41C;
    --hf-yellow-light: #FFD966;
    --hf-gold: #D4A513;
    --hf-cream: #FBF1D3;
    --hf-cream-deep: #F4DFA7;
    --hf-ink: #0F1212;
    --hf-bg: #052A25;
    --hf-surface: #073E38;
    --hf-surface-2: #0A453F;
    --hf-border: rgba(244,196,28,0.14);
    --hf-border-soft: rgba(255,255,255,0.06);
    --hf-ease: cubic-bezier(0.16,1,0.3,1);
}

html, body { background: var(--hf-bg); overflow-x: hidden; scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--hf-cream-deep); -webkit-font-smoothing: antialiased; min-height: 100vh; display: flex; flex-direction: column; }
h1, h2, h3, h4, h5, h6 { font-family: 'Refinity', 'Big Shoulders Display', serif !important; }
.font-wordmark { font-family: 'Big Shoulders Display', 'Anton', Impact, sans-serif !important; font-stretch: condensed; letter-spacing: 0.01em; }

body::before {
    content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

main { flex: 1; position: relative; z-index: 1; }

/* Cursor */
.hf-cursor { position: fixed; top: 0; left: 0; width: 8px; height: 8px; background: var(--hf-yellow); border-radius: 50%; pointer-events: none; z-index: 10000; mix-blend-mode: difference; transition: transform 0.18s var(--hf-ease); transform: translate(-50%, -50%) scale(1); }
.hf-cursor.hover { transform: translate(-50%, -50%) scale(3); }
@media (hover: none) { .hf-cursor { display: none; } }

/* Progress bar */
.hf-progress { position: fixed; top: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--hf-yellow), var(--hf-teal-bright)); z-index: 10001; width: 0; transition: width 80ms linear; }

/* Header */
.hf-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 0 5%; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(5,42,37,0.72); backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--hf-ease), border-color 0.4s var(--hf-ease), height 0.4s var(--hf-ease);
}
.hf-header.scrolled { background: rgba(5,42,37,0.96); border-bottom-color: var(--hf-border); height: 64px; }
.hf-header-lockup { height: 32px; width: auto; transition: height 0.4s var(--hf-ease); }
.hf-header.scrolled .hf-header-lockup { height: 28px; }
.hf-nav-desktop { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .hf-nav-desktop { display: flex; } }
.hf-nav-link {
    font-family: 'Big Shoulders Display', sans-serif; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251,241,211,0.72);
    padding: 0.5rem 0.85rem; border-radius: 999px; transition: all 0.3s var(--hf-ease); text-decoration: none;
}
.hf-nav-link:hover, .hf-nav-link.active { color: var(--hf-yellow); background: rgba(244,196,28,0.06); }
.hf-nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.hf-cart-btn {
    position: relative; width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid var(--hf-border); background: rgba(7,62,56,0.6);
    display: flex; align-items: center; justify-content: center;
    color: var(--hf-cream); cursor: pointer; transition: all 0.3s var(--hf-ease);
}
.hf-cart-btn:hover { border-color: var(--hf-yellow); color: var(--hf-yellow); }
.hf-cart-count {
    position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px;
    border-radius: 999px; background: var(--hf-yellow); color: var(--hf-teal-deep);
    font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.hf-cart-count:empty, .hf-cart-count[data-count="0"] { display: none; }
.hf-menu-btn {
    width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--hf-border);
    background: rgba(7,62,56,0.6); display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 5px; cursor: pointer; transition: all 0.3s var(--hf-ease);
}
@media (min-width: 1024px) { .hf-menu-btn { display: none; } }
.hf-menu-btn span { width: 18px; height: 2px; background: var(--hf-cream); border-radius: 2px; transition: all 0.3s var(--hf-ease); }
.hf-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hf-menu-btn.open span:nth-child(2) { opacity: 0; }
.hf-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.hf-mobile-nav {
    position: fixed; inset: 72px 0 0 0; z-index: 49;
    background: rgba(5,42,37,0.98); backdrop-filter: blur(24px);
    padding: 2rem 5%; display: flex; flex-direction: column; gap: 0.5rem;
    transform: translateX(100%); transition: transform 0.45s var(--hf-ease);
    overflow-y: auto;
}
.hf-mobile-nav.open { transform: translateX(0); }
.hf-mobile-nav a {
    font-family: 'Big Shoulders Display', sans-serif; font-size: 1.1rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--hf-cream);
    padding: 1rem 0; border-bottom: 1px solid var(--hf-border-soft); text-decoration: none;
    transition: color 0.3s ease;
}
.hf-mobile-nav a:hover { color: var(--hf-yellow); }

/* Buttons */
.hf-btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem 1.75rem; border-radius: 999px; border: none;
    background: var(--hf-yellow); color: var(--hf-teal-deep);
    font-family: 'Big Shoulders Display', sans-serif; font-weight: 800;
    font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; transition: all 0.3s var(--hf-ease); white-space: nowrap;
}
.hf-btn-primary:hover { background: var(--hf-yellow-light); transform: translateY(-2px); box-shadow: 0 12px 32px -10px rgba(244,196,28,0.55); }
.hf-btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: 999px;
    border: 1px solid rgba(244,196,28,0.35); color: var(--hf-cream);
    font-family: 'Big Shoulders Display', sans-serif; font-size: 0.75rem; font-weight: 800;
    letter-spacing: 0.18em; text-transform: uppercase;
    transition: all 0.3s var(--hf-ease); text-decoration: none; cursor: pointer; background: transparent;
}
.hf-btn-ghost:hover { border-color: var(--hf-yellow); color: var(--hf-yellow); transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(244,196,28,0.35); }
.hf-btn-sm { padding: 0.55rem 1.1rem; font-size: 0.68rem; }
.hf-btn-block { width: 100%; justify-content: center; display: inline-flex; }

/* Layout utilities (replaces Tailwind) */
.hf-flex { display: flex; }
.hf-flex-wrap { flex-wrap: wrap; }
.hf-gap-3 { gap: 0.75rem; }
/* Layout utilities — balanced flex grids (incomplete rows center) */
.hf-grid-2,
.hf-grid-3,
.hf-grid-4,
.hf-trust-grid,
.hf-steps,
.hf-standard-grid,
.hf-bundle-grid,
.hf-addon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: var(--hf-grid-gap, 1rem);
}
.hf-grid-2 { --hf-grid-gap: 1.5rem; }
.hf-grid-3 { --hf-grid-gap: 1rem; }
.hf-grid-4 { --hf-grid-gap: 1rem; }
.hf-trust-grid { --hf-grid-gap: 1rem; }
.hf-steps { --hf-grid-gap: 1.5rem; }
.hf-standard-grid { --hf-grid-gap: 1.25rem; }
.hf-bundle-grid { --hf-grid-gap: 1.25rem; }
.hf-addon-grid { --hf-grid-gap: 1rem; }

.hf-grid-2 > *,
.hf-grid-3 > *,
.hf-grid-4 > *,
.hf-trust-grid > *,
.hf-steps > *,
.hf-standard-grid > *,
.hf-bundle-grid > *,
.hf-addon-grid > * {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .hf-grid-2 > *,
    .hf-bundle-grid.hf-grid-2 > * {
        flex: 0 1 calc((100% - var(--hf-grid-gap)) / 2);
        max-width: calc((100% - var(--hf-grid-gap)) / 2);
    }
    .hf-grid-4 > *,
    .hf-trust-grid > *,
    .hf-addon-grid > *,
    .hf-steps.hf-grid-4 > * {
        flex: 0 1 calc((100% - var(--hf-grid-gap)) / 2);
        max-width: calc((100% - var(--hf-grid-gap)) / 2);
    }
}

@media (min-width: 768px) {
    .hf-grid-3 > *,
    .hf-standard-grid > *,
    .hf-bundle-grid:not(.hf-grid-2) > * {
        flex: 0 1 calc((100% - (var(--hf-grid-gap) * 2)) / 3);
        max-width: calc((100% - (var(--hf-grid-gap) * 2)) / 3);
    }
}

@media (min-width: 1024px) {
    .hf-grid-4 > *,
    .hf-trust-grid > *,
    .hf-addon-grid > *,
    .hf-steps.hf-grid-4 > * {
        flex: 0 1 calc((100% - (var(--hf-grid-gap) * 3)) / 4);
        max-width: calc((100% - (var(--hf-grid-gap) * 3)) / 4);
    }
}

/* Equal-height cards inside grids */
.hf-grid-2 .hf-card,
.hf-grid-3 .hf-card,
.hf-grid-4 .hf-card,
.hf-bundle-grid .hf-card,
.hf-standard-grid .hf-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hf-bundle-card { padding: 1.75rem; position: relative; }
.hf-bundle-card.featured { border-color: rgba(244,196,28,0.45); background: linear-gradient(180deg, rgba(244,196,28,0.08), rgba(5,42,37,0.9)); }
.hf-bundle-tier { font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; letter-spacing: 0.14em; color: rgba(244,196,28,0.55); margin-bottom: 0.5rem; }
.hf-bundle-name { font-family: 'Big Shoulders Display', sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--hf-cream); margin-bottom: 1rem; line-height: 1.25; }
.hf-bundle-list { list-style: none; padding: 0; margin: 0 0 1.25rem; flex: 1; }
.hf-bundle-list li { font-size: 0.85rem; color: rgba(251,241,211,0.65); padding: 0.35rem 0 0.35rem 1.25rem; position: relative; line-height: 1.5; }
.hf-bundle-list li::before { content: ""; position: absolute; left: 0; top: 0.65rem; width: 6px; height: 6px; border-radius: 50%; background: var(--hf-yellow); opacity: 0.7; }

.hf-standard-card { padding: 2rem; }
.hf-standard-icon { width: 48px; height: 48px; color: var(--hf-yellow); margin-bottom: 1rem; }

/* Header placeholder before JS hydrates */
#hf-site-header:not(:empty) { min-height: 72px; }

/* Sections */
.hf-section { padding: clamp(4rem, 3rem + 5vw, 7rem) 5%; position: relative; }
.hf-section-inner { max-width: 1200px; margin: 0 auto; }
.hf-eyebrow {
    font-family: 'Big Shoulders Display', sans-serif; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.28em; text-transform: uppercase; color: rgba(244,196,28,0.75);
    display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.hf-eyebrow::before, .hf-eyebrow::after { content: ""; width: 24px; height: 1px; background: rgba(244,196,28,0.35); }
.hf-section-title {
    font-family: 'Refinity', serif; font-size: clamp(2rem, 1.2rem + 2.8vw, 3.5rem);
    line-height: 1.08; color: var(--hf-cream); margin-bottom: 1.25rem;
}
.hf-section-title em { font-style: italic; color: var(--hf-yellow); }
.hf-section-desc { font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.1rem); color: rgba(251,241,211,0.72); max-width: 620px; line-height: 1.75; }

/* Cards */
.hf-card {
    border-radius: 1.25rem; border: 1px solid var(--hf-border);
    background: linear-gradient(180deg, rgba(7,62,56,0.65), rgba(5,42,37,0.85));
    backdrop-filter: blur(12px); overflow: hidden;
    transition: transform 0.4s var(--hf-ease), border-color 0.4s var(--hf-ease), box-shadow 0.4s var(--hf-ease);
}
.hf-card:hover { transform: translateY(-4px); border-color: rgba(244,196,28,0.35); box-shadow: 0 24px 48px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(244,196,28,0.08); }
.hf-card-body { padding: 1.5rem; }
.hf-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.hf-pill {
    display: inline-flex; padding: 0.3rem 0.75rem; border-radius: 999px;
    font-family: 'Big Shoulders Display', sans-serif; font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    background: rgba(244,196,28,0.1); border: 1px solid rgba(244,196,28,0.25); color: var(--hf-yellow);
}

/* Trust row — uses balanced flex grid from layout utilities */
.hf-trust-item {
    padding: 1.25rem; border-radius: 1rem; border: 1px solid var(--hf-border);
    background: rgba(7,62,56,0.45); text-align: center; height: 100%;
}
.hf-trust-icon { width: 40px; height: 40px; margin: 0 auto 0.75rem; color: var(--hf-yellow); }
.hf-trust-label { font-family: 'Big Shoulders Display', sans-serif; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hf-cream); }

/* Pricing & data tables */
.hf-table-wrap { overflow-x: auto; border-radius: 1rem; border: 1px solid var(--hf-border); }
table.hf-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; table-layout: fixed; }
.hf-table th {
    font-family: 'Big Shoulders Display', sans-serif; font-size: 0.68rem; font-weight: 800;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--hf-yellow);
    padding: 1rem 1.25rem; text-align: left; background: rgba(7,62,56,0.6);
    border-bottom: 1px solid var(--hf-border);
}
.hf-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--hf-border-soft); color: rgba(251,241,211,0.75); }
.hf-table tr:last-child td { border-bottom: none; }
.hf-table .price { font-family: 'JetBrains Mono', monospace; color: var(--hf-yellow); font-weight: 600; }
.hf-table.cols-3 th,
.hf-table.cols-3 td { width: 33.333%; }
.hf-table.cols-2 th:first-child,
.hf-table.cols-2 td:first-child { width: 65%; }
.hf-table.cols-2 th:last-child,
.hf-table.cols-2 td:last-child { width: 35%; }

.hf-pricing-note {
    padding: 1.25rem; border-radius: 1rem; border: 1px solid rgba(244,196,28,0.25);
    background: rgba(244,196,28,0.06); font-size: 0.88rem; color: rgba(251,241,211,0.7);
    line-height: 1.65; margin-top: 1.5rem;
}
.hf-price { font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: 2.5rem; color: var(--hf-yellow); line-height: 1; }
.hf-price sup { font-size: 1rem; vertical-align: super; }
.hf-price-sub { font-size: 0.85rem; color: rgba(251,241,211,0.55); margin-top: 0.25rem; }

/* Forms */
.hf-input, .hf-select, .hf-textarea {
    width: 100%; padding: 0.85rem 1rem; border-radius: 0.75rem;
    border: 1px solid var(--hf-border); background: rgba(7,62,56,0.55);
    color: var(--hf-cream); font-family: 'Inter', sans-serif; font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease; outline: none;
}
.hf-input:focus, .hf-select:focus, .hf-textarea:focus {
    border-color: rgba(244,196,28,0.5); box-shadow: 0 0 0 4px rgba(244,196,28,0.08);
}
.hf-input::placeholder, .hf-textarea::placeholder { color: rgba(251,241,211,0.4); }
.hf-label { display: block; font-family: 'Big Shoulders Display', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251,241,211,0.55); margin-bottom: 0.5rem; }
.hf-form-group { margin-bottom: 1.25rem; }

/* Footer */
.hf-footer {
    padding: 4rem 5% 2.5rem; border-top: 1px solid var(--hf-border-soft);
    background: var(--hf-bg); position: relative; z-index: 1;
}
.hf-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto 3rem; }
.hf-footer-col h4 { font-family: 'Big Shoulders Display', sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hf-yellow); margin-bottom: 1rem; }
.hf-footer-col a, .hf-footer-col p { display: block; font-size: 0.88rem; color: rgba(251,241,211,0.55); text-decoration: none; margin-bottom: 0.5rem; line-height: 1.5; transition: color 0.3s ease; }
.hf-footer-col a:hover { color: var(--hf-yellow); }
.hf-footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--hf-border-soft); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.hf-footer-copy { font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251,241,211,0.35); }
.hf-footer-legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hf-footer-legal a { font-family: 'Big Shoulders Display', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251,241,211,0.45); text-decoration: none; transition: color 0.3s ease; }
.hf-footer-legal a:hover { color: var(--hf-yellow); }

/* Cart drawer */
.hf-cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); z-index: 200;
    background: rgba(5,42,37,0.98); backdrop-filter: blur(24px);
    border-left: 1px solid var(--hf-border);
    transform: translateX(100%); transition: transform 0.45s var(--hf-ease);
    display: flex; flex-direction: column;
}
.hf-cart-drawer.open { transform: translateX(0); }
.hf-cart-overlay {
    position: fixed; inset: 0; z-index: 199; background: rgba(0,0,0,0.55);
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.hf-cart-overlay.open { opacity: 1; pointer-events: auto; }
.hf-cart-header { padding: 1.5rem; border-bottom: 1px solid var(--hf-border-soft); display: flex; align-items: center; justify-content: space-between; }
.hf-cart-header h3 { font-family: 'Big Shoulders Display', sans-serif; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hf-cream); }
.hf-cart-close { background: none; border: none; color: rgba(251,241,211,0.55); cursor: pointer; padding: 0.5rem; transition: color 0.3s ease; }
.hf-cart-close:hover { color: var(--hf-yellow); }
.hf-cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.hf-cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--hf-border-soft); }
.hf-cart-item-info { flex: 1; }
.hf-cart-item-name { font-family: 'Big Shoulders Display', sans-serif; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hf-cream); }
.hf-cart-item-meta { font-size: 0.8rem; color: rgba(251,241,211,0.55); margin-top: 0.25rem; }
.hf-cart-item-price { font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; color: var(--hf-yellow); font-weight: 600; }
.hf-cart-item-remove { background: none; border: none; color: rgba(251,241,211,0.35); cursor: pointer; font-size: 0.75rem; margin-top: 0.5rem; transition: color 0.3s ease; }
.hf-cart-item-remove:hover { color: #ff8888; }
.hf-cart-empty { text-align: center; padding: 3rem 1rem; color: rgba(251,241,211,0.45); font-size: 0.9rem; }
.hf-cart-footer { padding: 1.5rem; border-top: 1px solid var(--hf-border-soft); }
.hf-cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.hf-cart-total-label { font-family: 'Big Shoulders Display', sans-serif; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251,241,211,0.55); }
.hf-cart-total-val { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.75rem; font-weight: 900; color: var(--hf-yellow); }

/* Page hero (inner pages) */
.hf-page-hero {
    padding: clamp(7rem, 5rem + 8vw, 10rem) 5% clamp(3rem, 2rem + 3vw, 5rem);
    background:
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(244,196,28,0.1), transparent 55%),
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(44,152,137,0.18), transparent 50%),
        var(--hf-bg);
    position: relative; overflow: hidden;
}
.hf-page-hero::after {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(244,196,28,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(244,196,28,0.03) 1px, transparent 1px);
    background-size: 48px 48px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    pointer-events: none;
}

/* Reveal animation — visible by default; hidden only when JS is active */
[data-reveal] { opacity: 1; transform: none; }
html.hf-js [data-reveal]:not(.revealed) {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.8s var(--hf-ease), transform 0.8s var(--hf-ease);
}
html.hf-js [data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* Back to top */
.hf-back-top {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(7,62,56,0.88); border: 1px solid var(--hf-border);
    backdrop-filter: blur(14px); display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: var(--hf-yellow);
    opacity: 0; pointer-events: none; transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s var(--hf-ease), border-color 0.3s ease;
}
.hf-back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.hf-back-top:hover { border-color: var(--hf-yellow); box-shadow: 0 8px 24px -8px rgba(244,196,28,0.45); transform: translateY(-2px); }

/* Legal pages */
.hf-legal { max-width: 780px; margin: 0 auto; }
.hf-legal h2 { font-size: 1.35rem; color: var(--hf-cream); margin: 2.5rem 0 1rem; }
.hf-legal h3 { font-size: 1.05rem; color: var(--hf-yellow); margin: 1.75rem 0 0.75rem; font-family: 'Big Shoulders Display', sans-serif !important; letter-spacing: 0.06em; text-transform: uppercase; }
.hf-legal p, .hf-legal li { font-size: 0.92rem; line-height: 1.8; color: rgba(251,241,211,0.72); margin-bottom: 1rem; }
.hf-legal ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.hf-legal li { margin-bottom: 0.5rem; }

/* Split layout */
.hf-split-section { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .hf-split-section { grid-template-columns: 1fr 1fr; } }
.hf-split-img { border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--hf-border); aspect-ratio: 4/3; }
.hf-split-img img { width: 100%; height: 100%; object-fit: cover; }

/* Bundle list */
.hf-bundle-list { list-style: none; padding: 0; margin: 0; }
.hf-bundle-list li { font-size: 0.85rem; color: rgba(251,241,211,0.65); padding: 0.35rem 0 0.35rem 1.25rem; position: relative; line-height: 1.5; }
.hf-bundle-list li::before { content: ""; position: absolute; left: 0; top: 0.65rem; width: 6px; height: 6px; border-radius: 50%; background: var(--hf-yellow); opacity: 0.7; }

/* Toast */
.hf-toast {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px);
    padding: 0.85rem 1.5rem; background: rgba(7,62,56,0.96); backdrop-filter: blur(20px);
    border: 1px solid rgba(244,196,28,0.4); border-radius: 999px;
    font-family: 'Big Shoulders Display', sans-serif; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--hf-yellow);
    z-index: 300; opacity: 0; transition: all 0.4s var(--hf-ease); pointer-events: none;
}
.hf-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
