/* ============================================================
   Nashville Paint Co. — site.css
   Matches the Canva "Painting Done Right" design:
   deep navy + gold on white/cream, condensed display type.
   ============================================================ */

:root {
    --navy: #061c3a;
    --navy-deep: #00172f;
    --navy-text: #0b2344;
    --navy-mid: #16325c;
    --gold: #e0a02a;
    --gold-bright: #f5b321;
    --gold-deep: #c48c2c;
    --gold-soft: #f3dfb0;
    --cream: #f6f3ee;
    --cream-2: #eeeae3;
    --white: #fdfdfd;
    --text: #23344f;
    --muted: #55647c;
    --line: #e1e5ec;

    --font-display: 'Barlow Semi Condensed', 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-script: 'Dancing Script', 'Brush Script MT', cursive;

    --container: 1280px;
    --gutter: 32px;
    --header-h: 84px;
    --shadow: 0 12px 32px rgba(6, 28, 58, .10);
    --shadow-sm: 0 2px 10px rgba(6, 28, 58, .08);
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
svg { display: block; }
strong { font-weight: 700; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Typography helpers ---------- */
.kicker {
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy-text);
}
.sec-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: clamp(26px, 2.6vw, 32px);
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--navy-text);
    text-align: center;
    margin-bottom: 40px;
}
.sec-title::before, .sec-title::after { content: ''; width: 64px; height: 2px; background: var(--gold); flex: none; }
.sec-title--left { justify-content: flex-start; }
.sec-title--left::after { display: none; }
.sec-title--light { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1;
    padding: 16px 26px;
    border-radius: 3px;
    border: 2px solid transparent;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--gold {
    background: linear-gradient(180deg, #e2a72f 0%, var(--gold-deep) 100%);
    color: var(--navy-text);
    box-shadow: 0 2px 0 rgba(0, 0, 0, .18), 0 6px 16px rgba(196, 140, 44, .28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 3px 0 rgba(0, 0, 0, .18), 0 12px 24px rgba(196, 140, 44, .38); }
.btn--outline { background: #fff; border-color: var(--navy-text); color: var(--navy-text); }
.btn--outline:hover { background: var(--navy-text); color: #fff; }
.btn--sm { padding: 12px 20px; font-size: 15px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid transparent;
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.header.scrolled { box-shadow: 0 6px 24px rgba(6, 28, 58, .10); border-color: var(--line); }
.header__inner { display: flex; align-items: center; gap: 28px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand__mark { height: 54px; width: auto; }
.brand__text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-cond);
    font-weight: 700;
    color: var(--navy-text);
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}
.brand__text span:first-child { font-size: 24px; }
.brand__text span:last-child { font-size: 18px; letter-spacing: .16em; margin-top: 4px; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-cond);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--navy-text);
    padding: 10px 12px;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    left: 12px; right: 12px; bottom: 2px;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link svg { width: 14px; height: 14px; }
.nav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__item--sub:hover .nav__sub, .nav__item--sub.open .nav__sub, .nav__item--sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub a {
    display: block;
    padding: 10px 18px;
    font-family: var(--font-cond);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--navy-text);
}
.nav__sub a:hover { background: var(--cream); color: var(--gold-deep); }
.header__cta { flex: none; }
.nav__cta { display: none; }

.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; height: 3px; background: var(--navy-text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.nav-overlay { position: fixed; inset: 0; background: rgba(0, 23, 47, .55); z-index: 90; opacity: 0; visibility: hidden; transition: opacity .3s; }
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 47%) minmax(0, 53%);
    min-height: 660px;
    background: var(--white);
}
.hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 48px 64px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}
.hero__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(58px, 6.4vw, 100px);
    line-height: .92;
    letter-spacing: -.005em;
    text-transform: uppercase;
    color: var(--navy-text);
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__lead { font-size: 19px; line-height: 1.5; color: var(--text); margin: 28px 0 22px; max-width: 520px; }
.hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--navy-text);
}
.hero__meta svg { width: 26px; height: 26px; color: var(--gold); }
.hero__meta .gold { color: var(--gold); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }

.hero__media { position: relative; min-height: 420px; overflow: hidden; background: var(--navy); }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero__badge {
    position: absolute;
    right: 3%;
    top: 10%;
    width: min(480px, 76%);
    aspect-ratio: 1197 / 616;
    transform: rotate(-2deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6% 13% 8%;
    color: #fff;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .35));
}
.hero__badge > * { position: relative; }
.hero__badge > .hero__badge-stroke { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.hero__badge-1 { font-family: var(--font-cond); font-weight: 700; font-size: clamp(30px, 3vw, 46px); letter-spacing: .02em; line-height: 1; text-transform: uppercase; }
.hero__badge-2 { font-family: var(--font-cond); font-weight: 500; font-size: clamp(18px, 1.9vw, 27px); letter-spacing: .03em; line-height: 1.1; text-transform: uppercase; margin-top: 4px; }
.hero__badge-rule { display: flex; align-items: center; gap: 8px; margin: 10px 0 6px; color: var(--gold-bright); }
.hero__badge-rule::before, .hero__badge-rule::after { content: ''; width: 46px; height: 1px; background: rgba(255, 255, 255, .55); }
.hero__badge-rule svg { width: 14px; height: 14px; fill: currentColor; }
.hero__badge-3 { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(18px, 1.9vw, 26px); color: var(--gold-bright); letter-spacing: .01em; }

/* ---------- Trust bar ---------- */
.trust { background: var(--navy); color: #fff; }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust__item { display: flex; align-items: center; gap: 18px; padding: 30px 32px; border-left: 1px solid rgba(255, 255, 255, .14); }
.trust__item:first-child { border-left: 0; padding-left: 0; }
.trust__icon { width: 54px; height: 54px; flex: none; color: var(--gold-bright); }
.trust__icon svg { width: 100%; height: 100%; }
.trust__title { font-family: var(--font-cond); font-weight: 700; font-size: 19px; letter-spacing: .06em; text-transform: uppercase; line-height: 1.1; }
.trust__desc { font-size: 15px; color: rgba(255, 255, 255, .82); margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #fff; }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.service { text-align: center; }
.service__media { position: relative; margin-bottom: 40px; }
.service__media img { aspect-ratio: 4 / 3; width: 100%; height: auto; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow-sm); }
.service__icon {
    position: absolute;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 4px var(--white), 0 6px 14px rgba(6, 28, 58, .25);
}
.service__icon svg { width: 28px; height: 28px; }
.service__title { font-family: var(--font-cond); font-weight: 700; font-size: 18px; letter-spacing: .06em; text-transform: uppercase; color: var(--navy-text); }
.service__desc { font-size: 15px; color: var(--muted); margin-top: 6px; max-width: 240px; margin-inline: auto; }
.service-extra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
}
.service-extra__icon { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; flex: none; }
.service-extra__icon svg { width: 24px; height: 24px; }
.service-extra__title { font-family: var(--font-cond); font-weight: 700; font-size: 18px; letter-spacing: .06em; text-transform: uppercase; color: var(--navy-text); }
.service-extra__desc { font-size: 15px; color: var(--muted); }
.service-extra__sep { width: 1px; height: 28px; background: var(--line); }

/* ---------- Process ---------- */
.process__grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.step { text-align: center; padding: 8px 18px; border-left: 1px solid rgba(6, 28, 58, .12); }
.step:first-child { border-left: 0; }
.step__icon {
    position: relative;
    width: 68px; height: 68px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-bright);
    display: grid;
    place-items: center;
}
.step__icon svg { width: 32px; height: 32px; }
.step__num {
    position: absolute;
    top: -4px; right: -6px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--gold-bright);
    color: var(--navy-text);
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 14px;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 3px var(--cream);
}
.step__title { font-family: var(--font-cond); font-weight: 700; font-size: 17px; letter-spacing: .06em; text-transform: uppercase; color: var(--navy-text); }
.step__desc { font-size: 14.5px; color: var(--muted); margin-top: 6px; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; }
.about__panel {
    background: var(--cream-2);
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .55), transparent 55%);
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3.2vw, 42px); line-height: 1.02; text-transform: uppercase; color: var(--navy-text); margin: 6px 0 20px; }
.about__body { font-size: 16.5px; line-height: 1.6; color: var(--text); max-width: 540px; }
.about__script { font-family: var(--font-script); font-weight: 700; font-size: clamp(24px, 2.4vw, 30px); line-height: 1.2; color: var(--gold); margin-top: 26px; max-width: 480px; }
.about__media { position: relative; min-height: 380px; }
.about__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.local-badge {
    position: absolute;
    right: 28px; bottom: -28px;
    width: 164px; height: 164px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    box-shadow: 0 0 0 4px var(--gold-bright), 0 0 0 9px var(--navy), 0 14px 30px rgba(0, 0, 0, .35);
    transform: rotate(-4deg);
}
.local-badge__top { font-family: var(--font-cond); font-weight: 600; font-size: 13px; letter-spacing: .28em; color: var(--gold-bright); }
.local-badge__main { font-family: var(--font-cond); font-weight: 700; font-size: 28px; letter-spacing: .06em; margin: 8px 0 6px; }
.local-badge__sub { font-family: var(--font-cond); font-weight: 600; font-size: 11.5px; letter-spacing: .14em; }
.local-badge__stars { color: var(--gold-bright); font-size: 11px; letter-spacing: .2em; margin-top: 8px; }
.areas { margin-top: 64px; text-align: center; }
.areas__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 0; margin-top: 14px; font-size: 16px; color: var(--text); }
.areas__list li { display: inline-flex; align-items: center; }
.areas__list li + li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin: 0 14px; }

/* ---------- Projects ---------- */
.projects__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.project { background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.project img { aspect-ratio: 4 / 3; width: 100%; height: auto; object-fit: cover; }
.project__body { padding: 14px 16px 16px; }
.project__title { font-family: var(--font-cond); font-weight: 700; font-size: 17px; letter-spacing: .05em; text-transform: uppercase; color: var(--navy-text); }
.project__cat { font-size: 14px; color: var(--muted); margin-top: 2px; }

/* ---------- Reviews ---------- */
.reviews__head { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 32px; }
.reviews__head .sec-title { margin-bottom: 0; }
.stars { display: inline-flex; gap: 3px; color: var(--gold-bright); }
.stars svg { width: 20px; height: 20px; fill: currentColor; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.review { padding: 8px 32px; border-left: 1px solid rgba(255, 255, 255, .16); }
.review:first-child { padding-left: 0; border-left: 0; }
.review__text { font-size: 17px; line-height: 1.55; color: rgba(255, 255, 255, .92); }
.review__text::before { content: '\201C'; }
.review__text::after { content: '\201D'; }
.review__author { margin-top: 18px; font-size: 15px; color: rgba(255, 255, 255, .85); }
.review__author strong { display: block; font-family: var(--font-cond); font-size: 17px; letter-spacing: .04em; color: #fff; }

/* ---------- CTA band ---------- */
.cta { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.cta__photo { position: absolute; left: 0; top: 0; bottom: 0; width: 46%; }
.cta__photo img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.cta__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 28, 58, 0) 45%, rgba(6, 28, 58, .4) 100%); }
.cta__edge { position: absolute; right: -2px; top: 0; height: 100%; width: 170px; color: var(--navy); z-index: 1; }
.cta__inner { position: relative; display: grid; grid-template-columns: minmax(0, 46%) minmax(0, 54%); min-height: 300px; }
.cta__content { padding: 56px 0 56px 48px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 6px; }
.cta__script { font-family: var(--font-script); font-weight: 700; font-size: clamp(34px, 3.6vw, 46px); color: var(--gold-bright); line-height: 1.1; }
.cta__title { font-family: var(--font-cond); font-weight: 700; font-size: clamp(24px, 2.4vw, 30px); letter-spacing: .05em; text-transform: uppercase; }
.cta__desc { font-size: 16px; color: rgba(255, 255, 255, .85); }
.cta__content .btn { margin-top: 18px; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow-sm); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-family: var(--font-cond);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: .02em;
    color: var(--navy-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    flex: none;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--gold-bright);
    color: var(--navy-text);
    display: grid;
    place-items: center;
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__a { padding: 0 22px 20px; font-size: 16px; line-height: 1.6; color: var(--text); }
.faq-item__a a { color: var(--gold-deep); font-weight: 600; text-decoration: underline; }

/* ---------- Contact / Estimate ---------- */
.contact__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; align-items: start; }
.contact__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3vw, 40px); line-height: 1.02; text-transform: uppercase; color: var(--navy-text); margin: 6px 0 16px; }
.contact__desc { font-size: 16.5px; color: var(--text); max-width: 460px; }
.contact__list { margin-top: 28px; display: grid; gap: 16px; }
.contact__list li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; }
.contact__list svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }
.contact__list strong { font-family: var(--font-cond); font-size: 17px; letter-spacing: .04em; color: var(--navy-text); display: block; }
.contact__list a:hover { color: var(--gold-deep); }
.form { background: var(--cream); border: 1px solid var(--cream-2); border-radius: 6px; padding: 32px; position: relative; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__group { margin-bottom: 18px; }
.form__group label { display: block; font-family: var(--font-cond); font-weight: 700; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--navy-text); margin-bottom: 6px; }
.form__group input, .form__group select, .form__group textarea {
    width: 100%;
    font: inherit;
    font-size: 16px;
    color: var(--text);
    background: #fff;
    border: 1px solid #d5d9e2;
    border-radius: 3px;
    padding: 12px 14px;
    transition: border-color .2s, box-shadow .2s;
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(224, 160, 42, .22); }
.form__group .error { border-color: #c0392b; }
.form__group textarea { resize: vertical; min-height: 120px; }
.form__success {
    position: absolute; inset: 0;
    background: var(--cream);
    border-radius: 6px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
}
.form__success.active { display: flex; }
.form__success svg { width: 56px; height: 56px; color: var(--gold); margin-bottom: 14px; }
.form__success h3 { font-family: var(--font-cond); font-size: 28px; letter-spacing: .04em; text-transform: uppercase; color: var(--navy-text); }
.form__success p { margin-top: 6px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: #f4f5f7; border-top: 1px solid var(--line); color: var(--text); }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr .8fr; gap: 40px; padding: 56px 0 44px; }
.footer__col h4 { font-family: var(--font-cond); font-weight: 700; font-size: 16px; letter-spacing: .1em; text-transform: uppercase; color: var(--navy-text); margin-bottom: 16px; }
.footer__cities { display: flex; flex-wrap: wrap; gap: 8px 0; font-size: 15px; }
.footer__cities li { display: inline-flex; align-items: center; }
.footer__cities li + li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin: 0 12px; }
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; font-size: 15px; }
.footer__links a:hover { color: var(--gold-deep); }
.footer__contact { display: grid; gap: 12px; font-size: 15px; }
.footer__contact li { display: flex; align-items: center; gap: 12px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--navy-text); flex: none; }
.footer__contact a:hover { color: var(--gold-deep); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--navy-text); color: var(--navy-text); display: grid; place-items: center; transition: background .2s, color .2s; }
.footer__social a:hover { background: var(--navy-text); color: #fff; }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid var(--line); padding: 24px 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__brand .brand__mark { height: 44px; }
.footer__brand .brand__text span:first-child { font-size: 20px; }
.footer__brand .brand__text span:last-child { font-size: 15px; }
.footer__motto { text-align: center; }
.footer__motto strong { display: block; font-family: var(--font-cond); font-weight: 700; font-size: 16px; letter-spacing: .1em; text-transform: uppercase; color: var(--navy-text); }
.footer__motto span { font-family: var(--font-cond); font-size: 14px; letter-spacing: .06em; color: var(--gold-deep); }
.footer__legal { font-size: 13.5px; color: var(--muted); text-align: right; }
.footer__legal a { text-decoration: underline; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
    .nav__link { padding: 10px 9px; font-size: 15px; }
    .hero__title { font-size: clamp(52px, 5.6vw, 84px); }
}
@media (max-width: 1024px) {
    .nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 86vw); background: var(--navy); padding: 96px 28px 32px; margin: 0; transform: translateX(100%); transition: transform .35s var(--ease); z-index: 95; overflow-y: auto; }
    .nav.open { transform: translateX(0); }
    .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav__link { color: #fff; font-size: 18px; padding: 14px 4px; width: 100%; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, .12); }
    .nav__link::after { display: none; }
    .nav__sub { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: 0; box-shadow: none; padding: 0 0 6px 14px; display: none; }
    .nav__item--sub.open .nav__sub { display: block; }
    .nav__sub a { color: rgba(255, 255, 255, .85); padding: 10px 4px; }
    .nav__sub a:hover { background: transparent; color: var(--gold-bright); }
    .nav__cta { display: block; margin-top: 22px; }
    .nav__cta .nav__link { border: 0; }
    .header__cta { display: none; }
    .hamburger { display: flex; position: relative; z-index: 96; }
    .hamburger.active span { background: #fff; }
    .services__grid, .projects__grid { grid-template-columns: repeat(2, 1fr); }
    .process__grid { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
    .step:nth-child(4) { border-left: 0; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: 0; }
    .hero__copy { padding: 56px var(--gutter) 48px; }
    .hero__media { min-height: 380px; }
    .hero__badge { right: 8px; top: 12px; width: min(360px, 88%); }
    .trust__grid { grid-template-columns: 1fr; }
    .trust__item, .trust__item:first-child { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .14); padding: 22px 0; }
    .trust__item:first-child { border-top: 0; }
    .about__grid { grid-template-columns: 1fr; }
    .about__media { min-height: 340px; }
    .local-badge { right: 20px; bottom: 20px; }
    .about__panel { padding: 44px 32px; }
    .reviews__grid { grid-template-columns: 1fr; gap: 26px; }
    .review, .review:first-child { padding: 0; border-left: 0; }
    .cta__photo { position: relative; width: 100%; height: 240px; }
    .cta__photo::after { background: linear-gradient(180deg, rgba(6, 28, 58, .05) 40%, var(--navy) 100%); }
    .cta__edge { display: none; }
    .cta__inner { grid-template-columns: 1fr; }
    .cta__content { padding: 0 0 48px; }
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .footer__legal { text-align: center; }
}
@media (max-width: 640px) {
    :root { --gutter: 20px; --header-h: 72px; }
    .brand__mark { height: 44px; }
    .brand__text span:first-child { font-size: 20px; }
    .brand__text span:last-child { font-size: 15px; }
    .hero__title { font-size: clamp(50px, 15vw, 72px); }
    .hero__lead { font-size: 17px; }
    .hero__meta > span[aria-hidden] { display: none; }
    .hero__meta { row-gap: 6px; }
    .hero__actions .btn { width: 100%; }
    .section { padding: 56px 0; }
    .sec-title::before, .sec-title::after { width: 28px; }
    .services__grid, .projects__grid { grid-template-columns: 1fr; gap: 36px; }
    .process__grid { grid-template-columns: 1fr; row-gap: 32px; }
    .step { border-left: 0; padding: 0; }
    .form__row { grid-template-columns: 1fr; gap: 0; }
    .form { padding: 22px; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__links { grid-template-columns: 1fr; }
}
