:root {
    --bg: #fff8f1;
    --bg-soft: #fff3e2;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --text: #2b1f19;
    --muted: #735b4d;
    --heading: #221510;
    --orange: #f97316;
    --orange-deep: #c2410c;
    --orange-soft: #fed7aa;
    --orange-light: #ffedd5;
    --amber: #f59e0b;
    --ring: rgba(249, 115, 22, 0.22);
    --border: rgba(194, 65, 12, 0.16);
    --shadow: 0 26px 80px rgba(154, 52, 18, 0.13);
    --shadow-small: 0 14px 35px rgba(154, 52, 18, 0.12);
    --radius: 28px;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.75;
    background:
        radial-gradient(circle at top left, rgba(255, 237, 213, 0.96), transparent 34rem),
        radial-gradient(circle at 86% 10%, rgba(254, 215, 170, 0.75), transparent 30rem),
        linear-gradient(135deg, #fffaf4 0%, #fff3e5 46%, #fff9f2 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(249, 115, 22, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 80%);
    z-index: -2;
}

.page-glow {
    position: fixed;
    width: 42rem;
    height: 42rem;
    right: -18rem;
    bottom: -20rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.16), transparent 66%);
    z-index: -1;
}

header {
    position: relative;
    isolation: isolate;
    padding: clamp(72px, 9vw, 132px) 20px clamp(62px, 8vw, 112px);
    overflow: hidden;
    color: #2a1308;
    background:
        linear-gradient(135deg, rgba(255, 247, 237, 0.98), rgba(255, 237, 213, 0.92)),
        radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.22), transparent 24rem);
    border-bottom: 1px solid var(--border);
}

header::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: clamp(28px, 5vw, 56px);
    pointer-events: none;
    z-index: -1;
}

header::after {
    content: "";
    position: absolute;
    inset: auto -10% -38px -10%;
    height: 90px;
    background: linear-gradient(180deg, rgba(255, 248, 241, 0), rgba(255, 248, 241, 0.95));
    z-index: -1;
}

.header-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.72;
    z-index: 0;
}

.hero-orb-one {
    width: 180px;
    height: 180px;
    top: 42px;
    left: min(7vw, 90px);
    background: radial-gradient(circle, rgba(251, 146, 60, 0.34), rgba(251, 146, 60, 0));
}

.hero-orb-two {
    width: 260px;
    height: 260px;
    right: min(6vw, 85px);
    bottom: 22px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.26), rgba(245, 158, 11, 0));
}

h1,
h2,
h3 {
    color: var(--heading);
    line-height: 1.16;
    letter-spacing: -0.035em;
}

h1 {
    margin: 0 0 22px;
    font-size: clamp(2.65rem, 7vw, 5.9rem);
    font-weight: 900;
    text-wrap: balance;
}

header p {
    color: var(--muted);
    font-weight: 600;
    text-wrap: balance;
}

.hero-image-wrap {
    width: min(100%, 980px);
    margin: clamp(30px, 5vw, 52px) auto 0;
    padding: clamp(8px, 1vw, 12px);
    border-radius: clamp(22px, 4vw, 40px);
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(249, 115, 22, 0.22);
    box-shadow: 0 28px 70px rgba(154, 52, 18, 0.16);
    backdrop-filter: blur(18px);
}

.hero-image-wrap picture,
.hero-image-wrap img {
    display: block;
    width: 100%;
}

.hero-image-wrap img {
    height: auto;
    border-radius: clamp(16px, 3vw, 30px);
}

.container {
    width: min(var(--max), calc(100% - 32px));
    margin: clamp(-46px, -5vw, -32px) auto clamp(48px, 7vw, 92px);
    position: relative;
    z-index: 4;
}

.article-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(28px, 5vw, 66px);
    backdrop-filter: blur(22px);
    overflow: hidden;
}

.article-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 7px;
    background: linear-gradient(90deg, #fb923c, #f97316, #f59e0b, #fdba74);
}

.article-card::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    top: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 237, 213, 0.8), rgba(255, 237, 213, 0));
    pointer-events: none;
    z-index: -1;
}

p {
    margin: 0 0 24px;
    font-size: clamp(1.02rem, 1.3vw, 1.12rem);
}

strong {
    color: #9a3412;
    font-weight: 800;
}

h2 {
    margin: clamp(38px, 5vw, 58px) 0 18px;
    font-size: clamp(1.74rem, 3.1vw, 2.58rem);
    position: relative;
    padding-left: 22px;
}

h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.12em;
    bottom: 0.12em;
    width: 6px;
    border-radius: 100px;
    background: linear-gradient(180deg, #fb923c, #f97316, #f59e0b);
    box-shadow: 0 0 0 7px rgba(249, 115, 22, 0.08);
}

h3 {
    margin: 34px 0 14px;
    font-size: clamp(1.2rem, 2.1vw, 1.55rem);
    font-weight: 850;
}

ul {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 18px 0 28px;
    list-style: none;
}

li {
    position: relative;
    padding: 16px 18px 16px 54px;
    border: 1px solid rgba(249, 115, 22, 0.16);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.94), rgba(255, 255, 255, 0.88));
    box-shadow: 0 10px 30px rgba(154, 52, 18, 0.055);
}

li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 1.23em;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #ffffff 0 27%, transparent 30%),
        linear-gradient(135deg, #fb923c, #f97316);
    box-shadow: 0 7px 18px rgba(249, 115, 22, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin: 26px 0 14px;
    padding: 16px 28px;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #f97316, #ea580c 48%, #c2410c);
    box-shadow: 0 18px 38px rgba(234, 88, 12, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
    transform: translateY(-3px);
    filter: saturate(1.08);
    box-shadow: 0 24px 48px rgba(234, 88, 12, 0.34);
}

.cta-button:focus-visible,
.faq-question:focus-visible {
    outline: 4px solid var(--ring);
    outline-offset: 4px;
}

.faq {
    margin-top: clamp(42px, 6vw, 70px);
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid rgba(249, 115, 22, 0.18);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 237, 213, 0.72), rgba(255, 255, 255, 0.9)),
        radial-gradient(circle at 95% 0%, rgba(251, 146, 60, 0.19), transparent 18rem);
    box-shadow: var(--shadow-small);
}

.faq h2 {
    margin-top: 0;
}

.faq-question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    margin: 18px 0 10px;
    padding: 18px 56px 18px 20px;
    color: #7c2d12;
    font-size: clamp(1.03rem, 1.5vw, 1.16rem);
    font-weight: 900;
    border: 1px solid rgba(249, 115, 22, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 22px rgba(154, 52, 18, 0.06);
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange-light);
    color: var(--orange-deep);
    font-size: 1.3rem;
    line-height: 1;
}

.faq-question.is-open::after {
    content: "−";
}

.faq-question:hover {
    transform: translateY(-1px);
    border-color: rgba(249, 115, 22, 0.32);
    background: #ffffff;
}

.faq-question + p {
    margin: 0 0 18px;
    padding: 0 8px 0 20px;
    color: var(--muted);
    overflow: hidden;
    transition: max-height 240ms ease, opacity 220ms ease, margin 220ms ease;
}

.faq-question:not(.is-open) + p {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
}

.faq-question.is-open + p {
    max-height: 220px;
    opacity: 1;
}

.advertising-box {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    margin-top: clamp(44px, 6vw, 68px);
    padding: clamp(24px, 4vw, 42px);
    color: var(--text);
    text-decoration: none;
    text-align: left;
    border: 1px solid rgba(249, 115, 22, 0.22);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.64) 30%, transparent 58%),
        linear-gradient(135deg, rgba(255, 237, 213, 0.96), rgba(255, 247, 237, 0.96) 45%, rgba(254, 215, 170, 0.84));
    box-shadow: 0 24px 60px rgba(154, 52, 18, 0.14);
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.advertising-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(249, 115, 22, 0.24), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.16), transparent 16rem);
    opacity: 0.72;
    pointer-events: none;
}

.advertising-box span {
    position: relative;
    z-index: 1;
}

.advertising-box strong {
    display: inline-block;
    margin-bottom: 8px;
    color: #7c2d12;
    font-size: clamp(1.18rem, 2.3vw, 1.75rem);
    line-height: 1.25;
}

.advertising-box-arrow {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #c2410c);
    box-shadow: 0 14px 32px rgba(194, 65, 12, 0.28);
}

.advertising-box:hover,
.advertising-box:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 30px 72px rgba(154, 52, 18, 0.19);
}

.advertising-box:focus-visible {
    outline: 4px solid var(--ring);
    outline-offset: 4px;
}

footer {
    padding: 34px 20px 46px;
    text-align: center;
    color: #7c4a2d;
    border-top: 1px solid rgba(249, 115, 22, 0.14);
    background: rgba(255, 247, 237, 0.76);
}

footer p {
    margin: 0;
    font-size: 0.98rem;
}

.reveal-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 800px) {
    header {
        padding: 68px 16px 82px;
    }

    header::before {
        inset: 12px;
        border-radius: 28px;
    }

    header p {
        font-size: 1.08rem !important;
    }


    .hero-image-wrap {
        margin-top: 28px;
        border-radius: 22px;
    }

    .advertising-box {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        border-radius: 22px;
    }

    .container {
        width: min(100% - 22px, var(--max));
        margin-top: -36px;
    }

    .article-card {
        padding: 24px 18px 30px;
        border-radius: 22px;
    }

    h2 {
        padding-left: 17px;
    }

    li {
        padding: 14px 14px 14px 46px;
        border-radius: 16px;
    }

    li::before {
        left: 16px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 16px 18px;
        white-space: normal;
    }

    .faq {
        padding: 18px 13px;
        border-radius: 20px;
    }

    .faq-question {
        padding: 15px 48px 15px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}

.hero-image-wrap {
    width: min(980px, 100%);
    margin: clamp(28px, 5vw, 48px) auto 0;
    padding: clamp(8px, 1.4vw, 14px);
    border: 1px solid rgba(249, 115, 22, 0.18);
    border-radius: clamp(22px, 4vw, 38px);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 30px 70px rgba(154, 52, 18, 0.16);
    backdrop-filter: blur(16px);
}

.hero-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: clamp(16px, 3vw, 28px);
    box-shadow: 0 18px 46px rgba(154, 52, 18, 0.13);
}

.advertising-box {
    display: block;
    position: relative;
    margin-top: 50px;
    padding: clamp(24px, 4vw, 42px);
    color: #7c2d12;
    text-align: center;
    font-size: clamp(1.06rem, 1.8vw, 1.25rem);
    text-decoration: none;
    border: 1px solid rgba(249, 115, 22, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.18), transparent 16rem),
        linear-gradient(135deg, rgba(255, 237, 213, 0.98), rgba(255, 255, 255, 0.94));
    box-shadow: 0 24px 60px rgba(154, 52, 18, 0.14);
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.advertising-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border-top: 7px solid #f97316;
    pointer-events: none;
}

.advertising-box::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -70px;
    bottom: -95px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 70%);
    pointer-events: none;
}

.advertising-box strong {
    display: inline-block;
    margin-bottom: 8px;
    color: #9a3412;
    font-size: clamp(1.34rem, 3vw, 2rem);
    line-height: 1.22;
}

.advertising-box:hover,
.advertising-box:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.46);
    box-shadow: 0 32px 74px rgba(154, 52, 18, 0.2);
}

.advertising-box:focus-visible {
    outline: 4px solid var(--ring);
    outline-offset: 4px;
}

@media (max-width: 800px) {
    .hero-image-wrap {
        margin-top: 28px;
        border-radius: 22px;
    }

    .advertising-box {
        border-radius: 22px;
        margin-top: 38px;
    }
}
