/* ================================
   Rare Kings LLC — Main Stylesheet
   ================================ */

:root {
    --crimson: #8b0000;
    --crimson-mid: #6b0000;
    --crimson-deep: #3d0000;
    --crimson-dark: #1a0000;
    --gold: #c9a84c;
    --gold-light: #e8c96d;
    --gold-pale: #fdf6e3;
    --gold-faint: rgba(201, 168, 76, 0.1);
    --white: #ffffff;
    --off-white: #f9f5ef;
    --gray-200: #e2e8f0;
    --gray-500: #64748b;
    --gray-800: #1e293b;
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.25);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--crimson-dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 0, 0, 0.97);
    backdrop-filter: blur(16px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
}

.crown {
    color: var(--gold);
    font-size: 1.2rem;
}

.logo-rare {
    color: var(--white);
}

.logo-kings {
    color: var(--gold);
}

.logo-llc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.1);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--crimson-dark) !important;
    font-weight: 700 !important;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.05em;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 0, 0, 0.3) 0%, rgba(26, 0, 0, 0.6) 60%, var(--crimson-dark) 100%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 40px,
            rgba(201, 168, 76, 0.02) 40px,
            rgba(201, 168, 76, 0.02) 41px);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(139, 0, 0, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 100% 100% at 50% 100%, var(--crimson-dark) 20%, transparent 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold-light);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-gold {
    color: var(--gold-light);
}

.hero-crown {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--gold);
    margin-bottom: 8px;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.6));
    animation: crownGlow 3s ease-in-out infinite;
}

@keyframes crownGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(201, 168, 76, 1));
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.75;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
}

.tag {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold-light);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.btn-gold {
    background: var(--gold);
    color: var(--crimson-dark);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.06em;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold-faint);
}

.btn-crimson {
    background: var(--crimson);
    color: var(--white);
    border-color: var(--gold);
}

.btn-crimson:hover {
    background: var(--crimson-mid);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--crimson-dark);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

/* ── DEAL BANNER ── */
.deal-banner {
    background: linear-gradient(90deg, var(--gold) 0%, #e8c96d 50%, var(--gold) 100%);
    padding: 32px 24px;
}

.deal-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.deal-banner-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--crimson-dark);
    margin-bottom: 4px;
}

.deal-banner-text p {
    color: rgba(26, 0, 0, 0.7);
    font-size: 0.95rem;
}

/* ── SECTION LAYOUT ── */
.section {
    padding: 96px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.section-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ── HOW IT WORKS ── */
.how-it-works {
    background: var(--crimson-deep);
}

.steps {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step {
    flex: 1;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.step:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-4px);
}

.step-num {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.2);
    margin-bottom: 12px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.step h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.step p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
}

.step-connector {
    font-size: 1.5rem;
    color: rgba(201, 168, 76, 0.4);
    flex-shrink: 0;
}

/* ── SERVICES ── */
.services-section {
    background: rgba(61, 0, 0, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.service-card {
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.88rem;
    color: var(--gold-light);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.65;
}

.services-note {
    text-align: center;
    color: rgba(201, 168, 76, 0.6);
    font-size: 0.82rem;
    font-style: italic;
}

/* ── WHY US ── */
.why-section {
    background: var(--crimson-deep);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.why-content>p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 36px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-point strong {
    display: block;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 4px;
}

.why-point p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.why-card-main {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-mid) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-gold), inset 0 0 60px rgba(0, 0, 0, 0.3);
}

.why-crown {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 16px;
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.6));
}

.why-card-main h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
}

.why-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.why-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 24px;
}

.why-stats {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    margin-bottom: 28px;
}

.why-stat {
    text-align: center;
}

.stat-val {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-lbl {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why-phone {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.why-phone:hover {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-mid) 100%);
    padding: 96px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.cta-crown {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
    filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.7));
}

.cta-inner h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── DEAL DROP FORM ── */
.deal-page {
    background: var(--crimson-dark);
    min-height: 100vh;
}

.deal-hero {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-deep) 100%);
    padding: 160px 24px 80px;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.deal-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.deal-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

.deal-form-section {
    padding: 80px 24px;
}

.deal-form-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.deal-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.deal-info p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.deal-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.deal-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.deal-perk-icon {
    font-size: 1.3rem;
}

.deal-perk strong {
    color: var(--gold-light);
}

.deal-phone-cta {
    margin-top: 32px;
    padding: 24px;
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius);
    text-align: center;
}

.deal-phone-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.deal-phone-cta a {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.deal-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.deal-form-wrapper h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
    background: var(--crimson-deep);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-submit {
    width: 100%;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.08em;
    font-size: 1rem;
    margin-top: 8px;
}

/* ── ABOUT PAGE ── */
.about-section {
    padding: 80px 24px;
}

.about-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.about-value {
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.about-value-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.about-value h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.about-value p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    margin: 0;
}

/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-deep) 100%);
    padding: 160px 24px 80px;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.page-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ── SERVICES PAGE ── */
.service-detail {
    padding: 64px 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.service-detail:nth-child(even) {
    background: rgba(61, 0, 0, 0.3);
}

.service-detail-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.service-detail-icon {
    font-size: 6rem;
    text-align: center;
}

.service-detail-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.service-detail-content p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 16px;
}

.service-includes h4 {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.service-includes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-includes li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.service-includes li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── CONTACT PAGE ── */
.contact-section {
    padding: 80px 24px;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius);
}

.contact-method-icon {
    font-size: 1.5rem;
}

.contact-method strong {
    display: block;
    color: var(--gold-light);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.contact-method span,
.contact-method a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-method a:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form-wrapper h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

/* ── FOOTER ── */
.footer {
    background: var(--crimson-dark);
    padding: 64px 24px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-phone a {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    text-decoration: none;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    font-style: italic;
    margin-top: 12px;
    line-height: 1.5;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-col li a:hover {
    color: var(--gold-light);
}

.contact-list li {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.78rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .deal-form-inner {
        grid-template-columns: 1fr;
    }

    .service-detail-inner {
        grid-template-columns: 1fr;
    }

    .service-detail-icon {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .about-values {
        grid-template-columns: 1fr 1fr;
    }

    .deal-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(26, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .deal-form-wrapper {
        padding: 28px 20px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }
}