:root {
    --bg: #0b1220;
    --bg-soft: #121d31;
    --bg-card: rgba(15, 24, 41, 0.82);
    --bg-card-strong: rgba(11, 18, 32, 0.92);
    --text: #f7f3ea;
    --text-soft: #d3d8e5;
    --text-muted: #93a0b8;
    --line: rgba(255, 255, 255, 0.09);
    --gold: #d4a64a;
    --gold-soft: #f2d28b;
    --red: #b33a30;
    --red-soft: #e26a51;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius: 28px;
    --radius-sm: 18px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(212, 166, 74, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(179, 58, 48, 0.15), transparent 26%),
        linear-gradient(180deg, #09111e 0%, #0c1525 52%, #0e1828 100%);
    overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    color: var(--gold-soft);
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 20px 0;
    transition: var(--transition);
}

.site-nav.scrolled {
    background: rgba(7, 13, 24, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.07);
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: var(--text-soft);
    font-size: 14px;
}

.nav-links a:hover,
.footer-links a:hover,
.faq-answer a:hover {
    color: var(--gold-soft);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: #20160a;
    box-shadow: 0 18px 40px rgba(212, 166, 74, 0.24);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
    border-color: rgba(242, 210, 139, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.btn-large {
    min-height: 58px;
    padding: 0 30px;
    font-size: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 0;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: var(--transition);
}

.hero {
    position: relative;
    padding: 72px 0 110px;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(5, 9, 18, 0.78), rgba(11, 18, 32, 0.7)),
        url('./ad-california-1.png') center/cover no-repeat;
    opacity: 0.4;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
}

.hero-orb-left {
    width: 340px;
    height: 340px;
    left: -90px;
    top: 90px;
    background: rgba(212, 166, 74, 0.18);
}

.hero-orb-right {
    width: 420px;
    height: 420px;
    right: -120px;
    top: 10px;
    background: rgba(179, 58, 48, 0.14);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: center;
}

.eyebrow,
.section-tag,
.panel-tag,
.gallery-kicker,
.offer-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(242, 210, 139, 0.22);
    background: rgba(212, 166, 74, 0.12);
    color: var(--gold-soft);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.story-copy h2,
.cta-box h2,
.gallery-head h2 {
    margin: 18px 0 0;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.hero-copy h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    max-width: 12ch;
}

.hero-copy p {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.75;
}

.offer-strip {
    display: grid;
    gap: 8px;
    margin-top: 28px;
    padding: 20px 22px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(212, 166, 74, 0.18), rgba(179, 58, 48, 0.2)),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-strip strong {
    font-size: 28px;
    font-weight: 800;
}

.offer-strip span:last-child {
    color: var(--text-soft);
}

.hero-actions {
    margin-top: 28px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.point-card,
.story-panel,
.benefit-card,
.step-card,
.faq-item,
.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.point-card {
    padding: 18px;
    border-radius: 20px;
}

.point-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.point-card span {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.6;
}

.gallery-shell {
    padding: 26px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(17, 28, 47, 0.94), rgba(9, 15, 27, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow);
}

.gallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.gallery-head h2 {
    font-size: 34px;
}

.gallery-head p {
    max-width: 250px;
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.gallery-stage {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.gallery-window {
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 18px;
    transition: transform 0.4s ease;
}

.gallery-card {
    min-width: calc(50% - 9px);
    border-radius: 22px;
    overflow: hidden;
    background: var(--bg-card-strong);
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 0.72;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.gallery-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.09);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-arrow:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.16);
}

.gallery-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.gallery-arrow svg {
    width: 22px;
    height: 22px;
}

.gallery-note {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 12px;
}

main section {
    padding: 110px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 32px;
    align-items: start;
}

.story-copy h2,
.section-heading h2,
.cta-box h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.story-copy p,
.section-heading p,
.faq-answer p,
.footer-branding p,
.footer-meta p {
    color: var(--text-soft);
    line-height: 1.8;
}

.story-copy p + p {
    margin-top: 16px;
}

.story-panel {
    padding: 28px;
    border-radius: var(--radius);
}

.snapshot-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
}

.snapshot-list li {
    color: var(--text-soft);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.snapshot-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.benefits-section {
    background: rgba(255, 255, 255, 0.02);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading p {
    margin-top: 18px;
    font-size: 17px;
}

.benefit-grid,
.steps-grid {
    display: grid;
    gap: 22px;
}

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

.benefit-card,
.step-card {
    padding: 28px;
    border-radius: 24px;
}

.benefit-card h3,
.step-card h3 {
    margin: 18px 0 10px;
    font-size: 22px;
}

.benefit-card p,
.step-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.benefit-number,
.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 166, 74, 0.24), rgba(179, 58, 48, 0.2));
    color: var(--gold-soft);
    font-weight: 800;
}

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

.faq-section {
    background: rgba(255, 255, 255, 0.02);
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    border-radius: 24px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text);
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}

.faq-icon {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: var(--gold-soft);
    transition: transform var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 28px 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-answer a {
    color: var(--gold-soft);
}

.cta-section {
    padding-top: 40px;
}

.cta-box {
    padding: 40px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(212, 166, 74, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(179, 58, 48, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(14, 22, 36, 0.98), rgba(9, 15, 26, 0.95));
    text-align: center;
}

.cta-box p {
    margin: 18px auto 0;
    max-width: 620px;
    color: var(--text-soft);
    font-size: 18px;
}

.cta-actions {
    justify-content: center;
    margin-top: 28px;
}

.site-footer {
    padding: 56px 0 40px;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.footer-branding p {
    max-width: 400px;
}

.footer-links {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-meta p {
    color: var(--text-muted);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .story-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-points,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .site-nav {
        padding: 14px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-panel {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-radius: 24px;
        background: rgba(7, 13, 24, 0.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .nav-panel.active {
        display: flex;
    }

    .nav-links,
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero {
        padding-top: 36px;
    }

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

    .gallery-arrow {
        display: none;
    }
}

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

    main section {
        padding: 88px 0;
    }

    .hero-copy p,
    .section-heading p,
    .cta-box p {
        font-size: 16px;
    }

    .offer-strip strong {
        font-size: 22px;
    }

    .gallery-shell,
    .story-panel,
    .benefit-card,
    .step-card,
    .cta-box {
        padding: 22px;
    }

    .gallery-card {
        min-width: 100%;
    }

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