:root {
    --bg-top: #12090b;
    --bg-bottom: #050507;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.13);
    --surface-glow: rgba(255, 136, 66, 0.18);
    --hero-glow: rgba(195, 48, 48, 0.20);
    --text-primary: #f7efe8;
    --text-secondary: rgba(247, 239, 232, 0.84);
    --text-muted: rgba(247, 239, 232, 0.62);
    --accent: #ff8b47;
    --accent-strong: #b33122;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(255, 120, 74, 0.12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(179, 49, 34, 0.14), transparent 40%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
    color: var(--text-primary);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

body {
    display: flex;
    justify-content: center;
}

.page-shell {
    width: min(100%, 1180px);
    padding: 24px 18px 120px;
}

.frame {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
    border: 1px solid var(--border);
    border-radius: 32px;
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(320px, 500px) minmax(0, 1fr);
    gap: 28px;
    padding: 22px;
    align-items: center;
}

.hero-media-wrap {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    min-height: 560px;
    background: #09090b;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.hero-media-wrap::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent 0%, rgba(5,5,7,0.90) 100%);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 139, 71, 0.18);
    border: 1px solid rgba(255,255,255,0.14);
    color: #ffe5d5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy {
    padding: 8px 8px 8px 0;
}

.hero-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.chip.accent {
    background: rgba(255, 139, 71, 0.16);
    color: #ffe6da;
}

.headline {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.subheading {
    margin: 18px 0 0;
    max-width: 560px;
    color: var(--text-secondary);
    font-size: 21px;
    line-height: 1.35;
}

.trust-lead {
    margin: 18px 0 0;
    color: #ffe3d2;
    font-size: 15px;
    line-height: 1.5;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 62px;
    margin-top: 22px;
    padding: 0 26px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff7f3;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 18px 42px rgba(179, 49, 34, 0.28);
    cursor: pointer;
}

.cta-button.full {
    width: 100%;
}

.cta-arrow {
    font-size: 22px;
    line-height: 1;
}

.hero-note {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 13px;
}

.section {
    padding: 0 22px 22px;
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    gap: 14px;
    margin-bottom: 14px;
}

.section-head h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -0.03em;
}

.section-head p,
.gallery-note,
.social-proof {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.45;
}

.card-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card,
.testimonial-card {
    padding: 18px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05)),
        radial-gradient(circle at top left, var(--surface-glow), transparent 46%);
    border: 1px solid rgba(255,255,255,0.10);
}

.info-card h3,
.testimonial-card strong {
    margin: 0;
    font-size: 18px;
    color: var(--text-primary);
}

.info-card p,
.testimonial-card p,
.testimonial-card span {
    margin: 10px 0 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-head img {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center top;
}

.gallery-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.profile-card {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #09090b;
    color: var(--text-primary);
    cursor: pointer;
    min-height: 220px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.profile-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.profile-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 52%;
    background: linear-gradient(180deg, transparent 0%, rgba(5,5,7,0.90) 100%);
}

.profile-chip,
.profile-meta {
    position: absolute;
    z-index: 1;
}

.profile-chip {
    top: 12px;
    left: 12px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(17, 179, 102, 0.92);
    color: white;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.profile-meta {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    gap: 4px;
    text-align: left;
    color: var(--text-primary);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.profile-meta strong {
    font-size: 16px;
    color: var(--text-primary);
}

.profile-meta small {
    color: rgba(247,239,232,0.78);
    font-size: 12px;
    line-height: 1.4;
}

.social-card {
    padding: 22px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06)),
        radial-gradient(circle at right top, var(--hero-glow), transparent 40%);
    border: 1px solid rgba(255,255,255,0.10);
}

.sticky-cta {
    position: sticky;
    bottom: 18px;
    z-index: 5;
    margin: 0 18px 18px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(10, 10, 12, 0.86);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    backdrop-filter: blur(18px);
}

.sticky-cta .footer-prompt {
    margin: 0 0 10px;
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-media-wrap,
    .hero-image {
        min-height: 420px;
    }

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

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

@media (max-width: 640px) {
    .page-shell {
        padding: 14px 10px 110px;
    }

    .hero-grid,
    .section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .headline {
        font-size: 38px;
    }

    .subheading {
        font-size: 18px;
    }

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

    .sticky-cta {
        margin-left: 10px;
        margin-right: 10px;
        bottom: 10px;
    }
}
