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

:root {
  --blue: #2C669C;
  --blue-dark: #245586;
  --navy: #1A2A3A;
  --orange: #EB8031;
  --cream: #FCFBE4;
  --cream-card: #FCF8EA;
  --gold: #ECD98C;
  --gold-hover: #e3cc6f;
  --sky: #6CD3F8;
  --white: #FFFFFF;
  --body: #374151;
  --border-light: rgba(255,255,255,0.12);
  --maxw: 1184px;
  --radius: 8px;
  --radius-lg: 18px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, .section-title, .hero-title {
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.accent-orange { color: var(--orange); }
.accent-sky { color: var(--sky); }
.accent-navy { color: var(--navy); }
.accent-blue { color: var(--blue); }
.accent-white { color: #fff; }
.accent-cream { color: var(--cream); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.4px; text-transform: uppercase;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(.99); }
.btn-lg { padding: 17px 32px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-gold { background: #F6DF69; color: var(--navy); }
.btn-gold:hover { background: #ecd24f; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-ghost-dark { background: transparent; color: var(--navy); border-color: rgba(18,42,67,.3); }
.btn-ghost-dark:hover { background: rgba(18,42,67,.06); }
.btn-bare { background: transparent; border-color: transparent; color: #fff; padding-left: 8px; padding-right: 8px; }
.btn-bare:hover { background: transparent; opacity: .82; }
.btn-bare-dark { background: transparent; border-color: transparent; color: var(--navy); padding-left: 8px; padding-right: 8px; }
.projects-cta .btn-bare-dark { text-decoration-line: underline; text-underline-offset: 8px; text-decoration-thickness: 1px; text-decoration-color: rgba(26,42,58,.45); }
.btn-bare-dark:hover { background: transparent; opacity: .72; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ===================== EYEBROW / SECTION TITLE ===================== */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px;
  white-space: nowrap;
}
.eyebrow .dash { width: 26px; height: 2px; background: currentColor; display: inline-block; }
.eyebrow-orange { color: var(--orange); }
.eyebrow-sky { color: var(--blue); }
.eyebrow-light { color: var(--sky); }

.section-title { font-size: 90px; line-height: 1.04; color: var(--navy); margin-bottom: 8px; }
.services .section-title { max-width: 760px; }
.services .prem-eyebrow { margin-top: 16px; margin-bottom: 30px; }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled { background: var(--blue); box-shadow: 0 6px 24px rgba(0,0,0,.18); padding: 10px 0; }
.header-inner { display: flex; align-items: center; gap: 28px; }
.logo img { height: 92px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .logo img { height: 72px; }

.main-nav { margin-left: 12px; }
.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  color: #fff; font-size: 16px; font-weight: 500; position: relative; padding: 4px 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold); transition: width .25s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.header-cta { margin-left: auto; }

.hamburger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: .3s var(--ease); }

.phone-icon-btn { display: none; width: 50px; height: 50px; border-radius: 50%; background: var(--gold); align-items: center; justify-content: center; flex-shrink: 0; transition: transform .2s var(--ease), background .2s var(--ease); }
.phone-icon-btn:hover { transform: scale(1.05); background: var(--gold-hover); }
.phone-icon-btn svg { width: 22px; height: 22px; fill: var(--navy); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: 0; width: 300px; max-width: 84vw; height: 100vh;
  background: var(--navy); z-index: 1200; transform: translateX(100%);
  transition: transform .35s var(--ease); padding: 80px 28px 28px;
  display: flex; flex-direction: column; gap: 8px; box-shadow: -10px 0 40px rgba(0,0,0,.3);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu a { color: #fff; font-size: 18px; font-weight: 600; padding: 14px 6px; display: block; border-bottom: 1px solid var(--border-light); }
.mobile-cta { margin-top: 22px; }
.mobile-close { position: absolute; top: 20px; right: 22px; background: none; border: 0; color: #fff; font-size: 38px; line-height: 1; cursor: pointer; }
.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1100; opacity: 0; transition: opacity .3s; }
.menu-overlay.show { opacity: 1; }

/* ===================== HERO ===================== */
.hero { position: relative; background: var(--blue); color: #fff; min-height: 100vh; padding-top: 120px; overflow: hidden; display: flex; flex-direction: column; }
.hero-bg { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 110% 18%, rgba(255,255,255,.06) 0 38%, transparent 39%),
    radial-gradient(circle at 96% 30%, rgba(255,255,255,.05) 0 30%, transparent 31%),
    radial-gradient(circle at 120% 60%, rgba(255,255,255,.05) 0 42%, transparent 43%);
}
.hero-bg::before {
  content: ''; position: absolute; left: -40px; top: 200px; width: 520px; height: 520px;
  background: url('../assets/wb-watermark.svg') no-repeat center/contain; opacity: .07; filter: brightness(0) invert(1);
}
.hero-inner { position: relative; display: flex; flex-direction: column; justify-content: center; flex: 1; padding-bottom: 40px; }
.hero-copy { position: relative; z-index: 2; max-width: 820px; }
.hero-title { font-size: 90px; line-height: 1.0; }
.hero-title .line { display: block; white-space: nowrap; }
.hero-sub { font-family: 'Anton', sans-serif; font-size: 60px; line-height: 1.06; letter-spacing: .5px; text-transform: uppercase; margin-top: 12px; color: #fff; }
.hero-desc { max-width: 460px; margin: 22px 0 30px; font-size: 18px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-art { position: absolute; right: -95px; bottom: 108px; z-index: 1; pointer-events: none; line-height: 0; }
.hero-art img { display: block; width: auto; height: auto; max-width: 640px; max-height: calc(100vh - 260px); filter: drop-shadow(0 20px 40px rgba(0,0,0,.25)); }

.hero-trust { position: relative; border-top: 1px solid var(--border-light); padding: 26px 0; }
.trust-row { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.92); }
.trust-item svg { width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ===================== PREMIUM SERVICES ===================== */
.services { background: var(--cream); padding: 96px 0 90px; }
.premium-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 40px 0 70px; }
.premium-card { border-radius: var(--radius); padding: 44px 42px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column; min-height: 300px; }
.premium-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(18,42,67,.18); }
.card-navy { background: var(--navy); color: #fff; }
.card-orange { background: var(--orange); color: var(--navy); }
.card-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; opacity: .65; margin-bottom: 14px; }
.premium-card h3 { font-size: 50px; line-height: 1.08; margin-bottom: 18px; }
.card-orange h3 { color: var(--navy); }
.card-desc { font-size: 15.5px; line-height: 1.65; opacity: .92; max-width: 500px; }
.card-navy .card-desc { color: rgba(255,255,255,.82); }
.card-foot { margin-top: auto; padding-top: 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.card-navy .card-foot { border-top: 1px solid rgba(255,255,255,.14); }
.card-orange .card-foot { border-top: 1px solid rgba(18,42,67,.18); }
.card-label { font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; opacity: .6; }
.card-price { font-family: 'Anton', sans-serif; font-size: 34px; letter-spacing: .5px; }
.card-price-dark { color: var(--navy); }

.res-eyebrow { margin-top: 8px; margin-bottom: 26px; }
.res-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.res-list li { display: flex; align-items: center; gap: 20px; padding: 22px 4px; border-bottom: 1px solid rgba(18,42,67,.14); position: relative; }
.res-num { font-family: 'Anton', sans-serif; font-size: 18px; color: var(--sky); opacity: .85; width: 22px; }
.res-name { font-family: 'Anton', sans-serif; font-size: 24px; color: var(--navy); letter-spacing: .5px; }
.res-price { margin-left: auto; font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 6px; }
.res-price strong { font-family: 'Anton', sans-serif; font-size: 22px; font-weight: 400; }
.res-price .arr { transition: transform .25s var(--ease); }
.res-list li:hover .res-price .arr { transform: translateX(5px); }
.res-list li::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 0; height: 2px; background: var(--orange); transition: width .3s var(--ease); }
.res-list li:hover::after { width: 100%; }

/* ===================== WHY ===================== */
.why { background: var(--navy); color: #fff; padding: 96px 0 100px; }
.why .section-title { color: #fff; margin-bottom: 50px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; border-top: 1px solid var(--border-light); padding-top: 46px; }
.stat { position: relative; padding-right: 24px; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 6px; bottom: 6px; width: 1px; background: var(--border-light); }
.stat-num { font-family: 'Anton', sans-serif; font-size: 70px; line-height: .9; color: #fff; margin-bottom: 14px; }
.stat-am { font-size: 40px; }
.stat-pct { font-size: 44px; vertical-align: baseline; }
.stat-dash { color: var(--orange); }
.stat-label { font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.stat-desc { font-size: 14.5px; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ===================== PROJECTS ===================== */
.projects { background: var(--cream); padding: 92px 0 96px; }
.projects-head { display: grid; grid-template-columns: 1.3fr 1fr; align-items: end; gap: 30px; margin-bottom: 48px; }
.projects .section-title { color: var(--navy); }
.projects-intro { font-size: 15.5px; color: var(--body); max-width: 420px; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 18px rgba(18,42,67,.08); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.project-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(18,42,67,.16); }
.ba-media { position: relative; display: flex; height: 210px; overflow: hidden; }
.ba-media.single { display: block; }
.ba-half { position: relative; width: 50%; overflow: hidden; }
.ba-half picture, .ba-media.single picture { display: block; width: 100%; height: 100%; }
.ba-half img, .ba-media.single img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.project-card:hover .ba-half img, .project-card:hover .ba-media.single img { transform: scale(1.06); }
.ba-tag { position: absolute; bottom: 10px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; padding: 4px 10px; border-radius: 4px; }
.ba-before { left: 10px; background: rgba(18,42,67,.8); }
.ba-after { right: 10px; background: var(--orange); }
.ba-swap { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 36px; height: 36px; background: #fff; color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 4px 12px rgba(0,0,0,.25); z-index: 2; }
.project-body { padding: 22px 22px 26px; }
.project-badge { font-size: 11.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.project-body h3 { font-size: 24px; color: var(--navy); margin-bottom: 8px; }
.project-loc { font-size: 13.5px; color: #8a8a82; }
.projects-cta { display: flex; gap: 16px; justify-content: center; align-items: center; margin-top: 54px; flex-wrap: wrap; }

/* ===================== SERVICE AREAS ===================== */
.service-areas { background: var(--blue); color: #fff; padding: 92px 0 96px; position: relative; overflow: hidden; }
.sa-head { display: grid; grid-template-columns: 1.85fr 1fr; align-items: end; gap: 30px; margin-bottom: 40px; }
.service-areas .section-title { color: #fff; }
.service-areas .sa-covered { color: var(--cream); }
.sa-intro { font-size: 15.5px; color: rgba(255,255,255,.85); max-width: 420px; }
.city-pills { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.pill { display: inline-block; color: inherit; text-decoration-line: none; background: rgba(255,255,255,.08); border-width: 1px; border-style: solid; border-color: rgba(255,255,255,.18); padding: 11px 22px; border-radius: 8px; font-size: 13px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; transition: background .2s var(--ease), transform .2s var(--ease); }
.pill:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.25); border: 6px solid rgba(255,255,255,.7); }
.map-wrap img { width: 100%; height: auto; }
.map-wrap .service-map { display: block; width: 100%; height: 460px; border: 0; background: #a9d6ef; }
.service-map.leaflet-container { font-family: inherit; background: #a9d6ef; }
.service-map .bear-marker { filter: drop-shadow(0 3px 4px rgba(0,0,0,.35)); }
.service-map .leaflet-control-attribution { font-size: 10px; background: rgba(255,255,255,.7); }
.service-map .leaflet-control-attribution a { color: var(--blue); }
.service-map .leaflet-bar a { color: #1f1f1f; }
.service-map .leaflet-tooltip { font-weight: 700; font-size: 12px; color: var(--blue); border-color: rgba(0,0,0,.08); }

/* ===================== ESTIMATE ===================== */
.estimate { background: var(--orange); padding: 92px 0 96px; }
.estimate-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
.estimate-copy .eyebrow-light { color: #fff; opacity: .85; }
.estimate .section-title { color: var(--navy); margin-bottom: 22px; }
.estimate-desc { font-size: 16px; color: rgba(18,42,67,.85); max-width: 440px; margin-bottom: 28px; }
.estimate-bullets { display: flex; flex-direction: column; gap: 0; margin-bottom: 34px; }
.estimate-bullets li { font-size: 14px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--navy); padding: 16px 0; border-bottom: 1px solid rgba(18,42,67,.18); position: relative; padding-left: 22px; }
.estimate-bullets li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 9px; height: 9px; border-radius: 50%; background: var(--blue); }
.phone-card { display: block; background: var(--navy); border-radius: 12px; padding: 26px 30px; transition: transform .2s var(--ease); }
.phone-card:hover { transform: translateY(-3px); }
.phone-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sky); margin-bottom: 10px; }
.phone-num { font-family: 'Anton', sans-serif; font-size: 42px; letter-spacing: 1px; color: #fff; text-decoration-line: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }

.estimate-form-wrap { background: var(--cream-card); border-radius: 20px; padding: 38px 38px 34px; box-shadow: 0 26px 60px rgba(18,42,67,.22); }
.form-title { text-align: center; font-size: 36px; color: var(--blue); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); opacity: .7; margin-bottom: 8px; }
.req { color: var(--orange); margin-left: 2px; }
.field input, .field select, .field textarea {
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--navy);
  background: #fff; border: 1px solid rgba(18,42,67,.18); border-radius: 8px; padding: 13px 14px; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,100,158,.15); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: #9aa0a6; }
.form-success { margin-top: 16px; text-align: center; font-size: 14px; font-weight: 600; color: #1b7a3d; }
.form-success--full { margin-top: 0; padding: 40px 8px; font-size: 18px; line-height: 1.5; }
.form-success--full::before { content: "✓"; display: block; width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: #1b7a3d; color: #fff; font-size: 30px; line-height: 56px; }
.form-error { margin-top: 16px; text-align: center; font-size: 14px; font-weight: 600; color: #c0392b; }
.form-recaptcha { margin-top: 22px; margin-bottom: 4px; display: flex; justify-content: center; }
.form-recaptcha:empty { margin-top: 0; margin-bottom: 0; }
.form-consent { display: flex; align-items: flex-start; gap: 8px; margin-top: 18px; margin-bottom: 22px; font-size: 12px; line-height: 1.5; color: #6b7280; }
.form-consent-icon { flex: 0 0 auto; margin-top: 2px; color: var(--blue); }
.form-consent a { color: var(--blue); font-weight: 600; text-decoration-line: underline; }
.form-consent a:hover { color: var(--navy); }

/* ===================== COOKIE CONSENT ===================== */
.cookie-consent {
  display: none;
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 1000; width: calc(100% - 36px); max-width: 880px;
  align-items: center; gap: 20px;
  padding: 18px 24px; border-radius: 16px;
  background: var(--navy); color: #fefefe;
  box-shadow: 0 18px 50px rgba(18,42,67,.35);
}
.cookie-consent.show { display: flex; }
.cookie-text { margin: 0; font-size: 14px; line-height: 1.55; flex: 1 1 auto; }
.cookie-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.cookie-accept { padding: 11px 28px; font-size: 14px; }
.cookie-decline {
  background: transparent; border: none; cursor: pointer;
  color: #cfd9e6; font-family: inherit; font-size: 14px; font-weight: 600;
  text-decoration-line: underline; padding: 11px 6px;
}
.cookie-decline:hover { color: #fefefe; }
@media (max-width: 600px) {
  .cookie-consent { flex-direction: column; align-items: stretch; text-align: center; gap: 14px; padding: 18px 20px; bottom: 12px; }
  .cookie-actions { justify-content: center; }
}

/* ===================== FAQ ===================== */
.faq { background: var(--cream); padding: 92px 0 96px; }
.faq-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
.faq .section-title { color: var(--navy); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(18,42,67,.16); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy);
  padding: 24px 40px 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; position: relative;
}
.faq-icon { position: absolute; right: 4px; top: 24px; font-size: 24px; font-weight: 400; color: var(--orange); transition: transform .3s var(--ease); line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 30px 24px 0; font-size: 15px; color: var(--body); line-height: 1.65; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--blue); color: rgba(255,255,255,.85); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo-link { display: inline-block; line-height: 0; }
.footer-brand img { height: 104px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; max-width: 280px; line-height: 1.6; }
.footer-col h4 { font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: 1px; color: #fff; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-phone { font-family: 'Anton', sans-serif; font-size: 30px; letter-spacing: 1px; color: rgba(255,255,255,.9); display: block; margin-bottom: 16px; }
.footer-link { display: block; font-size: 14.5px; margin-bottom: 12px; }
.footer-addr { font-size: 14.5px; margin-bottom: 16px; max-width: 200px; }
.footer-map img { width: 220px; max-width: 100%; border-radius: 8px; }
.footer-map-frame { display: block; width: 240px; max-width: 100%; height: 130px; border: 0; border-radius: 8px; }
.footer-hours { font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: 1px; color: rgba(255,255,255,.9); margin-bottom: 10px; }
.footer-col p { font-size: 14.5px; margin-bottom: 6px; }
.footer-trust { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 26px 24px; margin-top: 50px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-legal a:hover { color: #fff; }
.footer-credit { display: inline-flex; flex-direction: column; align-items: center; gap: 7px; }
.gnb-link { display: inline-flex; transition: opacity .2s var(--ease); }
.gnb-link:hover { opacity: .8; }
.gnb-logo { width: 78px; height: auto; display: block; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .section-title { font-size: 70px; }
  .hero-title { font-size: 56px; }
  .hero-title .line { white-space: normal; }
  .hero-inner { text-align: center; gap: 16px; }
  .hero-copy { max-width: none; }
  .hero-art { position: static; transform: none; width: auto; justify-content: center; margin-top: 6px; }
  .hero-art img { max-width: 420px; max-height: none; }
  .hero-desc, .hero-actions { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero { min-height: auto; padding-top: 100px; }
  .why .section-title, .service-areas .section-title, .projects .section-title, .estimate .section-title, .faq .section-title, .services .section-title { font-size: 70px; }
  .premium-card h3 { font-size: 38px; }
}

@media (max-width: 992px) {
  .header-inner .main-nav,
  .header-inner .header-cta { display: none !important; }
  .hamburger { display: flex; order: 3; }
  .phone-icon-btn { display: flex; margin-left: auto; order: 2; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .hero-copy { order: 1; }
  .hero-art { order: 2; justify-content: center; }
  .hero-art img { max-width: 360px; max-height: none; }
  .hero-desc, .hero-actions { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero { min-height: auto; padding-top: 100px; }
  .premium-grid { grid-template-columns: 1fr; }
  .res-list { grid-template-columns: 1fr; gap: 0; }
  .projects-head, .sa-head { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .estimate-inner { grid-template-columns: 1fr; gap: 44px; }
  .faq-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .stat:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .section-title { font-size: 52px; }
  .hero { padding-top: 126px; }
  .hero-title { font-size: 52px; }
  .hero-sub { font-size: 40px; }
  .why .section-title, .service-areas .section-title, .projects .section-title, .estimate .section-title, .faq .section-title, .services .section-title { font-size: 52px; }
  .services, .why, .projects, .service-areas, .estimate, .faq { padding: 64px 0; }
  .trust-row { gap: 14px 24px; }
  .trust-item { font-size: 11.5px; }
  .stat-num { font-size: 58px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-trust { gap: 16px; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .eyebrow { letter-spacing: 1.4px; white-space: nowrap; }
  .hero { padding-top: 134px; }
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 32px; }
  .section-title { font-size: 40px; }
  .why .section-title, .service-areas .section-title, .projects .section-title, .estimate .section-title, .faq .section-title, .services .section-title { font-size: 40px; }
  .br-collapse { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: auto; }
  .hero-actions .btn-gold { padding: 14px 30px; font-size: 14px; }
  .premium-card { padding: 32px 26px; }
  .premium-card h3 { font-size: 32px; }
  .project-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat::after { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { max-width: 340px; }
  .footer-col ul { align-items: center; }
  .footer-map { width: 100%; max-width: 360px; display: flex; justify-content: center; }
  .footer-map-frame { margin-left: auto; margin-right: auto; }
  .footer-trust { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .projects-cta, .estimate-form-wrap { }
  .estimate-form-wrap { padding: 26px 22px; }
  .form-title { font-size: 30px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 600px) {
  .res-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "num name" ". price";
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
    padding: 18px 4px;
  }
  .res-num { grid-area: num; align-self: start; margin-top: 2px; }
  .res-name { grid-area: name; font-size: 22px; line-height: 1.05; }
  .res-price { grid-area: price; margin-left: 0; justify-content: flex-start; white-space: nowrap; }
  .footer-trust { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .trust-row { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .card-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
  .card-price { white-space: nowrap; }
}
