/* ==========================================================================
   LUJAN'S LINE & CURB APPEAL CO.
   Theme: Editorial / Royal — Gold (#D1A238), Ivory, Charcoal, Black
   ========================================================================== */

:root {
    --gold:        #D1A238;
    --gold-bright: #E8B947;
    --gold-deep:   #A87E1F;
    --gold-soft:   rgba(209, 162, 56, 0.12);

    --ink:         #0E0E10;
    --charcoal:    #1A1A1D;
    --graphite:    #2C2C30;
    --slate:       #4A4A50;
    --stone:       #8B8B92;

    --ivory:       #FAF7F0;
    --cream:       #F4EFE2;
    --paper:       #FFFFFF;

    --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
    --shadow-lg:   0 18px 48px rgba(14,14,16,.18), 0 6px 18px rgba(14,14,16,.10);
    --shadow-gold: 0 8px 28px rgba(209, 162, 56, .35);

    --maxw: 1240px;
    --gutter: clamp(20px, 4vw, 56px);
    --radius: 4px;

    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans:    'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-mono:    'JetBrains Mono', 'Courier New', monospace;
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

.eyebrow {
    font-family: var(--font-sans);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    display: inline-block;
    position: relative;
    padding-left: 36px;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 24px; height: 2px;
    background: var(--gold);
}

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

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(70px, 9vw, 130px) 0; }
.section--dark { background: var(--ink); color: var(--ivory); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--ivory); }
.section--cream { background: var(--cream); }
.section--ivory { background: var(--ivory); }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announce {
    background: var(--ink);
    color: var(--ivory);
    font-size: .82rem;
    letter-spacing: .05em;
    padding: 9px var(--gutter);
    text-align: center;
    border-bottom: 1px solid rgba(209, 162, 56, .22);
}
.announce strong { color: var(--gold-bright); font-weight: 600; }
.announce a { color: var(--gold-bright); border-bottom: 1px solid rgba(232, 185, 71, .35); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(14, 14, 16, .08);
    transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 14px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav__brand img { width: 44px; height: 44px; object-fit: contain; }
.nav__brand-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1;
    color: var(--ink);
    white-space: nowrap;
}
.nav__brand-text span {
    display: block;
    font-family: var(--font-sans);
    font-size: .65rem;
    letter-spacing: .25em;
    color: var(--gold-deep);
    margin-top: 4px;
    font-weight: 600;
}
@media (max-width: 480px) {
    .nav__brand-text { font-size: 1rem; }
    .nav__brand-text span { font-size: .58rem; letter-spacing: .18em; }
}

.nav__menu { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav__menu a {
    font-size: .92rem;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    padding: 4px 0;
}
.nav__menu a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .3s ease;
}
.nav__menu a:hover::after, .nav__menu a.active::after { width: 100%; }
.nav__menu a.active { color: var(--ink); }

.nav__cta {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav__phone {
    font-weight: 600;
    color: var(--ink);
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav__phone svg { width: 16px; height: 16px; color: var(--gold-deep); }

.nav__toggle {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav__toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--ink);
    transition: all .3s ease;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all .25s ease;
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn--gold {
    background: var(--gold);
    color: var(--ink);
    box-shadow: var(--shadow-md);
}
.btn--gold:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn--outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn--outline:hover {
    background: var(--ink);
    color: var(--ivory);
}
.btn--outline-light {
    background: transparent;
    color: var(--ivory);
    border-color: var(--ivory);
}
.btn--outline-light:hover {
    background: var(--ivory);
    color: var(--ink);
}
.btn--ghost {
    color: var(--gold-deep);
    padding: 8px 0;
    border-radius: 0;
    border-bottom: 1px solid currentColor;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
    color: var(--ivory);
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .42;
}
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0,0,0,.2), rgba(0,0,0,.85) 75%),
        linear-gradient(180deg, rgba(14,14,16,.55) 0%, rgba(14,14,16,.85) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 80px var(--gutter);
    width: 100%;
}
.hero__crown {
    width: 78px;
    margin-bottom: 28px;
    filter: drop-shadow(0 4px 18px rgba(209, 162, 56, .45));
    animation: floatCrown 4s ease-in-out infinite;
}
@keyframes floatCrown {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero__title {
    color: var(--ivory);
    font-weight: 500;
    margin-bottom: 24px;
    max-width: 920px;
}
.hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-bright);
    position: relative;
    display: inline-block;
}
.hero__title em::after {
    content: '';
    position: absolute;
    left: 0; bottom: 4px;
    width: 100%; height: 1px;
    background: var(--gold);
    opacity: .5;
}

.hero__lede {
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    line-height: 1.65;
    color: rgba(250, 247, 240, .82);
    max-width: 620px;
    margin-bottom: 38px;
}

.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__meta {
    margin-top: 64px;
    display: flex;
    gap: clamp(28px, 5vw, 64px);
    flex-wrap: wrap;
    border-top: 1px solid rgba(209, 162, 56, .22);
    padding-top: 28px;
    max-width: 720px;
}
.hero__stat span {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold-bright);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}
.hero__stat small {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(250, 247, 240, .65);
}

/* ==========================================================================
   PROCESS — three steps
   ========================================================================== */
.process { position: relative; }
.process__head { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.process__head .eyebrow { padding-left: 0; padding-right: 36px; }
.process__head .eyebrow::before { left: auto; right: 0; }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    z-index: 0;
}
.step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}
.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--gold);
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
}
.step__num::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(209, 162, 56, .25);
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--slate); max-width: 320px; margin: 0 auto; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 60px;
}
.service-card {
    background: var(--paper);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .35s cubic-bezier(.2,.8,.2,1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(14,14,16,.06);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-soft);
}
.service-card__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.service-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(14,14,16,.45));
}
.service-card__tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--gold);
    color: var(--ink);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
    z-index: 1;
}
.service-card__body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card__body h3 { margin-bottom: 12px; }
.service-card__body p { color: var(--slate); flex: 1; margin-bottom: 20px; }

/* ==========================================================================
   ABOUT / SPLIT
   ========================================================================== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}
.split--reverse .split__media { order: 2; }

.split__media {
    position: relative;
}
.split__media img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
}
.split__media::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 70%; height: 70%;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
}
.split__media::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 50%; height: 50%;
    background: var(--gold-soft);
    border-radius: 4px;
    z-index: -1;
}

.split__body p { color: var(--slate); margin-bottom: 18px; font-size: 1.02rem; }
.split__body p.lede { font-size: 1.18rem; color: var(--charcoal); font-weight: 400; line-height: 1.55; }

.signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(14,14,16,.1);
    display: flex;
    align-items: center;
    gap: 18px;
}
.signature__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ink);
    font-style: italic;
    line-height: 1;
}
.signature__title {
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-top: 6px;
}

/* ==========================================================================
   GALLERY / PORTFOLIO
   ========================================================================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 56px;
}
.gallery__item {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    background: var(--ink);
}
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s ease, opacity .4s ease;
}
.gallery__item:hover img { transform: scale(1.05); opacity: .85; }
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14,14,16,.55));
    opacity: 0;
    transition: opacity .3s ease;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
    position: absolute;
    bottom: 18px; left: 20px;
    color: var(--ivory);
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    transform: translateY(8px);
    opacity: 0;
    transition: all .35s ease;
    z-index: 2;
}
.gallery__item:hover .gallery__caption { transform: translateY(0); opacity: 1; }

.gallery__item--lg { grid-column: span 8; aspect-ratio: 16/9; }
.gallery__item--md { grid-column: span 4; aspect-ratio: 4/5; }
.gallery__item--sm { grid-column: span 4; aspect-ratio: 4/3; }
.gallery__item--wide { grid-column: span 6; aspect-ratio: 3/2; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
    background:
        linear-gradient(135deg, rgba(14,14,16,.92), rgba(14,14,16,.78)),
        url('/images/aerial-view.jpg') center/cover no-repeat;
    color: var(--ivory);
    padding: clamp(70px, 9vw, 120px) 0;
    text-align: center;
    position: relative;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-band__inner { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
.cta-band h2 { color: var(--ivory); margin-bottom: 18px; }
.cta-band p { font-size: 1.1rem; color: rgba(250, 247, 240, .82); margin-bottom: 36px; }

/* ==========================================================================
   FEATURES / VALUE PROPS
   ========================================================================== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 56px;
}
.feature {
    padding: 32px 28px;
    background: var(--paper);
    border-radius: 4px;
    border: 1px solid rgba(14,14,16,.08);
    transition: all .3s ease;
}
.feature:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.feature__icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-deep);
    margin-bottom: 20px;
}
.feature__icon svg { width: 38px; height: 38px; }
.feature h4 { margin-bottom: 10px; }
.feature p { color: var(--slate); font-size: .95rem; }

/* ==========================================================================
   CONTACT / FORMS
   ========================================================================== */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.form-row { grid-column: span 2; }
.form-half { grid-column: span 1; }

.form-field { position: relative; }
.form-field label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-field label .req { color: var(--gold-deep); }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(14,14,16,.18);
    border-radius: var(--radius);
    transition: all .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-field textarea { resize: vertical; min-height: 130px; font-family: var(--font-sans); }

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact-info { padding-right: 12px; }
.contact-info h3 { margin-bottom: 20px; }
.contact-info p { color: var(--slate); margin-bottom: 36px; max-width: 460px; }

.info-line {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 0;
    border-top: 1px solid rgba(14,14,16,.1);
}
.info-line:last-child { border-bottom: 1px solid rgba(14,14,16,.1); }
.info-line__icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-soft);
    color: var(--gold-deep);
    border-radius: 4px;
}
.info-line__icon svg { width: 20px; height: 20px; }
.info-line__body small {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 4px;
}
.info-line__body strong {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
}
.info-line__body a { color: var(--ink); }
.info-line__body a:hover { color: var(--gold-deep); }

.form-card {
    background: var(--paper);
    padding: 40px;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold);
}
.form-card h3 { margin-bottom: 8px; }
.form-card p.note { color: var(--slate); font-size: .92rem; margin-bottom: 28px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--ink);
    color: var(--ivory);
    padding: 80px 0 0;
    border-top: 1px solid rgba(209, 162, 56, .2);
}
.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250, 247, 240, .1);
}
.footer__brand { max-width: 340px; }
.footer__brand img { width: 56px; margin-bottom: 18px; }
.footer__brand .brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ivory);
    margin-bottom: 12px;
    line-height: 1.2;
}
.footer__brand p {
    color: rgba(250, 247, 240, .65);
    font-size: .92rem;
    line-height: 1.7;
}

.footer h5 {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 22px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
    color: rgba(250, 247, 240, .75);
    font-size: .94rem;
    transition: color .2s ease;
}
.footer ul a:hover { color: var(--gold-bright); }

.footer__contact-line {
    color: rgba(250, 247, 240, .8);
    font-size: .94rem;
    margin-bottom: 12px;
}
.footer__contact-line strong { color: var(--ivory); display: block; font-weight: 500; }

.footer__bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .82rem;
    color: rgba(250, 247, 240, .55);
}
.footer__bottom a { color: var(--gold-bright); transition: color .2s ease; }
.footer__bottom a:hover { color: var(--gold); }

/* ==========================================================================
   FREE ESTIMATE MODAL
   ========================================================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal.is-open { display: flex; animation: modalFadeIn .25s ease; }

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 16, .78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal__panel {
    position: relative;
    background: var(--paper);
    width: 100%;
    max-width: 640px;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    border-top: 5px solid var(--gold);
    animation: modalSlideUp .4s cubic-bezier(.2,.8,.2,1);
}

.modal__head {
    padding: 36px 40px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(14,14,16,.08);
    position: relative;
}
.modal__crown {
    width: 48px;
    margin: 0 auto 14px;
}
.modal__head h3 {
    font-size: 1.7rem;
    margin-bottom: 8px;
}
.modal__head p {
    color: var(--slate);
    font-size: .96rem;
}

.modal__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 38px; height: 38px;
    border-radius: 50%;
    color: var(--charcoal);
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal__close:hover { background: var(--cream); color: var(--ink); }

.modal__body { padding: 28px 40px 40px; }

@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.form-success, .form-error {
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
    font-size: .95rem;
}
.form-success.show, .form-error.show { display: block; }
.form-success {
    background: rgba(34, 137, 81, .12);
    color: #1f6d44;
    border-left: 3px solid #1f6d44;
}
.form-error {
    background: rgba(184, 38, 38, .1);
    color: #a32424;
    border-left: 3px solid #a32424;
}

/* ==========================================================================
   PAGE HEADER (sub-pages)
   ========================================================================== */
.page-header {
    background: var(--ink);
    color: var(--ivory);
    padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 7vw, 100px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(209, 162, 56, .2), transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(209, 162, 56, .12), transparent 60%);
    opacity: .9;
}
.page-header__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 0 var(--gutter); }
.page-header h1 { color: var(--ivory); margin-bottom: 18px; }
.page-header p { color: rgba(250, 247, 240, .8); font-size: 1.15rem; }
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: .82rem;
    color: rgba(250, 247, 240, .65);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.breadcrumbs a { color: var(--gold-bright); }
.breadcrumbs span { color: rgba(250, 247, 240, .35); }

/* ==========================================================================
   SERVICE DETAIL
   ========================================================================== */
.service-detail__content p { color: var(--slate); margin-bottom: 20px; font-size: 1.04rem; }
.service-detail__content h3 { margin-top: 36px; margin-bottom: 16px; }
.service-detail__content ul {
    list-style: none;
    margin: 24px 0;
}
.service-detail__content ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--charcoal);
}
.service-detail__content ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 18px;
    width: 18px; height: 2px;
    background: var(--gold);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}
.service-list__item {
    padding: 30px;
    background: var(--ivory);
    border-radius: 4px;
    border-left: 3px solid var(--gold);
}
.service-list__item h4 { margin-bottom: 10px; }
.service-list__item p { color: var(--slate); font-size: .95rem; }

/* ==========================================================================
   FAB — Floating Free Estimate button
   ========================================================================== */
.fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    background: var(--gold);
    color: var(--ink);
    padding: 14px 22px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .35s ease;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}
.fab.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.fab:hover {
    background: var(--gold-bright);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(209, 162, 56, .5);
}
.fab svg { width: 16px; height: 16px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
    .nav__menu, .nav__phone, .nav__cta .btn--gold { display: none; }
    .nav__toggle { display: flex; }
    .nav__cta { gap: 0; }
    .nav.is-open .nav__menu {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--paper);
        flex-direction: column;
        padding: 24px var(--gutter);
        gap: 18px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(14,14,16,.06);
    }
    .steps { grid-template-columns: 1fr; gap: 50px; }
    .steps::before { display: none; }
    .split { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
    .gallery {
        grid-template-columns: repeat(6, 1fr);
    }
    .gallery__item--lg, .gallery__item--md,
    .gallery__item--sm, .gallery__item--wide { grid-column: span 6; aspect-ratio: 4/3; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: span 2; }
}

@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-half { grid-column: span 1; }
    .form-row { grid-column: span 1; }
    .footer__top { grid-template-columns: 1fr; }
    .footer__brand { grid-column: span 1; }
    .modal__head, .modal__body { padding-left: 24px; padding-right: 24px; }
    .form-card { padding: 28px 22px; }
    .fab span { display: none; }
    .fab { padding: 14px; }
    .hero__ctas { flex-direction: column; align-items: stretch; }
    .hero__ctas .btn { width: 100%; }
    .hero__meta { gap: 24px; }
    .hero__stat span { font-size: 1.7rem; }
}

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }
