:root {
    --bg: #f3efe7;
    --surface: rgba(255, 255, 255, 0.74);
    --surface-strong: rgba(255, 255, 255, 0.9);
    --ink: #10151a;
    --muted: #4b5561;
    --line: rgba(16, 21, 26, 0.12);
    --accent: #bf6a2f;
    --accent-dark: #8c4318;
    --accent-soft: rgba(191, 106, 47, 0.12);
    --shadow: 0 30px 80px rgba(26, 31, 38, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --content-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Avenir Next", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(191, 106, 47, 0.22), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(31, 43, 58, 0.16), transparent 24%),
        linear-gradient(180deg, #faf7f1 0%, #ebe4d8 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(16, 21, 26, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 21, 26, 0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 92%);
}

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

body,
a,
p,
li,
dd {
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    width: min(calc(100% - 32px), var(--content-width));
    margin: 0 auto;
    padding: 24px 0 48px;
    position: relative;
    z-index: 1;
}

.hero,
.section,
.legal-card,
.site-footer,
.legal-header {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero {
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: linear-gradient(145deg, rgba(18, 24, 31, 0.92), rgba(30, 39, 48, 0.84));
    color: #f5f1eb;
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 106, 47, 0.42), transparent 70%);
}

.topbar,
.hero-grid,
.section,
.contact-section,
.site-footer,
.legal-header {
    display: grid;
    gap: 24px;
}

.topbar {
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 36px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    max-width: 360px;
}

.brand-mark-hero {
    padding: 14px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 231, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: 0 20px 35px rgba(5, 10, 15, 0.22);
}

.brand-mark.small {
    max-width: 220px;
}

.topbar-actions,
.footer-links,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.ghost-link {
    color: rgba(245, 241, 235, 0.86);
    font-size: 0.98rem;
}

.ghost-link:hover,
.footer-links a:hover,
.contact-link:hover {
    color: #ffffff;
}

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

.eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
}

h1,
h2,
h3,
dt {
    font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin: 0;
}

h1 {
    font-size: clamp(2rem, 4vw, 4.5rem);
    max-width: 18ch;
    overflow-wrap: normal;
    hyphens: manual;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: 1.45rem;
}

.lead,
.section-heading p,
.hero-panel p,
.benefit-grid p,
.faq-item p,
.contact-copy p,
.legal-content p,
.info-card p {
    margin: 0;
    color: inherit;
}

.lead {
    font-size: 1.1rem;
    color: rgba(245, 241, 235, 0.82);
    max-width: 62ch;
    margin-top: 20px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, #d98245, var(--accent-dark));
    color: #fffaf6;
    box-shadow: 0 18px 35px rgba(191, 106, 47, 0.28);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: #f5f1eb;
}

.signal-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 12px;
}

.signal-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(245, 241, 235, 0.82);
}

.signal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ecaa76, #b8571a);
    box-shadow: 0 0 0 6px rgba(191, 106, 47, 0.12);
}

.hero-panel,
.info-card,
.benefit-grid article,
.faq-item,
.contact-card,
.legal-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: 0 18px 40px rgba(18, 24, 31, 0.08);
}

.hero-panel {
    color: var(--ink);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 238, 0.82));
    padding: 24px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.status-pill::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2f9d57;
    box-shadow: 0 0 0 4px rgba(47, 157, 87, 0.15);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0 0;
}

.status-grid div {
    padding-top: 14px;
    border-top: 1px solid rgba(16, 21, 26, 0.08);
}

.status-grid dt {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.status-grid dd {
    margin: 0;
    color: var(--muted);
}

main {
    display: grid;
    gap: 22px;
    margin-top: 22px;
}

.section,
.contact-section,
.legal-header {
    padding: 34px;
    border-radius: var(--radius-xl);
    background: var(--surface-strong);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow);
}

.section-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.section-heading.narrow {
    max-width: 760px;
}

.card-grid,
.benefit-grid,
.faq-list {
    display: grid;
    gap: 18px;
}

.card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.info-card,
.benefit-grid article,
.contact-card,
.legal-card {
    padding: 24px;
}

.info-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 236, 0.9));
}

.info-card h3,
.benefit-grid h3,
.faq-item h3,
.contact-label {
    margin-bottom: 12px;
}

.accent-section {
    background: linear-gradient(135deg, rgba(255, 245, 236, 0.95), rgba(244, 236, 225, 0.85));
}

.contact-section {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    align-items: center;
}

.contact-card {
    background: linear-gradient(180deg, rgba(22, 30, 39, 0.95), rgba(29, 38, 47, 0.92));
    color: #f7f3ed;
    border-color: rgba(255, 255, 255, 0.08);
}

.contact-label {
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-address {
    color: rgba(247, 243, 237, 0.72);
    margin: 12px 0 0;
}

.hero-actions.compact {
    margin-top: 24px;
}

.site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-top: 22px;
    padding: 24px 28px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
}

.footer-links a {
    color: var(--ink);
    font-weight: 700;
}

.legal-page {
    background:
        radial-gradient(circle at top right, rgba(191, 106, 47, 0.16), transparent 22%),
        linear-gradient(180deg, #f8f4ee 0%, #ede5d8 100%);
}

.legal-shell {
    max-width: 920px;
}

.legal-header {
    grid-template-columns: auto 1fr;
    align-items: center;
}

.legal-content {
    display: grid;
    gap: 18px;
}

.legal-card h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.legal-card a {
    color: var(--accent-dark);
    font-weight: 700;
}

.legal-footer {
    margin-top: 18px;
}

@media (max-width: 1040px) {
    .hero-grid,
    .contact-section,
    .card-grid,
    .benefit-grid,
    .faq-list,
    .status-grid,
    .site-footer,
    .legal-header {
        grid-template-columns: 1fr;
    }

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

    .topbar-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .site-shell {
        width: min(calc(100% - 20px), var(--content-width));
        padding-top: max(12px, env(safe-area-inset-top));
    }

    .hero,
    .section,
    .contact-section,
    .site-footer,
    .legal-header,
    .legal-card {
        padding: 22px;
        border-radius: 24px;
    }

    .hero {
        padding: 18px;
    }

    .topbar {
        margin-bottom: 18px;
    }

    .brand-mark {
        max-width: 240px;
    }

    .brand-mark-hero {
        padding: 10px 12px;
        border-radius: 16px;
    }

    h1 {
        font-size: clamp(1.75rem, 9.4vw, 2.6rem);
        max-width: 13.5ch;
    }

    h2 {
        font-size: clamp(1.75rem, 9vw, 2.4rem);
    }

    .button,
    .ghost-link,
    .footer-links a,
    .contact-link {
        width: 100%;
        justify-content: center;
    }

    .topbar-actions,
    .hero-actions,
    .footer-links {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .site-shell {
        width: min(calc(100% - 14px), var(--content-width));
    }

    .hero,
    .section,
    .contact-section,
    .site-footer,
    .legal-header,
    .legal-card {
        padding: 16px;
        border-radius: 20px;
    }

    .brand-mark {
        max-width: 280px;
    }

    .brand-mark-hero {
        padding: 8px 10px;
        border-radius: 14px;
    }

    .topbar {
        margin-bottom: 14px;
    }

    h1 {
        font-size: clamp(1.60rem, 8.5vw, 2.0rem);
	max-width: 280px;
    }

    .lead {
        font-size: 1rem;
        margin-top: 14px;
    }
}

