:root {
    --page-bg: #f5efe6;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #fffdf9;
    --surface-dark: #16322f;
    --ink: #17302e;
    --muted: #5a6f6b;
    --line: rgba(23, 48, 46, 0.12);
    --accent: #ed380e;
    --accent-dark: #c92f0b;
    --shadow: 0 20px 60px rgba(18, 35, 33, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Figtree', ui-sans-serif, system-ui, sans-serif;
    background: linear-gradient(to bottom, #fff4e9 0%, #fffbf7 50%, #fffbf7 100%, #fff4e9 100%);
    color: var(--ink);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

p,
h1,
h2,
h3,
ul {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

.site-shell {
    min-height: 100vh;
}

.container {
    width: min(1440px, calc(100% - 3rem));
    margin: 0 auto;
}

.narrow {
    width: min(980px, 100%);
}

.home-container {
    width: min(1180px, 100%);
}

.page-hero .narrow {
    width: min(1240px, 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: linear-gradient(180deg, rgba(241, 117, 0, 0.14), rgba(249, 244, 236, 0.94));
    border-bottom: 1px solid rgba(241, 117, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand strong,
.section-heading h2,
.hero-section h1,
.page-hero h1,
.hero-panel h2,
.info-card h3,
.content-card h2,
.check-list h3,
.legal-content h2,
.site-footer h2 {
    font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
}

.brand span:last-child {
    display: flex;
    flex-direction: column;
}

.brand strong {
    font-size: 1.1rem;
    line-height: 1.1;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
}

.site-nav a {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--accent-dark);
    background: rgba(241, 117, 0, 0.14);
}

.hero-section,
.page-hero {
    padding: 5rem 0 3rem;
}

.hero-grid,
.split-grid,
.contact-grid,
.content-grid,
.footer-grid {
    display: grid;
    gap: 1.5rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: start;
    gap: 2rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(22, 50, 47, 0.08);
    color: var(--surface-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-section h1,
.page-hero h1 {
    font-size: clamp(2.4rem, 3.6vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 18ch;
}

.page-hero h1 {
    max-width: 45ch;
}

.hero-copy,
.page-hero p,
.section-heading p,
.info-card p,
.content-card p,
.check-list p,
.legal-content p,
.footer-copy,
.footer-bottom p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-copy {
    max-width: 60ch;
    margin-top: 1.2rem;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.hero-highlights span {
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(241, 117, 0, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
}

.button-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow);
}

.button-primary:hover {
    background: var(--accent-dark);
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.65);
}

.button-secondary:hover {
    border-color: rgba(184, 106, 52, 0.45);
    background: rgba(255, 255, 255, 0.95);
}

.hero-panel,
.info-card,
.content-card {
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1.5rem;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-panel {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 240, 0.9)),
        var(--surface);
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: auto -4rem -4rem auto;
    width: 10rem;
    height: 10rem;
    border-radius: 999px;
    background: rgba(184, 106, 52, 0.14);
    filter: blur(10px);
}

.panel-label {
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-panel h2 {
    margin-top: 0.9rem;
    font-size: 1.7rem;
    line-height: 1.15;
}

.metric-stack {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.metric-stack div {
    padding: 1rem 1rem 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(241, 117, 0, 0.1);
}

.metric-stack strong {
    display: block;
    margin-bottom: 0.4rem;
    font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    font-size: 1rem;
}

.metric-stack span {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-list,
.footer-points {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.feature-list li,
.footer-points li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--muted);
    line-height: 1.6;
}

.feature-list li::before,
.footer-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--accent);
}

.stats-grid,
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stats-grid article {
    padding: 1rem 1.1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid var(--line);
}

.stats-grid strong,
.section-heading h2,
.info-card h3,
.content-card h2,
.check-list h3,
.legal-content h2 {
    display: block;
    margin-bottom: 0.5rem;
}

.stats-grid span {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

.section {
    padding: 2rem 0 4rem;
}

.section-accent {
    padding-bottom: 5rem;
}

.section-heading {
    max-width: 42rem;
    margin-bottom: 1.75rem;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 2.4vw, 3rem);
    line-height: 1.05;
}

.card-grid {
    align-items: stretch;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.trust-strip span {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid var(--line);
    color: var(--muted);
    font-weight: 600;
    text-align: center;
}


.info-card h3,
.content-card h2,
.check-list h3,
.legal-content h2 {
    font-size: 1.35rem;
    line-height: 1.15;
}

.info-card {
    position: relative;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(237, 56, 14, 0.12), rgba(237, 56, 14, 0.06));
    border: 1px solid rgba(237, 56, 14, 0.16);
    color: var(--accent);
    font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
}

.feature-icon i {
    line-height: 1;
}

.feature-icon-small {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.8rem;
    border-radius: 0.85rem;
    font-size: 1.1rem;
}

.content-card .feature-icon,
.info-card .feature-icon {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.split-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.check-list {
    display: grid;
    gap: 1rem;
}

.check-list div {
    padding: 1.3rem 1.4rem;
    border-radius: 1.3rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.58);
}

.page-hero p {
    margin-top: 1rem;
    max-width: 58ch;
}

.content-grid,
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-content {
    display: grid;
    gap: 1.25rem;
    padding: 2rem;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.legal-brand {
    color: var(--accent-dark);
    font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-bullets {
    display: grid;
    gap: 0.7rem;
    margin-top: -0.25rem;
}

.brand-bullets li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--muted);
    line-height: 1.7;
}

.brand-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--accent);
}

.site-footer {
    padding: 1.7rem 0 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 14rem),
        linear-gradient(180deg, #ffd9b5 0%, #ffc089 35%, #ffb066 100%);
}

.footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    padding-bottom: 0.9rem;
    gap: 1.2rem;
}

.footer-brand strong,
.site-footer h2 {
    color: #7b3b00;
}

.footer-brand small,
.footer-copy,
.footer-links a,
.footer-points li,
.footer-bottom p {
    color: rgba(123, 59, 0, 0.88);
}

.footer-links {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.8rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links span {
    color: rgba(123, 59, 0, 0.88);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(123, 59, 0, 0.15);
}

.home-cta-section {
    padding-top: 0;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 1.6rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 236, 0.88));
    border: 1px solid rgba(241, 117, 0, 0.12);
    box-shadow: var(--shadow);
}

.cta-band h2 {
    font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(1.7rem, 2vw, 2.4rem);
    line-height: 1.05;
    max-width: 18ch;
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

@media (max-width: 960px) {
    .header-inner,
    .hero-grid,
    .split-grid,
    .content-grid,
    .contact-grid,
    .footer-grid,
    .stats-grid,
    .card-grid,
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .header-inner {
        display: grid;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .hero-section,
    .page-hero {
        padding-top: 3.5rem;
    }

    .hero-section h1,
    .page-hero h1 {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 640px) {
    .container {
        width: min(100%, calc(100% - 1.5rem));
    }

    .site-nav a,
    .button {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-panel,
    .info-card,
    .content-card,
    .legal-content {
        padding: 1.25rem;
    }
}
