:root {
    --primary-color: #2f6a44;
    --ink-strong: #12202a;
    --ink-soft: #52606d;
    --sand: #f5efe5;
    --surface: #fffdf9;
    --line: #d9dfd7;
    --shadow: 0 24px 60px rgba(18, 32, 42, 0.08);
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(47, 106, 68, 0.12), transparent 28%),
        linear-gradient(180deg, #f6f2ea 0%, #f9faf7 30%, #ffffff 100%);
    color: var(--ink-strong);
    font-family: "Aptos", "Segoe UI Variable Text", "Trebuchet MS", sans-serif;
}

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

img {
    max-width: 100%;
}

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

.container {
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(255, 253, 249, 0.88);
    border-bottom: 1px solid rgba(18, 32, 42, 0.08);
}

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

.brand {
    display: grid;
    gap: 0.15rem;
}

.brand-kicker,
.eyebrow,
.panel-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
}

.brand-title,
.footer-title {
    font-size: 1.08rem;
    font-weight: 700;
}

.header-call,
.footer-call,
.button {
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-call,
.footer-call {
    padding: 0.8rem 1.1rem;
    background: var(--ink-strong);
    color: #fff;
}

.header-call:hover,
.footer-call:hover,
.button:hover,
.mobile-callbar:hover {
    transform: translateY(-1px);
}

.hero {
    padding: 4.5rem 0 3rem;
}

.hero-grid,
.section-split {
    display: grid;
    gap: 1.5rem;
}

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

.hero h1,
.section-heading h2 {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    letter-spacing: -0.03em;
}

.hero h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 0.95;
}

.hero-copy,
.support-copy,
.footer-copy,
.info-card p,
.gallery-card p,
.faq-item p,
.stack-item,
.stat-list dt {
    color: var(--ink-soft);
    line-height: 1.65;
}

.hero-copy {
    max-width: 58ch;
    margin: 1.2rem 0 0;
    font-size: 1.05rem;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    box-shadow: var(--shadow);
}

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

.button-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink-strong);
    border: 1px solid rgba(18, 32, 42, 0.1);
}

.hero-points {
    display: grid;
    gap: 0.7rem;
    margin: 1.8rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.hero-points li::before,
.stack-item::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    background: var(--primary-color);
    flex: 0 0 auto;
}

.hero-panel,
.info-card,
.gallery-card,
.stack-item,
.faq-item,
.phone-band,
.emergency-callout {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 32, 42, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 1.4rem;
}

.stat-list {
    display: grid;
    gap: 1rem;
    margin: 1rem 0 0;
}

.stat-list div {
    padding-top: 1rem;
    border-top: 1px solid rgba(18, 32, 42, 0.08);
}

.stat-list div:first-child {
    padding-top: 0;
    border-top: 0;
}

.stat-list dd {
    margin: 0.35rem 0 0;
    font-size: 1.1rem;
    font-weight: 700;
}

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

.section-alt {
    background: linear-gradient(180deg, rgba(18, 32, 42, 0.02), rgba(18, 32, 42, 0));
}

.section-accent {
    padding: 4rem 0;
}

.phone-band,
.emergency-callout {
    display: grid;
    gap: 0.9rem;
    padding: 1.8rem;
    text-align: center;
}

.phone-band h2,
.emergency-callout h2 {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    letter-spacing: -0.03em;
}

.phone-band-compact {
    max-width: 760px;
    margin: 0 auto;
}

.section-heading {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.section-heading.left {
    margin-bottom: 1rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
}

.card-grid,
.gallery-grid,
.chip-list,
.faq-list {
    display: grid;
    gap: 1rem;
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.info-card,
.gallery-card {
    padding: 1.3rem;
}

.info-card h3,
.gallery-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.15rem;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.trust-grid {
    display: grid;
    gap: 1rem;
}

.trust-card {
    padding: 1.1rem;
}

.gallery-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.gallery-visual span {
    display: grid;
    place-items: center;
    min-height: 120px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(18, 32, 42, 0.08), rgba(18, 32, 42, 0.02)),
        repeating-linear-gradient(45deg, rgba(18, 32, 42, 0.04) 0, rgba(18, 32, 42, 0.04) 12px, transparent 12px, transparent 24px);
    font-weight: 700;
}

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

.stack-list {
    display: grid;
    gap: 0.9rem;
}

.stack-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.1rem;
}

.chip-list {
    grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(18, 32, 42, 0.12);
    background: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.site-footer {
    padding: 1rem 0 5.5rem;
}

.mobile-callbar {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    background: var(--ink-strong);
    color: #fff;
    box-shadow: 0 24px 50px rgba(18, 32, 42, 0.3);
    transform: translateY(140%);
    transition: transform 180ms ease;
}

.mobile-callbar.is-visible {
    transform: translateY(0);
}

@media (max-width: 860px) {
    .hero-grid,
    .section-split {
        grid-template-columns: 1fr;
    }

    .header-inner,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-callbar {
        display: flex;
    }

    .site-footer {
        padding-bottom: 6.5rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 3.4rem;
    }

    .hero h1 {
        max-width: none;
    }

    .button,
    .header-call,
    .footer-call {
        width: 100%;
    }
}