/* =====================================================
   NICK HANDYMAN — STYLESHEET
   Warm Charcoal / Amber Gold / White
   Mobile-First | Professional
===================================================== */


/* =====================================================
   CSS VARIABLES
===================================================== */
:root {
    /* Backgrounds — premium deep navy */
    --bg-base:      #0d1f3c;
    --bg-dark:      #091528;
    --bg-medium:    #112240;
    --bg-card:      #152d52;
    --bg-input:     #0f2444;

    /* Gold — vibrant amber matching logo gradient */
    --gold:         #d49200;
    --gold-light:   #f0b400;
    --gold-dark:    #a06c00;
    --gold-sub:     rgba(212, 146, 0, 0.12);
    --gold-border:  rgba(212, 146, 0, 0.32);
    --shadow-gold:  0 6px 28px rgba(212, 146, 0, 0.35);

    /* Text */
    --white:        #ffffff;
    --cream:        #f0e6cc;
    --cream-dim:    #c0a870;
    --gray:         #8a8070;
    --gray-muted:   #a09080;

    /* Borders */
    --border:       rgba(255, 255, 255, 0.08);

    /* Shadows */
    --shadow-sm:    0 2px 12px rgba(0, 0, 0, 0.35);
    --shadow-md:    0 4px 28px rgba(0, 0, 0, 0.50);
    --shadow-lg:    0 8px 56px rgba(0, 0, 0, 0.65);

    /* Shape */
    --radius:       10px;
    --radius-lg:    16px;
    --radius-xl:    24px;

    /* Motion */
    --transition:   0.25s ease;
}


/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--cream-dim);
    background: #0d1f3c;
    -webkit-font-smoothing: antialiased;
}

/* Bottom padding so content isn't hidden by sticky CTA on mobile */
@media (max-width: 767px) {
    body { padding-bottom: 78px; }
}

img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}


/* =====================================================
   LAYOUT
===================================================== */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container { padding: 0 32px; }
}

.section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section { padding: 104px 0; }
}

/* Premium navy with subtle shimmer gradient */
.section-a {
    background: linear-gradient(160deg, #091528 0%, #0d1f3c 45%, #112544 100%);
}
.section-b {
    background: linear-gradient(160deg, #0e2040 0%, #112848 45%, #0d1e3a 100%);
}


/* =====================================================
   TYPOGRAPHY UTILITIES
===================================================== */
.eyebrow {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-muted);
    margin-bottom: 14px;
}

.eyebrow-gold { color: var(--gold); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: var(--gold);
    margin: 14px auto 0;
    border-radius: 2px;
}

.section-sub {
    font-size: 1.02rem;
    color: var(--cream-dim);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.78;
}

.section-cta {
    text-align: center;
    margin-top: 52px;
}


/* =====================================================
   BUTTONS
===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 7px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.93rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Primary gold */
.btn-gold {
    background: linear-gradient(180deg, #f5c030 0%, #d49200 52%, #a86c00 100%);
    color: #0a0800;
    border-color: transparent;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(212,146,0,0.45), inset 0 1px 0 rgba(255,255,255,0.28);
}
.btn-gold:hover {
    background: linear-gradient(180deg, #ffcf40 0%, #e0a000 52%, #b87800 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(212,146,0,0.60), inset 0 1px 0 rgba(255,255,255,0.35);
    box-shadow: var(--shadow-gold);
}

.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* White outline — hero */
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.42);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
}

/* Gold outline — dark sections */
.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold-border);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #0a1220;
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


/* =====================================================
   NAVIGATION
===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 18px 0;
    background: transparent;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
    background: rgba(9, 21, 40, 0.97);
    padding: 12px 0;
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

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

/* Logo link wrapper */
.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}

.nav-logo {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--white);
    white-space: normal;
    margin-left: 12px;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .nav-logo { height: 44px; }
    .brand-name { display: none; }
}

/* Text fallback shown by JS if logo image fails */
.nav-logo-text {
    display: none;
    align-items: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    gap: 0;
}

.brand-nick     { color: var(--gold); }
.brand-handyman { color: var(--white); }

/* Desktop nav links */
.nav-links {
    display: none;
    align-items: center;
    gap: 28px;
}

@media (min-width: 960px) {
    .nav-links { display: flex; }
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.87rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Desktop CTA — hidden on mobile */
.nav-cta {
    display: none;
    padding: 10px 18px;
    font-size: 0.83rem;
}

@media (min-width: 960px) {
    .nav-cta { display: inline-flex; }
}


/* =====================================================
   HAMBURGER BUTTON
===================================================== */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 9px 7px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 7px;
    cursor: pointer;
    transition: background var(--transition);
}

.hamburger:hover { background: rgba(255, 255, 255, 0.14); }

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Animate to × when open */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
    .hamburger { display: none; }
}


/* =====================================================
   MOBILE MENU DRAWER
===================================================== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 700;
    background: rgba(9, 21, 40, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 800;
    width: min(320px, 88vw);
    background: var(--bg-dark);
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 56px rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.is-open { transform: translateX(0); }

@media (min-width: 960px) {
    .mobile-menu,
    .mobile-overlay { display: none; }
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition);
    flex-shrink: 0;
}
.mobile-menu-close:hover { background: rgba(255, 255, 255, 0.14); }

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    flex: 1;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    padding: 15px 26px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color var(--transition), background var(--transition), padding-left var(--transition);
}

.mobile-nav a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.03);
    padding-left: 34px;
}

.mobile-menu-cta {
    padding: 24px 22px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 12px;
    border-radius: 7px;
    border: 1px solid var(--border);
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.mobile-phone-link:hover {
    color: var(--gold);
    border-color: var(--gold-border);
    background: var(--gold-sub);
}


/* =====================================================
   HERO
===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 15% 60%, rgba(15, 40, 80, 0.90) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 85% 15%, rgba(212, 146, 0, 0.07) 0%, transparent 50%),
        linear-gradient(155deg, #091528 0%, #0d2040 40%, #112848 70%, #0a1c38 100%);
}

/* Subtle dot-grid texture */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 52px, rgba(255,255,255,0.013) 52px, rgba(255,255,255,0.013) 53px),
        repeating-linear-gradient(90deg, transparent, transparent 52px, rgba(255,255,255,0.013) 52px, rgba(255,255,255,0.013) 53px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 130px;
    padding-bottom: 80px;
    max-width: 820px;
}

.hero .eyebrow {
    font-size: 0.71rem;
    margin-bottom: 22px;
}

.hero-headline {
    font-size: clamp(2.1rem, 5.5vw, 3.8rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(232, 220, 200, 0.68);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.82;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badge {
    display: inline-block;
    padding: 6px 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: rgba(232, 220, 200, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero-content {
        padding-top: 160px;
        padding-bottom: 100px;
    }
}


/* =====================================================
   SERVICES
===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 540px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 780px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1060px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    border: 1px solid var(--border);
    border-bottom: 3px solid transparent;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    border-bottom-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.service-card[data-calc-svc] { cursor: pointer; }
.service-card[data-calc-svc] .price-tag::after { content: ' › Calculate'; opacity: 0; transition: opacity var(--transition); }
.service-card[data-calc-svc]:hover .price-tag::after { opacity: 0.75; }

.service-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.service-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--cream-dim);
    line-height: 1.65;
}

.price-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 4px 10px;
    background: var(--gold-sub);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}


/* =====================================================
   PRICING
===================================================== */
.pricing-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--gold-sub);
    border: 1px solid var(--gold-border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 48px;
    color: rgba(232, 220, 200, 0.62);
    font-size: 0.88rem;
    line-height: 1.7;
}

.pricing-disclaimer svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 1px;
}

.pricing-disclaimer strong { color: rgba(232, 220, 200, 0.9); }

.pricing-min-callout {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, rgba(212,146,0,0.10) 0%, rgba(212,146,0,0.04) 100%);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 13px 20px;
    margin-bottom: 40px;
    color: var(--cream-dim);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-min-callout svg {
    flex-shrink: 0;
    fill: var(--gold);
}

.pricing-min-callout strong { color: var(--gold-light); }

.pricing-row--note {
    padding-top: 0;
    padding-bottom: 6px;
}

.pricing-row--note:hover { background: transparent; }

.prow-subnote {
    font-size: 0.76rem;
    color: var(--gold);
    font-style: italic;
    padding-left: 4px;
    opacity: 0.8;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .pricing-layout {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.pricing-group-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}

.pricing-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 6px;
    transition: background var(--transition);
}
.pricing-row:hover { background: rgba(255, 255, 255, 0.04); }
.pricing-row[data-calc-svc] { cursor: pointer; }
.pricing-row[data-calc-svc]:hover { background: rgba(212,146,0,.08); box-shadow: inset 3px 0 0 var(--gold); }
.pricing-row[data-calc-svc]:hover .prow-name { color: var(--cream); }
.pricing-row[data-calc-svc] .prow-price::after { content: ' ›'; opacity: 0.3; transition: opacity var(--transition); }
.pricing-row[data-calc-svc]:hover .prow-price::after { opacity: 1; color: var(--gold-light); }

.prow-name {
    color: rgba(232, 220, 200, 0.82);
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
}

.prow-dots {
    flex: 1;
    min-width: 16px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    margin-bottom: 4px;
}

.prow-price {
    color: var(--gold);
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.prow-quote {
    color: var(--gray-muted);
    font-weight: 500;
    font-style: italic;
}

.pricing-cta-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 26px;
}

.pricing-cta-box p {
    color: rgba(232, 220, 200, 0.52);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
}


/* =====================================================
   GALLERY CATEGORIES & CAROUSELS
===================================================== */
.gallery-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .gallery-categories { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

.gallery-cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.gallery-cat-num {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold);
    background: var(--gold-sub);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    padding: 3px 8px;
    flex-shrink: 0;
}

.gallery-cat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
    margin: 0;
}

.carousel {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color var(--transition);
}

.carousel:hover { border-color: var(--gold-border); }

.carousel-viewport { position: relative; }

.carousel-track-wrap { overflow: hidden; }

.carousel-track {
    display: flex;
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
}

.carousel-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.5);
    background: rgba(9,21,40,0.68);
    color: var(--gold-light);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.carousel-btn:hover {
    background: rgba(212,146,0,0.28);
    border-color: var(--gold);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-counter {
    position: absolute;
    bottom: 9px;
    right: 11px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--cream);
    background: rgba(9,21,40,0.62);
    border-radius: 20px;
    padding: 3px 9px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.carousel-caption {
    padding: 13px 18px 11px;
    border-top: 1px solid var(--border);
    min-height: 68px;
}

.carousel-caption h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cream);
    margin: 0 0 3px;
}

.carousel-caption p {
    font-size: 0.8rem;
    color: var(--cream-dim);
    margin: 0;
    line-height: 1.5;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 9px 16px 13px;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(201,168,76,0.22);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}


/* =====================================================
   ABOUT NICK
===================================================== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 52px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-layout {
        grid-template-columns: 340px 1fr;
        gap: 84px;
    }
}

.about-photo-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

@media (min-width: 768px) {
    .about-photo-col { align-items: flex-start; }
}

/* Glow halo behind the card — softer, more diffused */
.about-photo-col::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 340px;
    border-radius: var(--radius-xl);
    background: radial-gradient(ellipse, rgba(212,146,0,0.12) 0%, transparent 70%);
    filter: blur(42px);
    pointer-events: none;
    z-index: 0;
}

.about-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(212, 146, 0, 0.20);
    box-shadow:
        0 0 0 1px rgba(212,146,0,0.06),
        0 14px 56px rgba(0,0,0,0.70),
        0 0 40px rgba(212,146,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    z-index: 1;
}

/* Subtle dark overlay — tones down shirt highlights and background */
.about-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.09);
    pointer-events: none;
    z-index: 2;
    border-radius: inherit;
}

.about-photo-wrap:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow:
        0 0 0 1px rgba(212,146,0,0.25),
        0 24px 72px rgba(0,0,0,0.78),
        0 0 56px rgba(212,146,0,0.14);
}

@media (min-width: 768px) {
    .about-photo-wrap { max-width: 100%; }
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.65)) brightness(0.96);
    transition: filter 0.35s ease;
}

.about-photo-wrap:hover .about-photo {
    filter: drop-shadow(0 12px 36px rgba(0,0,0,0.72)) brightness(0.98);
}

.about-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--bg-card);
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
    padding: 24px;
}

.about-photo-placeholder span {
    font-size: 0.78rem;
    line-height: 1.55;
}

/* Badges — vertical stack with gold dot */
.about-badge-row {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
    max-width: 300px;
    z-index: 1;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    background: rgba(212,146,0,0.07);
    border: 1px solid rgba(212,146,0,0.22);
    border-radius: var(--radius);
    color: var(--cream);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.about-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(212,146,0,0.6);
}

.about-badge:hover {
    background: rgba(212,146,0,0.13);
    border-color: rgba(212,146,0,0.40);
}

.about-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 20px;
}

.about-text {
    color: var(--cream-dim);
    font-size: 1.02rem;
    line-height: 1.92;
    margin-bottom: 18px;
}

.about-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    margin: 28px 0 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.73rem;
    color: var(--gray-muted);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    line-height: 1.4;
}


/* =====================================================
   WHY CHOOSE
===================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 560px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .why-grid { grid-template-columns: repeat(5, 1fr); } }

.why-card {
    text-align: center;
    padding: 36px 20px 30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    font-size: 2.1rem;
    margin-bottom: 16px;
    display: block;
}

.why-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.83rem;
    color: var(--cream-dim);
    line-height: 1.65;
}


/* =====================================================
   REVIEWS
===================================================== */
.rating-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.stars-large {
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.rating-text {
    color: rgba(232, 220, 200, 0.65);
    font-size: 0.9rem;
    font-weight: 600;
}

.rating-text strong { color: var(--cream); }

/* ── Review grid ── */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
}

@media (min-width: 600px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Review card ── */
.review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px 28px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 8px;
}

.review-stars {
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1;
}

.review-time {
    font-size: 0.72rem;
    color: var(--gray-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.review-text {
    color: rgba(232, 220, 200, 0.82);
    font-size: 0.92rem;
    line-height: 1.82;
    font-style: italic;
    margin-bottom: 22px;
    flex: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: #0a1220;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    font-family: 'Open Sans', sans-serif;
}

.reviewer-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-name {
    color: var(--white);
    font-weight: 700;
    font-size: 0.88rem;
}

.reviewer-location {
    color: var(--gray-muted);
    font-size: 0.74rem;
    margin-top: 3px;
    display: flex;
    align-items: center;
}

/* ── Skeleton loading cards ── */
@keyframes skelpulse {
    0%, 100% { opacity: 0.35; }
    50%       { opacity: 0.65; }
}

.review-skeleton { pointer-events: none; }

.skel {
    background: rgba(255,255,255,0.10);
    border-radius: 4px;
    animation: skelpulse 1.6s ease-in-out infinite;
}

.skel-stars    { height: 14px; width: 90px; margin-bottom: 18px; }
.skel-line     { height: 11px; margin-bottom: 10px; border-radius: 3px; }
.s60 { width: 60%; } .s65 { width: 65%; } .s70 { width: 70%; }
.s75 { width: 75%; } .s80 { width: 80%; } .s85 { width: 85%; }
.s90 { width: 90%; } .s95 { width: 95%; }
.skel-reviewer { height: 36px; width: 55%; margin-top: 22px; border-radius: 18px; }

/* ── Fallback box (when API not configured) ── */
.gr-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 56px 24px;
    color: rgba(232,220,200,0.45);
    gap: 10px;
    border: 1px dashed rgba(255,255,255,0.10);
    border-radius: var(--radius-lg);
    margin-top: 40px;
}

.gr-fallback p { font-size: 0.95rem; margin: 0; }
.gr-fallback-sub { font-size: 0.80rem !important; color: rgba(255,255,255,0.25) !important; }


/* =====================================================
   SERVICE AREA
===================================================== */
.area-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 768px) {
    .area-layout {
        grid-template-columns: 1fr 340px;
        gap: 56px;
    }
}

.area-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-badge {
    padding: 9px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 100px;
    color: var(--cream-dim);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition);
    cursor: default;
}

.city-badge:hover {
    background: var(--gold-sub);
    border-color: var(--gold-border);
    color: var(--gold);
    transform: translateY(-2px);
}

.city-badge-accent {
    background: var(--gold-sub);
    color: var(--gold);
    border-color: var(--gold-border);
}

.area-cta-box {
    background: var(--bg-card);
    padding: 36px 30px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.area-cta-box h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.area-cta-box p {
    color: var(--cream-dim);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.65;
}


/* =====================================================
   CONTACT
===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 420px));
        justify-content: center;
        align-items: stretch;
    }
}

.contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.contact-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.contact-card:hover { border-color: rgba(255, 255, 255, 0.18); }


.contact-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.04rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-card p {
    color: rgba(232, 220, 200, 0.58);
    font-size: 0.87rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

/* Info bar below contact cards */
.contact-info-bar {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

@media (min-width: 600px) {
    .contact-info-bar { grid-template-columns: repeat(3, 1fr); }
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 600px) {
    .contact-info-item { border-bottom: none; border-right: 1px solid var(--border); }
    .contact-info-item:last-child { border-right: none; }
}

.cinfo-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
    opacity: 0.6;
}

.cinfo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cinfo-text strong {
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.cinfo-text span,
.cinfo-text a {
    color: rgba(232, 220, 200, 0.58);
    font-size: 0.84rem;
    transition: color var(--transition);
}
.cinfo-text a:hover { color: var(--gold); }

/* Map */
.contact-map-wrap {
    position: relative;
    margin-top: 32px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 340px;
}

.contact-map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: invert(90%) hue-rotate(180deg) saturate(0.6) brightness(0.85);
}

.map-directions-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: var(--gold);
    color: #0a0800;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.45);
    transition: background var(--transition), transform var(--transition);
    background: linear-gradient(180deg, #f5c030 0%, #d49200 52%, #a86c00 100%);
}

.map-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.55);
}

@media (max-width: 599px) {
    .contact-map-wrap { height: 260px; }
}


/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 64px 20px 52px;
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 1.4fr 1fr 1.2fr;
        padding: 80px 32px 64px;
    }
}

.footer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    display: block;
}

.footer-tagline {
    color: var(--gray-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badge {
    padding: 4px 11px;
    background: var(--gold-sub);
    border: 1px solid var(--gold-border);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.73rem;
    font-weight: 700;
}

.footer-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gray-muted);
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-nav a {
    color: rgba(232, 220, 200, 0.52);
    font-size: 0.87rem;
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(232, 220, 200, 0.52);
    font-size: 0.87rem;
    line-height: 1.5;
    transition: color var(--transition);
}

a.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item.muted  { color: var(--gray-muted); font-size: 0.81rem; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

@media (min-width: 600px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p      { color: var(--gray-muted); font-size: 0.78rem; }
.footer-disclaimer    { color: rgba(255, 255, 255, 0.22); font-size: 0.74rem; }


/* =====================================================
   STICKY MOBILE CTA
===================================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 600;
    display: flex;
    align-items: stretch;
    gap: 10px;
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(9, 21, 40, 0.97);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (min-width: 768px) { .sticky-cta { display: none !important; } }

/* Push footer above sticky bar on mobile */
@media (max-width: 767px) {
    .footer { padding-bottom: 74px; }
}

.sticky-text-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--gold);
    color: #0a1220;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 0.91rem;
    padding: 13px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), box-shadow var(--transition);
}

.sticky-text-btn:hover,
.sticky-text-btn:active {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.sticky-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 13px;
    border-radius: 8px;
    width: 50px;
    flex-shrink: 0;
    transition: background var(--transition);
}

.sticky-call-btn:hover,
.sticky-call-btn:active { background: rgba(255, 255, 255, 0.14); }


/* =====================================================
   RESPONSIVE UTILITIES
===================================================== */

@media (max-width: 539px) {
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .btn-lg {
        padding: 15px 24px;
    }
}

/* =====================================================
   QUOTE MODAL
===================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(4, 10, 22, 0.80);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 16px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 360px) {
    .modal-overlay { padding: 12px 10px 30px; }
    .modal-body    { padding: 14px 14px 22px; }
    .modal-header  { padding: 16px 14px 14px; }
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 580px;
    transform: translateY(24px);
    transition: transform 0.30s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    margin: auto 0;
}

.modal-overlay.is-open .modal-box {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 28px 20px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg-card);
    z-index: 1;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-header-text { display: flex; flex-direction: column; gap: 6px; }

.modal-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--cream-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    font-size: 1.3rem;
    line-height: 1;
    margin-top: 2px;
}

.modal-close:hover {
    background: rgba(255,255,255,0.08);
    color: var(--cream);
    border-color: rgba(255,255,255,0.18);
}

.modal-body { padding: 24px 28px 30px; }

@media (max-width: 480px) {
    .modal-header { padding: 20px 18px 16px; }
    .modal-body   { padding: 18px 18px 26px; }
    .modal-title  { font-size: 1.25rem; }
}

/* ── Modal form fields ─────────────────────────────── */
.mf-form { display: flex; flex-direction: column; gap: 18px; }

.mf-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 480px) { .mf-row-2 { grid-template-columns: 1fr; } }

.mf-field { display: flex; flex-direction: column; gap: 6px; }

.mf-label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--cream);
}

.mf-required { color: var(--gold); margin-left: 2px; }

.mf-input {
    background: rgba(9,21,40,0.70);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--cream);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    padding: 10px 13px;
    width: 100%;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}

.mf-input::placeholder { color: rgba(192,168,112,0.38); }

.mf-input:focus {
    border-color: var(--gold-border);
    box-shadow: 0 0 0 3px rgba(212,146,0,0.10);
}

.mf-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath fill='%23d49200' d='M5.5 7L0 0h11z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.mf-select option { background: #0d1f3c; color: var(--cream); }

.mf-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.mf-radio-group { display: flex; flex-wrap: wrap; gap: 10px; }

.mf-radio-label {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    font-size: 0.86rem;
    color: var(--cream-dim);
    transition: color var(--transition);
    user-select: none;
}

.mf-radio-label:hover { color: var(--cream); }
.mf-radio-label input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.mf-radio-dot {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid rgba(212,146,0,0.35);
    background: rgba(9,21,40,0.7);
    flex-shrink: 0;
    position: relative;
    transition: border-color var(--transition);
}

.mf-radio-label input[type="radio"]:checked + .mf-radio-dot {
    border-color: var(--gold);
}

.mf-radio-label input[type="radio"]:checked + .mf-radio-dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--gold);
}

.mf-file-input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

.mf-file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px dashed rgba(212,146,0,0.28);
    border-radius: var(--radius);
    background: rgba(9,21,40,0.5);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.mf-file-label:hover {
    border-color: var(--gold-border);
    background: rgba(212,146,0,0.06);
}

.mf-file-label svg { color: var(--gold); opacity: 0.7; flex-shrink: 0; }

.mf-file-text { font-size: 0.85rem; font-weight: 600; color: var(--cream-dim); }
.mf-file-hint { font-size: 0.73rem; color: rgba(192,168,112,0.45); margin-top: 1px; }

.mf-file-info {
    display: none;
    margin-top: 6px;
    font-size: 0.76rem;
    color: var(--gold);
    padding: 5px 10px;
    background: var(--gold-sub);
    border-radius: 6px;
    word-break: break-all;
}

.mf-error {
    background: rgba(220,60,60,0.12);
    border: 1px solid rgba(220,60,60,0.32);
    border-radius: var(--radius);
    padding: 11px 15px;
    font-size: 0.85rem;
    color: #f8a0a0;
    line-height: 1.5;
}

.mf-error a { color: var(--gold-light); }

.mf-privacy {
    font-size: 0.72rem;
    color: rgba(192,168,112,0.4);
    text-align: center;
    line-height: 1.5;
}

/* ── Modal success ─────────────────────────────────── */
.modal-success {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 12px 0 4px;
}

.modal-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gold-sub);
    border: 2px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.modal-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--cream);
}

.modal-success p {
    font-size: 0.92rem;
    color: var(--cream-dim);
    line-height: 1.65;
    max-width: 360px;
}

.modal-success-sms {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: linear-gradient(180deg, #f5c030 0%, #d49200 52%, #a86c00 100%);
    color: #0a0800;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(212,146,0,0.35);
    transition: opacity var(--transition);
}

.modal-success-sms:hover { opacity: 0.9; }

/* ── Zip checker ─────────────────────────────────────── */
.zip-input-row {
    display: flex;
    gap: 10px;
}

.zip-input-row .mf-input {
    flex: 1;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-align: center;
}

.zip-result {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-top: 14px;
}

.zip-result-icon {
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.zip-result--ok {
    background: rgba(34, 160, 80, 0.12);
    border: 1px solid rgba(34, 160, 80, 0.35);
    color: #7fe0a0;
}

.zip-result--ok .zip-result-icon { color: #4caf70; }

.zip-result--no {
    background: rgba(220, 60, 60, 0.10);
    border: 1px solid rgba(220, 60, 60, 0.30);
    color: #f8a0a0;
}

.zip-result--no .zip-result-icon { color: #e05555; }

.zip-result--warn {
    background: rgba(212, 146, 0, 0.10);
    border: 1px solid var(--gold-border);
    color: var(--cream-dim);
}

.zip-result--warn .zip-result-icon { color: var(--gold); }

.zip-estimate-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(180deg, #f5c030 0%, #d49200 52%, #a86c00 100%);
    color: #0a0800;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.83rem;
    font-weight: 800;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(212,146,0,0.35);
    transition: opacity var(--transition), transform var(--transition);
}

.zip-estimate-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* =====================================================
   PRICE CALCULATOR MODAL
===================================================== */
.calc-layout {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 20px;
    align-items: start;
}

@media (max-width: 600px) {
    .calc-layout { grid-template-columns: 1fr; }
}

/* ── Services list ───────────────────────────────── */
.calc-services {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-height: 58vh;
    overflow-y: auto;
    padding-right: 6px;
}

.calc-services::-webkit-scrollbar { width: 4px; }
.calc-services::-webkit-scrollbar-track { background: transparent; }
.calc-services::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 4px; }

@media (max-width: 600px) {
    .calc-services { max-height: none; overflow-y: visible; padding-right: 0; }
}

.calc-group-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.calc-item {
    border-radius: var(--radius);
    border: 1px solid transparent;
    padding: 9px 10px;
    transition: background var(--transition), border-color var(--transition);
}

.calc-item.is-on {
    background: var(--gold-sub);
    border-color: var(--gold-border);
}

.calc-item-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.calc-chk { position: absolute; opacity: 0; width: 0; height: 0; }

.calc-chk-box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid rgba(212,146,0,0.35);
    background: var(--bg-input);
    flex-shrink: 0;
    position: relative;
    transition: background var(--transition), border-color var(--transition);
}

.calc-chk:checked + .calc-chk-box {
    background: var(--gold);
    border-color: var(--gold);
}

.calc-chk:checked + .calc-chk-box::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: 2px solid #0a0800;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.calc-item-name {
    flex: 1;
    font-size: 0.88rem;
    color: var(--cream);
    font-weight: 500;
    line-height: 1.3;
}

.calc-item-rate {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
}

/* ── Quantity input ──────────────────────────────── */
.calc-qty {
    margin-top: 8px;
    margin-left: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-qty-label {
    font-size: 0.78rem;
    color: var(--cream-dim);
    white-space: nowrap;
}

.calc-qty-input {
    width: 90px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--cream);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    padding: 5px 10px;
    outline: none;
    transition: border-color var(--transition);
}

.calc-qty-input:focus { border-color: var(--gold-border); box-shadow: 0 0 0 2px rgba(212,146,0,0.10); }

/* ── Summary panel ───────────────────────────────── */
.calc-summary {
    background: rgba(9,21,40,0.55);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 0;
}

.calc-total-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-bottom: 4px;
}

.calc-total {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.calc-breakdown {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-height: 30px;
}

.calc-bd-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 6px;
    font-size: 0.78rem;
    line-height: 1.4;
    border-bottom: 1px solid var(--border);
    padding-bottom: 6px;
}

.calc-bd-name { color: var(--cream-dim); flex: 1; }

.calc-bd-price {
    color: var(--cream);
    font-weight: 700;
    white-space: nowrap;
}

.calc-empty {
    font-size: 0.78rem;
    color: rgba(192,168,112,0.38);
    font-style: italic;
}

.calc-min-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--gold);
    background: var(--gold-sub);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    padding: 8px 10px;
    line-height: 1.4;
}

.calc-disclaimer {
    font-size: 0.7rem;
    color: rgba(192,168,112,0.38);
    text-align: center;
    line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   CALCULATOR MODAL  (cm-*)
════════════════════════════════════════════════════════ */

.cm-box { max-width: 680px; }

.cm-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 18px;
}

/* ── Service tabs ──────────────────────────────────────── */
.cm-tabs-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -4px;
    padding: 0 4px 4px;
}
.cm-tabs-wrap::-webkit-scrollbar { display: none; }

.cm-tabs {
    display: flex;
    gap: 7px;
    width: max-content;
}

.cm-tab {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 11px 7px;
    border-radius: 9px;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.18s;
    min-width: 70px;
}
.cm-tab:hover {
    border-color: var(--gold-border);
    background: var(--gold-sub);
}
.cm-tab.active {
    border-color: var(--gold);
    background: var(--gold-sub);
    box-shadow: 0 0 0 1px var(--gold-dark);
}
.cm-tab-icon { font-size: 1.25rem; line-height: 1; }
.cm-tab-name {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--cream-dim);
    text-align: center;
    white-space: normal;
    max-width: 70px;
    line-height: 1.25;
}
.cm-tab.active .cm-tab-name { color: var(--gold-light); }

/* ── Options ───────────────────────────────────────────── */
.cm-options {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cm-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cm-field[hidden] { display: none; }

.cm-field-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--cream);
}

.cm-radio-group { display: flex; flex-direction: column; gap: 6px; }

.cm-radio-opt { cursor: pointer; display: block; }
.cm-radio-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cm-radio-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--bg-dark);
    transition: border-color 0.16s, background 0.16s;
}
.cm-radio-opt:hover .cm-radio-box { border-color: var(--gold-border); }
.cm-radio-opt input:checked + .cm-radio-box {
    border-color: var(--gold);
    background: var(--gold-sub);
}

.cm-radio-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--cream-dim);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.16s, background 0.16s;
}
.cm-radio-opt input:checked + .cm-radio-box .cm-radio-dot {
    border-color: var(--gold-light);
    background: var(--gold-light);
}
.cm-radio-opt input:checked + .cm-radio-box .cm-radio-dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--bg-base);
    border-radius: 50%;
}
.cm-radio-text {
    flex: 1;
    font-size: 0.82rem;
    color: var(--gray-muted);
    line-height: 1.35;
}
.cm-radio-opt input:checked + .cm-radio-box .cm-radio-text { color: var(--cream); }

.cm-num-input {
    width: 100%;
    max-width: 160px;
    background: var(--bg-dark);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    color: var(--cream);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    padding: 9px 13px;
    outline: none;
    transition: border-color 0.16s;
}
.cm-num-input:focus { border-color: var(--gold-light); }
.cm-num-input::placeholder { color: var(--cream-dim); font-weight: 400; font-size: 0.84rem; }

.cm-field-hint {
    font-size: 0.71rem;
    color: var(--cream-dim);
    margin-top: 2px;
}

/* ── Total price ───────────────────────────────────────── */
.cm-price-box {
    background: var(--gold-sub);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 16px 20px 14px;
}
.cm-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
}
.cm-price-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
}
.cm-price-total {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}
.cm-price-note {
    font-size: 0.71rem;
    color: var(--cream-dim);
    line-height: 1.5;
}

/* ── Add to Booking button ─────────────────────────────── */
.cm-add-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border: none;
    color: #091528;
    font-size: 0.9rem; font-weight: 800;
    padding: 13px 14px; border-radius: 8px;
    cursor: pointer; transition: all 0.18s;
    box-shadow: 0 4px 18px rgba(212,146,0,.35);
    letter-spacing: .01em;
}
.cm-add-btn:hover { filter: brightness(1.08); box-shadow: 0 6px 24px rgba(212,146,0,.5); transform: translateY(-1px); }
.cm-add-btn:active { transform: none; }

/* ── Cart ──────────────────────────────────────────────── */
.cm-cart {
    background: rgba(212,146,0,.07);
    border: 1px solid var(--gold-border);
    border-radius: 10px;
    overflow: hidden;
}
.cm-cart-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 14px;
    border-bottom: 1px solid var(--gold-border);
}
.cm-cart-title { font-size: 0.75rem; font-weight: 700; color: var(--gold-light); text-transform: uppercase; letter-spacing: .06em; }
.cm-cart-clear-btn { font-size: 0.72rem; color: var(--cream-dim); background: none; border: none; cursor: pointer; padding: 0; }
.cm-cart-clear-btn:hover { color: #e88; }
.cm-cart-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.cm-cart-item:last-child { border-bottom: none; }
.cm-cart-item-name { flex: 1; font-size: 0.83rem; color: var(--cream); }
.cm-cart-item-price { font-size: 0.83rem; font-weight: 700; color: var(--gold-light); white-space: nowrap; }
.cm-cart-rm {
    background: none; border: none; color: var(--cream-dim);
    font-size: 1.1rem; line-height: 1; cursor: pointer; padding: 0 2px;
}
.cm-cart-rm:hover { color: #e88; }
.cm-cart-min-note {
    font-size: 0.68rem; color: var(--cream-dim); font-style: italic;
    padding: 4px 14px 6px; text-align: center;
}
.cm-cart-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px;
    border-top: 1px solid var(--gold-border);
    background: rgba(212,146,0,.08);
}
.cm-cart-total-lbl { font-size: 0.75rem; font-weight: 700; color: var(--gold-light); text-transform: uppercase; letter-spacing: .06em; }
.cm-cart-total-amt { font-size: 1.3rem; font-weight: 800; color: var(--gold-light); font-family: 'Playfair Display', Georgia, serif; }

/* ── Address field ─────────────────────────────────────── */
.cm-addr-wrap {
    display: flex; flex-direction: column; gap: 5px;
}
.cm-addr-label {
    font-size: 0.82rem; font-weight: 700; color: var(--cream);
}
.cm-addr-opt { font-weight: 400; color: var(--cream-dim); font-size: 0.75rem; }
.cm-addr-req { color: #e87070; font-size: 0.8rem; margin-left: 2px; }
.cm-addr-input.field-error { border-color: #e87070; box-shadow: 0 0 0 2px rgba(232,112,112,.2); }
.cm-field-error-msg { font-size: 0.72rem; color: #e87070; margin-top: 4px; display: none; }
.cm-field-error-msg.visible { display: block; }
.cm-addr-input {
    width: 100%;
    background: var(--bg-dark);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    color: var(--cream);
    font-family: inherit; font-size: 0.9rem;
    padding: 10px 13px; outline: none;
    transition: border-color 0.16s;
}
.cm-addr-input:focus { border-color: var(--gold-light); }
.cm-addr-input::placeholder { color: var(--cream-dim); font-size: 0.84rem; }

/* ── CTA buttons ───────────────────────────────────────── */
.cm-ctas {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cm-book-btn,
.cm-sms-btn {
    width: 100%;
    justify-content: center;
}

.cm-schedule-note {
    font-size: 0.7rem;
    color: var(--cream-dim);
    line-height: 1.55;
    padding: 10px 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px;
}
.cm-schedule-note strong { color: var(--cream); }

@media (max-width: 480px) {
    .cm-price-total { font-size: 1.75rem; }
    .cm-tab { min-width: 62px; padding: 7px 9px; }
    .cm-tab-icon { font-size: 1.1rem; }
    .cm-tab-name { font-size: 0.58rem; }
    .cm-body { gap: 14px; }
    .cm-schedule-note { font-size: 0.66rem; padding: 8px 12px; }
}
