:root {
    --bg: #090506;
    --bg-soft: #14080c;
    --surface: rgba(29, 12, 16, 0.88);
    --surface-strong: rgba(19, 7, 10, 0.95);
    --card: rgba(33, 15, 20, 0.9);
    --card-hover: rgba(46, 16, 24, 0.94);
    --primary: #ba1730;
    --primary-strong: #e11e3c;
    --accent: #c49a54;
    --accent-soft: #f3dfb3;
    --text: #f8f0e6;
    --muted: #d0b7a9;
    --border: rgba(240, 208, 151, 0.18);
    --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100vw - 40px));
    --heading-font: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
    --body-font: "Trebuchet MS", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    position: relative;
    color: var(--text);
    font-family: var(--body-font);
    background: linear-gradient(180deg, #120709 0%, var(--bg) 34%, #070405 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.015), transparent 20%),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 78px,
            rgba(255, 255, 255, 0.015) 79px,
            transparent 80px
        );
    pointer-events: none;
    opacity: 0.45;
    mix-blend-mode: screen;
    z-index: 1;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.page-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(169, 16, 42, 0.18), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(196, 154, 84, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(18, 7, 9, 0.72) 0%, rgba(9, 5, 6, 0.84) 45%, rgba(7, 4, 5, 0.96) 100%);
    pointer-events: none;
}

.page-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    opacity: 0.34;
    filter: saturate(0.92) contrast(1.04);
}

.page-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center top, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.35) 58%, rgba(0, 0, 0, 0.72) 100%),
        linear-gradient(180deg, rgba(7, 4, 5, 0.08) 0%, rgba(7, 4, 5, 0.26) 25%, rgba(7, 4, 5, 0.86) 100%);
}

.page-glow {
    position: fixed;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.22;
    z-index: 1;
}

.page-glow-left {
    top: 120px;
    left: -150px;
    background: rgba(186, 23, 48, 0.55);
}

.page-glow-right {
    top: 460px;
    right: -180px;
    background: rgba(196, 154, 84, 0.35);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(8, 5, 6, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header,
main,
.site-footer {
    position: relative;
    z-index: 2;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 32%),
        linear-gradient(145deg, rgba(225, 30, 60, 0.94), rgba(98, 7, 22, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 26px rgba(186, 23, 48, 0.34);
    font-family: var(--heading-font);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-family: var(--heading-font);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.brand-copy span:last-child {
    color: var(--muted);
    font-size: 0.92rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--muted);
    font-size: 0.95rem;
}

.site-nav a {
    position: relative;
    transition: color 180ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

main section {
    position: relative;
    padding: 42px 0;
}

.hero-section {
    padding: 78px 0 40px;
}

.hero-grid,
.contrast-grid,
.contact-grid {
    display: grid;
    gap: 42px;
    align-items: center;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--accent-soft);
    font-size: 0.82rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 52px;
    height: 1px;
    background: linear-gradient(90deg, rgba(196, 154, 84, 0), rgba(196, 154, 84, 0.9));
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--heading-font);
    line-height: 1.05;
}

h1 {
    font-size: clamp(3rem, 5vw, 5.6rem);
    max-width: 12ch;
    text-wrap: balance;
}

h2 {
    font-size: clamp(2.3rem, 3vw, 3.5rem);
    max-width: 15ch;
}

h3 {
    font-size: 1.55rem;
}

.hero-text,
.section-heading p,
.contrast-copy p,
.contact-copy p,
.faq-item p,
.card p,
.step-card p,
.contact-note p {
    color: var(--muted);
}

.hero-text {
    max-width: 60ch;
    margin: 22px 0 28px;
    font-size: 1.04rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-highlights span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--primary-strong), var(--primary));
    color: #fff5f1;
    box-shadow: 0 18px 36px rgba(186, 23, 48, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 24px 48px rgba(186, 23, 48, 0.4);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.06);
}

.button-block {
    width: 100%;
}

.hero-visual {
    position: relative;
}

.hero-frame {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) + 4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    box-shadow: var(--shadow);
}

.hero-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3)),
        linear-gradient(135deg, rgba(196, 154, 84, 0.2), transparent 30%);
    z-index: 1;
}

.hero-frame img {
    aspect-ratio: 4 / 5;
    width: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    right: -18px;
    bottom: 24px;
    max-width: 260px;
    padding: 18px 18px 16px;
    border-radius: var(--radius-md);
    background: rgba(19, 7, 10, 0.88);
    border: 1px solid rgba(196, 154, 84, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-badge-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--accent-soft);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-badge strong {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.45rem;
    line-height: 1.15;
}

.section-shell {
    padding: 42px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(19, 7, 10, 0.8), rgba(13, 6, 8, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading p {
    max-width: 70ch;
    margin-top: 16px;
}

.pain-grid,
.services-grid,
.steps-grid,
.faq-list {
    display: grid;
    gap: 18px;
}

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

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

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

.card,
.step-card,
.faq-item,
.contact-form {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, var(--card), rgba(16, 8, 10, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.card,
.faq-item {
    padding: 26px;
}

.card-soft {
    min-height: 100%;
}

.service-card {
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-4px);
    background: linear-gradient(180deg, var(--card-hover), rgba(18, 8, 11, 0.98));
    border-color: rgba(196, 154, 84, 0.26);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.contrast-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    padding: 10px 0;
}

.cta-strip-section {
    padding: 18px 0 24px;
}

.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(105, 11, 28, 0.95), rgba(28, 8, 12, 0.96)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    border: 1px solid rgba(196, 154, 84, 0.18);
    box-shadow: var(--shadow);
}

.cta-strip h2 {
    max-width: 18ch;
}

.cta-strip .eyebrow {
    margin-bottom: 12px;
}

.cta-strip-button {
    flex-shrink: 0;
    min-width: 230px;
}

.contrast-copy h2,
.contact-copy h2 {
    margin-bottom: 16px;
}

.contrast-list {
    display: grid;
    gap: 16px;
    padding: 34px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(26, 9, 14, 0.86), rgba(11, 6, 7, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
}

.benefit-item {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.benefit-item span {
    width: 12px;
    height: 12px;
    margin-top: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff5db, var(--accent));
    box-shadow: 0 0 18px rgba(196, 154, 84, 0.28);
}

.benefit-item p {
    margin: 0;
}

.step-card {
    padding: 30px 26px;
    min-height: 100%;
}

.step-number {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent-soft);
    font-size: 0.84rem;
    letter-spacing: 0.24em;
}

.contact-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
}

.contact-note {
    margin-top: 24px;
    padding: 18px 20px;
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: rgba(255, 255, 255, 0.03);
}

.contact-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-soft);
}

.contact-direct-button {
    margin-top: 10px;
}

.contact-form {
    padding: 28px;
}

.contact-form label {
    display: block;
    margin-bottom: 16px;
}

.contact-form label span {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(248, 240, 230, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(196, 154, 84, 0.44);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(196, 154, 84, 0.1);
}

.form-feedback {
    margin: 10px 0 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
}

.form-feedback-error {
    background: rgba(225, 30, 60, 0.14);
    border: 1px solid rgba(225, 30, 60, 0.28);
    color: #ffd7de;
}

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

.faq-item h3 {
    margin-bottom: 10px;
}

.final-image-section {
    padding: 10px 0 24px;
}

.final-image-frame {
    overflow: hidden;
    border-radius: calc(var(--radius-lg) + 4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(22, 8, 11, 0.88), rgba(11, 6, 7, 0.94));
    box-shadow: var(--shadow);
}

.final-image-frame img {
    width: 100%;
    max-height: 720px;
    object-fit: cover;
    object-position: center;
}

.site-footer {
    padding: 28px 0 42px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(248, 240, 230, 0.62);
    font-size: 0.92rem;
}

.rise {
    animation: rise 680ms ease both;
}

.services-grid .service-card:nth-child(2),
.steps-grid .step-card:nth-child(2) {
    animation-delay: 80ms;
}

.services-grid .service-card:nth-child(3),
.steps-grid .step-card:nth-child(3) {
    animation-delay: 140ms;
}

.services-grid .service-card:nth-child(4) {
    animation-delay: 220ms;
}

.services-grid .service-card:nth-child(5) {
    animation-delay: 280ms;
}

.services-grid .service-card:nth-child(6) {
    animation-delay: 340ms;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .contrast-grid,
    .contact-grid,
    .pain-grid,
    .services-grid,
    .steps-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

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

    .hero-badge {
        position: static;
        margin: -28px 20px 0 auto;
    }

    .section-shell {
        padding: 32px 26px;
    }
}

@media (max-width: 760px) {
    .site-header {
        position: static;
    }

    .page-background img {
        object-position: center 32px;
        opacity: 0.28;
    }

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

    .site-nav {
        gap: 12px;
    }

    .hero-section {
        padding-top: 42px;
    }

    h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-shell,
    .contrast-list,
    .contact-form {
        padding: 24px 20px;
    }

    .hero-badge {
        max-width: none;
        margin-inline: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
