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

:root {
    /* Brand */
    --crimson:     #B91C3C;
    --crimson-dk:  #8F1530;
    /* Gold accent — the luxury touch */
    --gold:        #B8963C;
    --gold-lt:     #CBA84E;
    --gold-on-dk:  #D4AF5A;
    /* Neutrals */
    --ink:         #0C0B09;
    --ink-2:       #1A1815;
    --text:        #1A1814;
    --text-mid:    #68635E;
    --text-muted:  #9E9890;
    --stone:       #D0CBC3;
    --cream:       #EAE7E1;
    --ivory:       #F5F3EE;
    --white:       #FFFFFF;
    --border:      rgba(0,0,0,0.07);
    --border-md:   rgba(0,0,0,0.11);
    /* Legacy aliases for JS-injected content */
    --red:         #B91C3C;
    --dark-red:    #8F1530;
    --off-white:   #F5F3EE;
    --stone-dark:  #1E1409;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--ivory);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.15rem 0;
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(12, 11, 9, 0.97);
    box-shadow: 0 1px 0 rgba(184,150,60,0.18);
    border-bottom-color: rgba(184,150,60,0.12);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img  { height: 42px; width: auto; display: block; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: #fff; display: none; letter-spacing: 0.02em; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255,255,255,0.78);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 1px;
    background: var(--gold-on-dk);
    transition: width 0.35s ease;
}

.nav-link:hover              { color: #fff; }
.nav-link:hover::after       { width: 100%; }
.nav-link.active-page        { color: #fff; }
.nav-link.active-page::after { width: 100%; background: var(--gold-on-dk); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: #fff; transition: 0.3s; }

/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-slideshow { position: absolute; inset: 0; }

.slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1A1510;
    opacity: 0;
    transition: opacity 1.6s ease;
}

.slide.active {
    opacity: 1;
    animation: kenBurns 12s ease-out forwards;
}

@keyframes kenBurns {
    from { transform: scale(1.06); }
    to   { transform: scale(1.00); }
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        168deg,
        rgba(30,18,6,0.18) 0%,
        rgba(24,14,4,0.52) 55%,
        rgba(20,12,2,0.42) 100%
    );
    z-index: 1;
}
.hero-overlay::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 110%, rgba(184,150,60,0.13) 0%, transparent 65%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 0 32px;
    animation: heroFade 1.4s ease both;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold-on-dk);
    margin-bottom: 1.4rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.6rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.3);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.88);
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-block;
    background: var(--crimson);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover { background: var(--crimson-dk); transform: translateY(-2px); }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.6rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.38);
    border-radius: 1px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.07); transform: translateY(-2px); }

/* ─── SLIDE CONTROLS ─── */
.slide-controls {
    position: absolute;
    bottom: 2.8rem; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.slide-prev, .slide-next {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.slide-prev:hover, .slide-next:hover { background: rgba(184,150,60,0.55); border-color: var(--gold-on-dk); }

.slide-dots { display: flex; align-items: center; gap: 0.5rem; }

.slide-dot {
    width: 5px; height: 5px;
    border-radius: 3px;
    border: none; padding: 0;
    background: rgba(255,255,255,0.28);
    cursor: pointer;
    transition: all 0.35s ease;
}
.slide-dot.active { background: #fff; width: 24px; }

/* ─── STATS ─── */
.stats {
    background: rgba(12,11,9,0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 3.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(184,150,60,0.14);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item { flex: 1; text-align: center; padding: 0 2rem; }

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-on-dk);
    line-height: 1;
    margin-bottom: 0.55rem;
    letter-spacing: -0.01em;
}

.stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.stat-divider { width: 1px; height: 52px; background: rgba(255,255,255,0.07); flex-shrink: 0; }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 4.5rem; }

.section-label {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.22;
    letter-spacing: -0.01em;
}

/* ─── ABOUT ─── */
.about { padding: 9rem 0; background: var(--white); }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

.about-image {
    height: 540px;
    background: linear-gradient(145deg, #1A1510 0%, #2E2820 100%);
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.14);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 40px,
        rgba(255,255,255,0.01) 40px,
        rgba(255,255,255,0.01) 41px
    );
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--gold-lt));
}

.about-text .section-label  { display: block; text-align: left; margin-bottom: 0.9rem; }

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.22;
    margin-bottom: 1.8rem;
    letter-spacing: -0.01em;
}

.about-lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.about-text p:not(.about-lead) { color: var(--text-mid); font-size: 0.93rem; line-height: 1.85; margin-bottom: 1.5rem; }

.about-features { list-style: none; margin: 1.8rem 0 2.4rem; display: flex; flex-direction: column; gap: 0.9rem; }

.about-features li { display: flex; align-items: center; gap: 0.9rem; font-size: 0.9rem; color: var(--text); }

.feature-check {
    color: var(--gold);
    font-size: 0.55rem;
    flex-shrink: 0;
    width: 18px; height: 18px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ─── SERVICES ─── */
.services { padding: 9rem 0; background: var(--ivory); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    overflow: hidden;
    border-radius: 1px;
}

.service-card {
    background: var(--white);
    padding: 2.8rem 2.4rem;
    position: relative;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, backdrop-filter 0.35s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    transition: width 0.45s ease;
}

.service-card:hover {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transform: translateY(-10px);
    box-shadow: 0 32px 72px rgba(0,0,0,0.13), 0 2px 8px rgba(184,150,60,0.06);
    z-index: 1;
}
.service-card:hover::after { width: 100%; }

.service-icon { font-size: 1.7rem; display: block; margin-bottom: 1.3rem; line-height: 1; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.12rem; font-weight: 600; color: var(--text); margin-bottom: 0.9rem; }
.service-card p  { color: var(--text-mid); font-size: 0.88rem; line-height: 1.8; }

/* ─── TEAM ─── */
.team { padding: 9rem 0; background: var(--ivory); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }

.team-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 36px 80px rgba(0,0,0,0.14), 0 4px 12px rgba(184,150,60,0.07);
}

.team-photo-wrapper {
    position: relative;
    width: 100%; height: 300px;
    overflow: hidden;
    background: var(--ivory);
}

.team-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}
.team-card:hover .team-photo { transform: scale(1.04); }

.team-initials {
    position: absolute; inset: 0;
    background: linear-gradient(145deg, var(--cream) 0%, var(--ivory) 100%);
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.team-card { cursor: pointer; }
.team-info { padding: 1.4rem 1.5rem 1.6rem; border-top: 1px solid rgba(0,0,0,0.05); background: var(--white); }
.team-info h3 { font-family: 'Playfair Display', serif; font-size: 1.02rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.team-role        { display: block; color: var(--gold); font-size: 0.75rem; font-weight: 500; margin-bottom: 0.6rem; letter-spacing: 0.3px; }
.experience-wrap  { display: flex; flex-direction: column; gap: 0.12rem; }
.experience-label { font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.experience       { display: block; color: var(--text); font-size: 0.8rem; font-weight: 500; }

/* ─── Team Lightbox ─── */
.team-lb {
    position: fixed; inset: 0; z-index: 900;
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.28s ease;
}
.team-lb.open { opacity: 1; pointer-events: all; }
.team-lb-backdrop {
    position: absolute; inset: 0;
    background: rgba(12,11,9,0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.team-lb-box {
    position: relative; z-index: 1;
    background: var(--white);
    border-radius: 3px;
    max-width: 680px; width: 100%;
    display: flex;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.28);
    transform: translateY(18px) scale(0.97);
    transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
}
.team-lb.open .team-lb-box { transform: translateY(0) scale(1); }
.team-lb-photo {
    width: 220px; min-width: 220px;
    background: var(--ivory);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.team-lb-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-lb-initials {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; font-weight: 700;
    color: var(--gold); letter-spacing: 0.05em;
}
.team-lb-body {
    padding: 2.4rem 2.2rem;
    display: flex; flex-direction: column; justify-content: center;
    flex: 1; min-width: 0;
}
.team-lb-role {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
.team-lb-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem; font-weight: 700; line-height: 1.15;
    color: var(--text); margin-bottom: 1rem;
}
.team-lb-exp {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--ivory); border-radius: 2px;
    padding: 0.3rem 0.75rem; margin-bottom: 1.1rem;
    font-size: 0.75rem; color: var(--text-mid); font-weight: 500;
}
.team-lb-bio {
    font-size: 0.9rem; color: var(--text-mid);
    line-height: 1.8; border-top: 1px solid var(--border);
    padding-top: 1rem; margin-top: 0.2rem;
}
.team-lb-close {
    position: absolute; top: 1rem; right: 1rem;
    background: var(--ivory); border: none; border-radius: 50%;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 0.9rem; color: var(--text-mid);
    transition: background 0.2s, color 0.2s; z-index: 2;
}
.team-lb-close:hover { background: var(--cream); color: var(--text); }
@media (max-width: 560px) {
    .team-lb-box { flex-direction: column; }
    .team-lb-photo { width: 100%; min-width: 0; height: 200px; }
    .team-lb-body { padding: 1.6rem; }
}

/* ─── FOOTER ─── */
.footer { background: var(--ink); color: #fff; padding: 6rem 0 0; }

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-img  { height: 38px; width: auto; display: block; margin-bottom: 1.3rem; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #fff; display: none; margin-bottom: 1.3rem; letter-spacing: 0.02em; }
.footer-brand p   { color: rgba(255,255,255,0.32); font-size: 0.85rem; line-height: 1.95; }

.footer-section h4 {
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold-on-dk);
    margin-bottom: 1.6rem;
}

.footer-section p   { color: rgba(255,255,255,0.32); font-size: 0.85rem; line-height: 2.1; margin-bottom: 0.15rem; }
.footer-section ul  { list-style: none; }
.footer-section ul li { margin-bottom: 0.8rem; }
.footer-section ul li a { color: rgba(255,255,255,0.32); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-section ul li a:hover { color: var(--gold-on-dk); }

.social-links { display: flex; flex-direction: column; gap: 0.8rem; }
.social-links a { color: rgba(255,255,255,0.32); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.social-links a:hover { color: var(--gold-on-dk); }

.footer-bottom {
    padding: 1.8rem 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-bottom p { color: rgba(255,255,255,0.18); font-size: 0.75rem; text-align: center; letter-spacing: 0.5px; }

/* ─── QUOTE MODAL ─── */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(12,11,9,0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
    background: var(--white);
    border-radius: 2px;
    width: 100%;
    max-width: 640px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 3rem 3.2rem;
    position: relative;
    transform: translateY(22px);
    transition: transform 0.38s ease;
    scrollbar-width: thin;
}
.modal-overlay.active .modal { transform: translateY(0); }

.modal-close {
    position: absolute;
    top: 1.2rem; right: 1.4rem;
    background: none; border: none;
    font-size: 1.4rem;
    color: var(--text-mid);
    cursor: pointer;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}
.modal-close:hover { background: var(--ivory); color: var(--text); }

.modal-progress { margin-bottom: 2.2rem; }
.modal-progress-bar {
    height: 2px;
    background: var(--cream);
    border-radius: 1px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}
.modal-progress-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 1px;
    transition: width 0.45s ease;
    width: 25%;
}
.modal-progress-text {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.modal-step { display: none; }
.modal-step.active { display: block; animation: stepIn 0.32s ease; }

@keyframes stepIn {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}

.modal-step h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    color: var(--text);
    margin-bottom: 1.8rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Option grids */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.category-btn {
    display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
    padding: 1.9rem 1rem;
    background: var(--ivory);
    border: 1.5px solid var(--border-md);
    border-radius: 1px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem; font-weight: 500;
    color: var(--text);
    transition: all 0.22s ease;
}
.category-btn:hover, .category-btn.selected { border-color: var(--crimson); background: rgba(185,28,60,0.03); color: var(--crimson); }
.category-btn .cat-icon { font-size: 1.9rem; line-height: 1; }

.work-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }

.work-type-btn {
    padding: 1rem 1.2rem;
    background: var(--ivory);
    border: 1.5px solid var(--border-md);
    border-radius: 1px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem; font-weight: 500;
    color: var(--text); text-align: left;
    transition: all 0.22s ease;
}
.work-type-btn:hover, .work-type-btn.selected { border-color: var(--crimson); background: rgba(185,28,60,0.03); color: var(--crimson); }

.budget-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }

/* Budget range inputs */
.budget-field-wrap { position: relative; }
.budget-prefix {
    position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
    font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
    pointer-events: none; z-index: 1;
}
.budget-field-wrap input {
    width: 100%; padding: 0.9rem 1rem 0.9rem 1.9rem;
    background: var(--ivory); border: 1.5px solid var(--stone); border-radius: 1px;
    font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text);
    outline: none; transition: border-color 0.25s ease, background 0.25s ease;
    box-sizing: border-box;
}
.budget-field-wrap input:focus { border-color: var(--gold); background: var(--white); }
.budget-continue-btn {
    display: block; width: 100%; margin-top: 0.25rem;
    text-align: center;
}
.budget-not-sure {
    display: block; width: 100%; padding: 0.8rem;
    margin-top: 0.6rem; background: none; border: none;
    font-family: 'Inter', sans-serif; font-size: 0.83rem;
    color: var(--text-muted); cursor: pointer;
    text-decoration: underline; text-underline-offset: 2px;
    transition: color 0.2s;
}
.budget-not-sure:hover { color: var(--crimson); }

.budget-btn {
    padding: 1.1rem 1rem;
    background: var(--ivory);
    border: 1.5px solid var(--border-md);
    border-radius: 1px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem; font-weight: 500;
    color: var(--text);
    transition: all 0.22s ease;
    text-align: center;
}
.budget-btn:hover, .budget-btn.selected { border-color: var(--crimson); background: rgba(185,28,60,0.03); color: var(--crimson); }
.budget-btn.full-width { grid-column: 1 / -1; width: 100%; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }

.form-group label {
    display: block;
    font-size: 0.65rem; font-weight: 600;
    color: var(--text); letter-spacing: 1.2px;
    text-transform: uppercase; margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--ivory);
    border: 1.5px solid var(--stone);
    border-radius: 1px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 82px; }

.modal-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.8rem; }

.btn-back {
    background: none; border: none;
    color: var(--text-mid);
    font-size: 0.82rem; cursor: pointer;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.4px;
    transition: color 0.25s;
}
.btn-back:hover { color: var(--text); }

.success-state { text-align: center; padding: 2.2rem 0; }
.success-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 1.7rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.6rem;
}
.success-state h2  { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--text); margin-bottom: 0.8rem; letter-spacing: -0.01em; }
.success-state p   { color: var(--text-mid); margin-bottom: 2.2rem; line-height: 1.75; }

/* ─── INNER PAGE HERO ─── */
.page-hero {
    padding: 10.5rem 0 5.5rem;
    background: var(--stone-dark);
    background: linear-gradient(160deg, var(--stone-dark) 0%, var(--ink) 60%, var(--stone-dark) 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(184,150,60,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(184,150,60,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px;
    background: var(--gold-on-dk);
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.12;
}
.page-hero p { color: rgba(255,255,255,0.55); font-size: 0.95rem; max-width: 500px; margin: 0 auto; }

/* ─── BLOG ─── */
.blog-section { padding: 6.5rem 0; background: var(--ivory); }
.blog-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.blog-card {
    background: var(--white);
    border-radius: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12), 0 2px 8px rgba(184,150,60,0.06);
}

.blog-thumb {
    height: 210px;
    background: linear-gradient(135deg, #1A1510, #2E2820);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.12);
    font-size: 0.75rem;
    letter-spacing: 2px; text-transform: uppercase;
}

.blog-body { padding: 1.8rem; }
.blog-meta { font-size: 0.65rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.85rem; font-weight: 500; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.08rem; color: var(--text); margin-bottom: 0.8rem; line-height: 1.42; }
.blog-card p  { color: var(--text-mid); font-size: 0.86rem; line-height: 1.8; margin-bottom: 1.2rem; }
.blog-read-more { color: var(--gold); font-size: 0.78rem; font-weight: 600; text-decoration: none; letter-spacing: 0.5px; }
.blog-read-more:hover { text-decoration: underline; }

/* ─── SERVICES FULL PAGE ─── */
.services-full { padding: 6.5rem 0; background: var(--ivory); }
.services-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.service-full-card {
    background: var(--white);
    padding: 2.8rem;
    border-radius: 1px;
    border-left: 3px solid var(--gold);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-full-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.07); }
.service-full-card .service-icon { font-size: 2.1rem; margin-bottom: 1.2rem; display: block; }
.service-full-card h3 { font-family: 'Playfair Display', serif; font-size: 1.28rem; color: var(--text); margin-bottom: 0.9rem; }
.service-full-card p  { color: var(--text-mid); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1rem; }
.service-full-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.service-full-card ul li { color: var(--text-mid); font-size: 0.86rem; padding-left: 1.1rem; position: relative; }
.service-full-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 0.15em; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── PROMOTIONAL BANNER ─── */
.promo-banner-section {
    background: linear-gradient(135deg, #111009 0%, #200E10 50%, #111009 100%);
    border-bottom: 2px solid var(--crimson);
    position: fixed; top: 0; left: 0; right: 0; width: 100%;
    overflow: hidden; z-index: 1001;
}
.promo-banner-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 65% 50%, rgba(185,28,60,0.16) 0%, transparent 65%);
    pointer-events: none;
}
.promo-banner-inner {
    max-width: 1260px; margin: 0 auto;
    padding: 0.6rem 2rem;
    display: flex; align-items: center; gap: 1.4rem;
    position: relative;
}
.promo-main { flex: 1; min-width: 0; }
.promo-top-row { display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap; }
.promo-badge {
    flex-shrink: 0;
    background: var(--crimson); color: #fff;
    font-size: 0.55rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 0.22rem 0.55rem; border-radius: 2px;
    white-space: nowrap;
}
.promo-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem; font-weight: 700; color: #fff;
    margin: 0; line-height: 1.3; white-space: nowrap;
}
.promo-desc { color: rgba(255,255,255,0.55); font-size: 0.8rem; margin: 0; line-height: 1.4; }
.promo-bottom-row { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.2rem; flex-wrap: wrap; }
.promo-expiry-line { color: rgba(255,255,255,0.4); font-size: 0.7rem; margin: 0; white-space: nowrap; }
.promo-expiry-line strong { color: rgba(255,255,255,0.7); }
.promo-countdown { display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; }
.promo-cd-unit {
    display: flex; align-items: center; gap: 0.18rem;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px; padding: 0.18rem 0.4rem;
}
.promo-cd-unit span  { font-size: 0.8rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; line-height: 1; }
.promo-cd-unit small { font-size: 0.6rem; color: rgba(255,255,255,0.38); text-transform: uppercase; }
.promo-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.promo-cta {
    background: var(--crimson); color: #fff;
    text-decoration: none; white-space: nowrap;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    padding: 0.55rem 1.3rem; border-radius: 1px;
    border: none;
    transition: background 0.2s;
    display: inline-block; cursor: pointer;
}
.promo-cta:hover { background: var(--crimson-dk); }
.promo-close-btn {
    background: none; border: none;
    color: rgba(255,255,255,0.28); font-size: 0.95rem;
    cursor: pointer; padding: 0.25rem; line-height: 1;
    transition: color 0.2s;
}
.promo-close-btn:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 820px) {
    .promo-banner-inner { flex-wrap: wrap; gap: 0.7rem; padding: 0.7rem 1.2rem; }
    .promo-actions { width: 100%; }
    .promo-cta { flex: 1; text-align: center; }
    .promo-close-btn { position: absolute; top: 0.6rem; right: 0.8rem; }
}
@media (max-width: 520px) {
    .promo-title { font-size: 0.88rem; }
    .promo-cd-unit span { font-size: 0.72rem; }
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--ivory); padding: 6.5rem 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem; margin-top: 3rem;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1px;
    padding: 2.2rem;
    display: flex; flex-direction: column; gap: 1.1rem;
}
.testimonial-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.12em; }
.testimonial-quote {
    font-size: 0.93rem; line-height: 1.75;
    color: var(--text-mid); flex: 1;
    font-style: italic;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }
.testimonial-author { font-weight: 600; font-size: 0.88rem; color: var(--text); }
.testimonial-role   { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ─── FEATURED PROJECTS ─── */
.featured-projects-section { padding: 6.5rem 0; background: var(--white); }
.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem; margin-top: 3rem;
}
.feat-proj-card {
    border-radius: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.28s, transform 0.28s;
    background: var(--white);
}
.feat-proj-card:hover {
    box-shadow: 0 28px 64px rgba(0,0,0,0.13), 0 2px 8px rgba(184,150,60,0.06);
    transform: translateY(-10px);
}
.feat-proj-img {
    height: 210px;
    background: var(--cream);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 0.78rem;
}
.feat-proj-img img { width: 100%; height: 100%; object-fit: cover; }
.feat-proj-body { padding: 1.5rem; }
.feat-proj-name { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.feat-proj-meta { font-size: 0.75rem; color: var(--text-mid); display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ─── SERVICES CTA ─── */
.services-cta-section {
    background: var(--ink);
    padding: 6rem 0;
    text-align: center;
    position: relative;
}
.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px;
    background: var(--gold-on-dk);
}
.services-cta-section .section-label { color: var(--gold-on-dk); }
.services-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem); color: #fff;
    margin-bottom: 1.2rem; margin-top: 0.5rem;
    letter-spacing: -0.01em;
}
.services-cta-section p {
    color: rgba(255,255,255,0.42);
    margin-bottom: 2.2rem;
    max-width: 460px; margin-left: auto; margin-right: auto;
    font-size: 0.93rem; line-height: 1.8;
}

/* ─── TRUST BADGES ─── */
.trust-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
    overflow: hidden;
}
.trust-inner { max-width: 100%; }
.trust-label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0 0 1.5rem;
}
.trust-track-wrap {
    overflow: hidden; position: relative;
}
.trust-track-wrap::before,
.trust-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px; z-index: 1;
    pointer-events: none;
}
.trust-track-wrap::before { left: 0;  background: linear-gradient(to right,  var(--white), transparent); }
.trust-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.trust-track {
    display: flex; gap: 3rem; width: max-content;
    animation: trustScroll 28s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }
.trust-badge-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem;
    flex-shrink: 0; min-width: 120px;
}
.trust-badge-item img {
    height: 52px; width: auto; max-width: 140px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.55);
    transition: filter 0.3s;
}
.trust-badge-item:hover img { filter: grayscale(0) opacity(1); }
.trust-badge-name { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; text-align: center; letter-spacing: 0.03em; }
@keyframes trustScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .team-grid          { grid-template-columns: repeat(2, 1fr); }
    .services-grid      { grid-template-columns: repeat(2, 1fr); }
    .footer-content     { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .services-full-grid { grid-template-columns: 1fr; }
    .blog-grid          { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .container, .nav-container, .stats-container { padding: 0 24px; }

    .nav-menu {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: rgba(12,11,9,0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255,255,255,0.04);
        padding: 0.5rem 0;
    }
    .nav-menu li  { width: 100%; }
    .nav-link     { display: block; padding: 1rem 2rem; font-size: 0.82rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
    .nav-link::after { display: none; }
    .hamburger    { display: flex; }

    .hero h1   { font-size: 2.4rem; }
    .hero-sub  { font-size: 0.98rem; }

    .stats-container { flex-wrap: wrap; gap: 2.5rem 0; }
    .stat-divider    { display: none; }
    .stat-item       { flex: 0 0 50%; }

    .about-content   { grid-template-columns: 1fr; gap: 3.5rem; }
    .about-image     { height: 340px; order: -1; }
    .services-grid   { grid-template-columns: 1fr; }

    .team-grid       { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

    .footer-content  { grid-template-columns: 1fr; padding: 0 24px 3rem; }
    .footer-bottom   { padding: 1.5rem 24px; }

    .form-row  { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .modal     { padding: 2.2rem 1.6rem; }
}

@media (max-width: 520px) {
    .hero h1         { font-size: 2rem; }
    .hero-actions    { flex-direction: column; align-items: center; }
    .team-grid       { grid-template-columns: 1fr; }
    .section-header h2, .about-text h2 { font-size: 1.9rem; }
    .stat-number     { font-size: 2.2rem; }
    .category-grid, .work-type-grid, .budget-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   EXTENSION COST CALCULATOR
   ═══════════════════════════════════════════════════════════ */

.calc-hero {
    background: var(--stone-dark);
    background: linear-gradient(160deg, var(--stone-dark) 0%, var(--ink) 60%, var(--stone-dark) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.calc-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184,150,60,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.calc-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin: 0.5rem 0 1rem;
}
.calc-hero p {
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.calc-main { padding: 5rem 0; background: var(--ivory); }

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.calc-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 2px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.calc-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0 0 0.3rem;
    color: var(--ink);
}
.calc-card > p {
    color: var(--text-mid);
    font-size: 0.875rem;
    margin: 0 0 1.8rem;
    line-height: 1.6;
}

.calc-field { margin-bottom: 2rem; }
.calc-field:last-child { margin-bottom: 0; }

.storey-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.storey-btn {
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
    padding: 1rem 0.75rem; border-radius: 8px; cursor: pointer; text-align: center;
    border: 2px solid var(--border-md); background: #fff;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.storey-btn:hover { border-color: var(--gold); }
.storey-btn.active { border-color: var(--gold); background: #fdfaf3; box-shadow: 0 2px 12px rgba(184,150,60,0.15); }
.storey-icon  { font-size: 1.6rem; line-height: 1; }
.storey-label { font-size: 0.82rem; font-weight: 700; color: var(--text); letter-spacing: 0.01em; }
.storey-desc  { font-size: 0.72rem; color: var(--text-muted); }

.calc-field-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}
.calc-field-head > span:first-child {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ink);
}
.calc-price-hint {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 0.4rem;
}

/* Slider */
.calc-slider-row { display: flex; align-items: center; gap: 1rem; }
.calc-slider {
    flex: 1;
    height: 4px;
    accent-color: var(--gold);
    cursor: pointer;
    border-radius: 2px;
}
.calc-number-input {
    width: 72px;
    padding: 0.55rem 0.6rem;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 1px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
    -moz-appearance: textfield;
}
.calc-number-input::-webkit-inner-spin-button,
.calc-number-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.calc-number-input:focus { border-color: var(--gold); }
.calc-unit { font-size: 0.8rem; color: var(--text-mid); white-space: nowrap; }

/* Steppers */
.calc-stepper { display: flex; align-items: center; gap: 1.2rem; }
.stepper-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.12);
    background: #fff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, background 0.2s, transform 0.1s;
    user-select: none;
}
.stepper-btn:hover { border-color: var(--gold); background: var(--ivory); }
.stepper-btn:active { transform: scale(0.93); }
.stepper-val {
    font-size: 1.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    min-width: 2ch;
    text-align: center;
    color: var(--ink);
}

/* Summary panel */
.calc-summary-card {
    background: var(--ink);
    color: #fff;
    padding: 2rem;
    border-radius: 2px;
    position: sticky;
    top: 5.5rem;
}
.calc-summary-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.calc-total-val {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.calc-range-display {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.6rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.calc-range-bands {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.range-band {
    padding: 0.9rem;
    border-radius: 2px;
    text-align: center;
}
.range-band.low  { background: rgba(34,197,94,0.12);  border: 1px solid rgba(34,197,94,0.25); }
.range-band.high { background: rgba(239,68,68,0.1);   border: 1px solid rgba(239,68,68,0.2); }
.range-band-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    display: block;
}
.range-band.low  .range-band-label { color: #86efac; }
.range-band.high .range-band-label { color: #fca5a5; }
.range-band strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
}
.range-band.low  strong { color: #4ade80; }
.range-band.high strong { color: #f87171; }

.bkd-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.8rem;
    gap: 0.5rem;
}
.bkd-row:last-child { border-bottom: none; }
.bkd-row span { color: rgba(255,255,255,0.55); }
.bkd-row strong { color: #fff; white-space: nowrap; }

.calc-disclaimer {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    margin-top: 1rem;
    line-height: 1.6;
}

/* Contact form section */
.calc-contact-section { padding: 6rem 0; background: #fff; }
.calc-contact-section .container { max-width: 680px; }
.calc-contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 0.5rem 0 1rem;
}
.calc-contact-section > .container > p { color: var(--text-mid); margin-bottom: 2rem; line-height: 1.7; }

.calc-form-recap {
    background: var(--ivory);
    border-left: 3px solid var(--gold);
    padding: 1rem 1.3rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 0 2px 2px 0;
}
.calc-form-recap strong { font-weight: 700; color: var(--ink); }
.calc-form-recap span   { color: var(--text-mid); font-size: 0.82rem; }

.calc-success {
    text-align: center;
    padding: 4rem 2rem;
}
.calc-success-icon {
    width: 72px; height: 72px;
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: #16a34a;
}
.calc-success h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0 0 0.75rem;
}
.calc-success p { color: var(--text-mid); line-height: 1.7; }

/* Calculator form field reuse */
.calc-fg { margin-bottom: 1.2rem; }
.calc-fg label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.calc-fg input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 1px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.calc-fg input:focus { border-color: var(--gold); }
#calcFormStatus { font-size: 0.85rem; color: var(--crimson); margin-bottom: 0.75rem; }

/* Responsive */
@media (max-width: 960px) {
    .calc-grid { grid-template-columns: 1fr; }
    .calc-summary-card { position: static; }
}
@media (max-width: 640px) {
    .calc-range-bands { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE ENHANCEMENTS — polished app-quality experience
   ═══════════════════════════════════════════════════════════ */

/* Prevent iOS from zooming on input focus */
input, select, textarea, button { touch-action: manipulation; }
@media (max-width: 820px) {
    input[type="text"], input[type="email"], input[type="tel"],
    input[type="number"], input[type="password"], input[type="search"],
    input[type="date"], select, textarea {
        font-size: 16px !important;
    }
}

/* Hamburger animation */
.hamburger { transition: opacity 0.2s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Nav overlay when menu is open */
.nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}
.nav-overlay.active { display: block; }

@media (max-width: 820px) {
    /* Nav menu open state */
    .nav-menu.open {
        display: flex !important;
    }
    .nav-link { min-height: 48px; display: flex !important; align-items: center; }

    /* Better section spacing */
    .section-header       { margin-bottom: 2.2rem; }
    .section-header h2    { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .about-section,
    .services-section,
    .team-section,
    .testimonials-section,
    .featured-projects-section { padding: 4rem 0; }

    /* Hero */
    .hero h1    { font-size: clamp(1.8rem, 7vw, 2.4rem); line-height: 1.2; }
    .hero-sub   { font-size: 0.93rem; padding: 0 1rem; }
    .hero-actions { flex-direction: column; align-items: center; gap: 0.75rem; width: 100%; padding: 0 1.5rem; }
    .btn-hero, .btn-hero-out { width: 100%; max-width: 320px; text-align: center; justify-content: center; }

    /* Stats */
    .stats-section { padding: 3rem 0; }

    /* Quote modal — full screen on mobile */
    .modal-overlay { padding: 0; align-items: flex-end; }
    .modal {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 12px 12px 0 0;
        padding: 2rem 1.5rem 2.5rem;
        transform: translateY(100%);
    }
    .modal-overlay.active .modal { transform: translateY(0); }
    .modal-close { top: 1rem; right: 1rem; width: 40px; height: 40px; font-size: 1.2rem; }

    /* Form steps */
    .form-row { grid-template-columns: 1fr !important; }
    .form-actions { flex-direction: column; gap: 0.75rem; }
    .form-actions .btn-primary,
    .form-actions .btn-secondary { width: 100%; justify-content: center; }

    /* Footer */
    .footer { padding: 3.5rem 0 0; }
}

@media (max-width: 480px) {
    .container, .nav-container { padding: 0 16px; }
    .hero h1 { font-size: clamp(1.6rem, 8vw, 2rem); }
    .section-header h2 { font-size: 1.65rem; }
    .stat-number { font-size: 2rem; }
    .feat-proj-card:hover { transform: none; } /* no hover lift on touch */
    .service-card, .testimonial-card { padding: 1.6rem; }
}
