:root {
    --bg: #f5eee2;
    --bg-soft: #ece0cf;
    --paper: #fffaf3;
    --ink: #1e2430;
    --muted: #5f6671;
    --line: #d6c5ae;
    --line-strong: #b99c79;
    --navy: #203447;
    --navy-deep: #162535;
    --sage: #365849;
    --copper: #a14a34;
    --copper-soft: #c87051;
    --gold: #b68d3d;
    --shadow: 0 20px 50px rgba(22, 37, 53, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(182, 141, 61, 0.14), transparent 26%),
        linear-gradient(180deg, #f7f1e6 0%, #f1e8da 100%);
    line-height: 1.65;
}

body.is-locked {
    overflow: hidden;
}

a {
    color: var(--navy);
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1rem;
}

.shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.topline {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.topline a {
    color: #fff;
}

.topline-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(245, 238, 226, 0.88);
    border-bottom: 1px solid rgba(185, 156, 121, 0.35);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
}

.brand strong {
    display: block;
    font-size: 24px;
    font-family: "Cormorant Garamond", serif;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--navy), var(--sage));
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.main-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.main-nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
}

.main-nav a:hover {
    color: var(--copper);
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
    padding: 52px 0 36px;
}

.kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(32, 52, 71, 0.07);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 18px;
    font-size: clamp(3.2rem, 5vw, 5.5rem);
}

.lead {
    margin-top: 20px;
    font-size: 18px;
    color: var(--muted);
    max-width: 59ch;
}

.hero-actions,
.age-actions,
.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-align: center;
    transition: 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:focus-visible {
    outline: 3px solid rgba(161, 74, 52, 0.28);
    outline-offset: 2px;
}

.button-primary {
    background: linear-gradient(145deg, var(--copper), var(--copper-soft));
    color: #fff;
    box-shadow: 0 10px 24px rgba(161, 74, 52, 0.22);
}

.button-primary:hover {
    box-shadow: 0 14px 28px rgba(161, 74, 52, 0.3);
}

.button-secondary {
    background: rgba(255, 250, 243, 0.72);
    border-color: var(--line-strong);
    color: var(--navy);
}

.button-secondary:hover {
    background: rgba(255, 250, 243, 0.96);
    border-color: var(--copper);
    color: var(--navy-deep);
}

.button-small {
    min-height: 40px;
    padding: 0 18px;
}

.stat-card,
.feature-card,
.offer-card,
.review-panel,
.mood-note,
.matrix,
.safer-card,
.article-card {
    background: rgba(255, 250, 243, 0.84);
    border: 1px solid rgba(185, 156, 121, 0.4);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 18px;
    border-radius: 18px;
}

.stat-card strong {
    display: block;
    font-size: 30px;
    color: var(--navy);
}

.stat-card span {
    color: var(--muted);
    font-size: 13px;
}

.hero-media img,
.mood-card img,
.media-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-media {
    position: relative;
}

.hero-media img {
    min-height: 540px;
}

.photo-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(22, 37, 53, 0.78);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
}

.signal-grid strong,
.offer-meta strong,
.safe-number {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    color: var(--navy);
}

.signal-grid span,
.offer-meta span {
    color: var(--muted);
    font-size: 13px;
}

.section {
    padding: 82px 0 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading h2 {
    margin-top: 18px;
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.section-heading p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 17px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card {
    padding: 26px;
    border-radius: 22px;
}

.feature-index {
    color: var(--copper);
    font-weight: 800;
    letter-spacing: 0.14em;
    font-size: 12px;
}

.feature-card h3 {
    margin-top: 12px;
    font-size: 32px;
}

.feature-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.offer-card {
    padding: 24px;
    border-radius: 24px;
}

.offer-highlight {
    background: linear-gradient(180deg, rgba(32, 52, 71, 0.97), rgba(28, 47, 64, 0.95));
    color: rgba(255, 255, 255, 0.92);
}

.offer-highlight p,
.offer-highlight li,
.offer-highlight .offer-meta span {
    color: rgba(255, 255, 255, 0.74);
}

.offer-highlight .offer-meta strong,
.offer-highlight h3 {
    color: #fff;
}

.offer-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.offer-rank {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(161, 74, 52, 0.12);
    color: var(--copper);
    font-weight: 800;
}

.offer-logo {
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-logo img {
    max-height: 42px;
    object-fit: contain;
}

.offer-card h3 {
    margin-top: 22px;
    font-size: 34px;
}

.offer-card p {
    margin-top: 10px;
    color: var(--muted);
}

.offer-points {
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.offer-points li + li {
    margin-top: 8px;
}

.offer-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin: 22px 0 18px;
}

.mood-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.85fr;
    gap: 18px;
}

.mood-card {
    position: relative;
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mood-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 26, 38, 0.82));
}

.mood-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    color: #fff;
}

.mood-copy h3 {
    font-size: 34px;
    margin-bottom: 10px;
}

.mood-copy p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.mood-note {
    padding: 28px;
    border-radius: 28px;
}

.mood-note h3 {
    margin-top: 18px;
    font-size: 34px;
}

.mood-note p {
    margin-top: 14px;
    color: var(--muted);
}

.mood-note a {
    display: inline-block;
    margin-top: 18px;
    font-weight: 800;
    color: var(--copper);
}

.review-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-panel {
    padding: 26px;
    border-radius: 24px;
}

.review-heading {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-panel h3 {
    font-size: 35px;
}

.review-panel p {
    margin: 16px 0 22px;
    color: var(--muted);
}

.review-panel a {
    color: var(--copper);
    font-weight: 800;
}

.pill {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(54, 88, 73, 0.1);
    color: var(--sage);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.matrix {
    border-radius: 24px;
    overflow: hidden;
}

.matrix-row {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1fr;
    gap: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(185, 156, 121, 0.35);
}

.matrix-row:last-child {
    border-bottom: 0;
}

.matrix-head {
    background: rgba(32, 52, 71, 0.08);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy);
}

.safer-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr;
    gap: 24px;
    align-items: stretch;
}

.safer-copy {
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(32, 52, 71, 0.96), rgba(25, 42, 58, 0.96));
    color: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.safer-copy h2 {
    margin-top: 18px;
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.safer-copy p,
.safer-copy li {
    color: rgba(255, 255, 255, 0.76);
}

.safer-copy .button-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
}

.safer-copy .button-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.72);
    color: #fff;
}

.safer-list {
    padding-left: 18px;
    margin: 18px 0 0;
}

.safer-list li + li {
    margin-top: 8px;
}

.safer-card {
    padding: 34px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.safer-card p {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.safer-card span {
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 22px 24px;
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.86);
    border: 1px solid rgba(185, 156, 121, 0.35);
    box-shadow: var(--shadow);
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    color: var(--navy);
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list p {
    margin-top: 12px;
    color: var(--muted);
}

.site-footer {
    margin-top: 82px;
    padding: 52px 0 30px;
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
    color: #fff;
}

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

.footer-grid h4 {
    margin-bottom: 12px;
    font-size: 28px;
}

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

.footer-grid li + li {
    margin-top: 9px;
}

.footer-brand {
    margin-bottom: 14px;
}

.footer-contact {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.regulator-strip {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    padding: 26px 0;
}

.regulator-strip img {
    height: 34px;
    width: auto;
}

.age-badge {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--copper), var(--gold));
    color: #fff;
    font-weight: 800;
}

.footer-bottom {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
    margin: 0;
}

.page-hero {
    padding: 56px 0 18px;
}

.page-hero h1 {
    margin-top: 18px;
    font-size: clamp(3rem, 5vw, 5rem);
}

.page-hero p {
    margin-top: 16px;
    max-width: 64ch;
    color: var(--muted);
    font-size: 18px;
}

.article-card {
    padding: 34px;
    border-radius: 30px;
    margin-top: 24px;
}

.article-card h2 {
    margin-top: 32px;
    font-size: 38px;
}

.article-card h2:first-child {
    margin-top: 0;
}

.article-card h3 {
    margin-top: 26px;
    font-size: 30px;
}

.article-card p,
.article-card li {
    color: var(--muted);
}

.article-card ul {
    padding-left: 20px;
}

.callout {
    margin: 20px 0;
    padding: 20px;
    border-left: 4px solid var(--copper);
    border-radius: 18px;
    background: rgba(161, 74, 52, 0.07);
}

.article-meta {
    margin-top: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th,
.table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid rgba(185, 156, 121, 0.35);
    vertical-align: top;
}

.table th {
    color: var(--navy);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(18, 37, 53, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
}

.age-gate.hidden {
    display: none;
}

.age-card {
    width: min(560px, 100%);
    padding: 34px;
    border-radius: 30px;
    background: var(--paper);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.age-card h2 {
    margin-top: 16px;
    font-size: 44px;
}

.age-card p {
    margin-top: 14px;
    color: var(--muted);
}

.fine-print {
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: min(420px, calc(100% - 24px));
    display: none;
    justify-content: flex-start;
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(22, 37, 53, 0.96);
    color: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    z-index: 90;
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner .button-primary {
    box-shadow: none;
}

.cookie-banner .button-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.32);
    color: rgba(255, 255, 255, 0.88);
}

.cookie-banner .button-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.56);
    color: #fff;
}

@media (max-width: 1080px) {
    .hero,
    .safer-panel,
    .footer-grid,
    .review-stack,
    .feature-grid,
    .offer-grid,
    .mood-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-media img {
        min-height: 420px;
    }

}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 24px, 1180px);
    }

    .topline-inner,
    .header-inner,
    .cookie-banner,
    .hero-actions,
    .feature-grid,
    .offer-grid,
    .mood-grid,
    .review-stack,
    .footer-grid,
    .safer-panel {
        grid-template-columns: 1fr;
    }

    .topline-inner,
    .header-inner,
    .main-nav,
    .age-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        width: auto;
    }

    .main-nav {
        gap: 12px;
    }

    .hero {
        padding-top: 36px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 46px;
    }

    .hero-media img,
    .mood-card {
        min-height: 300px;
    }

    .matrix-row {
        grid-template-columns: 1fr;
    }

    .article-card,
    .safer-copy,
    .safer-card,
    .age-card {
        padding: 24px;
    }
}
