/* ==========================================================================
   Seal Pro Roofing Ltd — Design System
   Brand: logo navy + blue, heritage red CTA from original site
   Fonts: Manrope (display) + Inter (body)
   ========================================================================== */

/* CLS guard: size-adjusted fallbacks so text barely moves when web fonts swap in */
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Manrope Fallback';
  src: local('Arial');
  size-adjust: 102%;
  ascent-override: 105%;
  descent-override: 29%;
  line-gap-override: 0%;
}

:root {
  /* Brand — sampled from logo + original site */
  --navy-900: #062233;
  --navy: #0A3049;          /* logo dark navy */
  --navy-800: #0D3D5C;
  --blue: #0873AE;          /* logo bright blue */
  --blue-deep: #0060A8;
  --blue-tint: #E8F3FA;
  --red: #EA1826;           /* original site accent — CTA only */
  --red-dark: #C6121E;
  --gold: #FBBC04;          /* Google star gold */

  /* Neutrals */
  --ink: #14212C;
  --slate: #48604F; /* placeholder overwritten below */
  --slate: #4A5F70;
  --mist: #8FA5B4;
  --line: #E2EAF0;
  --bg: #F5F8FA;
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Manrope', 'Manrope Fallback', system-ui, sans-serif;
  --font-body: 'Inter', 'Inter Fallback', system-ui, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(6, 34, 51, .07);
  --shadow: 0 10px 34px rgba(6, 34, 51, .12);
  --shadow-lg: 0 24px 60px rgba(6, 34, 51, .18);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }
ul { list-style: none; }
strong { font-weight: 700; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.bg-soft { background: var(--bg); }
.bg-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy) 55%, var(--navy-800)); color: #D7E5EF; }
.bg-navy h2, .bg-navy h3 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--red); border-radius: 2px; }
.bg-navy .eyebrow { color: #8FC9EC; }

.lead { font-size: 1.13rem; color: var(--slate); max-width: 46em; }
.bg-navy .lead { color: #B9CFDE; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  will-change: transform;
}
.btn svg { flex: 0 0 auto; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(234, 24, 38, .32); }
.btn-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(234, 24, 38, .4); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-navy:hover { background: var(--navy-800); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { color: var(--blue-deep); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }

/* ---------- Scroll progress ---------- */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--red));
  z-index: 1200;
}

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-900); color: #AFC6D4; font-size: .84rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 22px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: #8FC9EC; }
.topbar .tb-left { display: flex; gap: 18px; align-items: center; }
.topbar .tb-right { display: flex; gap: 18px; align-items: center; }
.tb-item { display: inline-flex; align-items: center; gap: 7px; }
.tb-item svg { width: 13px; height: 13px; fill: var(--gold); }
.tb-stars { color: var(--gold); letter-spacing: 1px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 22px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; }
.brand-text { font-family: var(--font-display); line-height: 1.05; }
.brand-text .b1 { display: block; font-weight: 800; font-size: 1.28rem; color: var(--navy); letter-spacing: -.01em; }
.brand-text .b2 { display: block; font-weight: 800; font-size: .78rem; letter-spacing: .28em; color: var(--blue); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > ul { display: flex; gap: 26px; align-items: center; }
.main-nav a.nav-link { font-weight: 600; font-size: .97rem; color: var(--ink); position: relative; padding: 8px 0; }
.main-nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--red); transition: width .28s var(--ease);
}
.main-nav a.nav-link:hover::after, .main-nav a.nav-link.active::after { width: 100%; }

.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: -14px; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s var(--ease);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 9px 14px; border-radius: 9px; font-weight: 600; font-size: .93rem; color: var(--ink); }
.drop a:hover { background: var(--blue-tint); color: var(--blue-deep); }

.header-call { display: flex; align-items: center; gap: 12px; }
.header-phone { text-align: right; line-height: 1.2; }
.header-phone .hp-label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--slate); }
.header-phone a { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--navy); }
.header-phone a:hover { color: var(--red); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .3s var(--ease); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 0; color: #E4EEF5; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6, 34, 51, .96) 0%, rgba(10, 48, 73, .88) 45%, rgba(10, 48, 73, .55) 100%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding: 92px 22px 100px; }
.hero h1 { color: #fff; margin: 18px 0 16px; }
.hero h1 .hl { color: #7FC5EC; }
.hero .hero-sub { font-size: 1.16rem; color: #C4D8E5; max-width: 34em; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.hero-ticks { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero-ticks li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .95rem; color: #D5E4EE; }
.hero-ticks svg { width: 17px; height: 17px; fill: #35C06B; flex: 0 0 auto; }

/* Google review pill */
.g-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink);
  border-radius: 999px; padding: 8px 18px 8px 10px;
  font-weight: 700; font-size: .92rem;
  box-shadow: var(--shadow-sm);
}
.g-pill .g-logo { width: 22px; height: 22px; }
.g-pill .stars { color: var(--gold); letter-spacing: 1.5px; font-size: .95rem; }
.g-pill .g-count { color: var(--slate); font-weight: 600; }

/* Hero quote form card */
.quote-card {
  background: #fff; color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 30px 26px;
  position: relative;
}
.quote-card::before {
  content: ""; position: absolute; top: 0; left: 26px; right: 26px; height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 0 0 6px 6px;
}
.quote-card h3 { font-size: 1.42rem; margin-bottom: 4px; }
.quote-card .qc-sub { color: var(--slate); font-size: .93rem; margin-bottom: 18px; }
.quote-form { display: grid; gap: 12px; }
.quote-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; font: inherit; font-size: .96rem;
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--bg); color: var(--ink);
  transition: border-color .2s, background .2s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
}
.quote-form textarea { resize: vertical; min-height: 84px; }
.quote-form .btn { width: 100%; }
.qc-privacy { font-size: .78rem; color: var(--mist); text-align: center; margin-top: 2px; }
.qc-alt { text-align: center; font-size: .9rem; color: var(--slate); margin-top: 10px; }
.qc-alt a { font-weight: 800; color: var(--navy); }
.qc-alt a:hover { color: var(--red); }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy-900); padding: 0; }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 30px; padding: 18px 22px; }
.trust-item { display: flex; align-items: center; gap: 11px; color: #C9DAE6; font-weight: 600; font-size: .93rem; }
.trust-item svg { width: 22px; height: 22px; fill: #7FC5EC; flex: 0 0 auto; }
.trust-item b { color: #fff; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card .svc-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svc-card .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-body h3 { font-size: 1.18rem; }
.svc-body p { color: var(--slate); font-size: .95rem; flex: 1; }
.svc-link { font-family: var(--font-display); font-weight: 800; font-size: .93rem; color: var(--red); display: inline-flex; align-items: center; gap: 7px; }
.svc-link:hover { color: var(--red-dark); gap: 11px; }
.svc-link { transition: gap .25s var(--ease); }

/* Feature (why us) */
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feat-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feat-icon svg { width: 26px; height: 26px; fill: currentColor; }
.feat h3 { margin-bottom: 8px; font-size: 1.12rem; }
.feat p { color: var(--slate); font-size: .94rem; }

/* Steps */
.steps { counter-reset: step; }
.step { position: relative; padding: 26px 24px 26px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem;
  color: var(--blue-tint); -webkit-text-stroke: 1.5px var(--blue);
  line-height: 1; margin-bottom: 12px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: .93rem; }

/* ---------- Stats / counters ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); color: #fff; line-height: 1; }
.stat .num .suffix { color: #7FC5EC; }
.stat .lbl { margin-top: 8px; color: #A9C3D4; font-weight: 600; font-size: .92rem; }

/* ---------- Reviews ---------- */
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-top { display: flex; align-items: center; justify-content: space-between; }
.review-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }
.review-g { width: 22px; height: 22px; }
.review-text { color: var(--slate); font-size: .96rem; font-style: italic; flex: 1; }
.review-name { font-family: var(--font-display); font-weight: 800; font-size: .95rem; color: var(--navy); }
.review-name span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .8rem; color: var(--mist); }

.g-badge-lg {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 18px 26px; box-shadow: var(--shadow-sm);
}
.g-badge-lg .g-logo { width: 40px; height: 40px; }
.g-badge-lg .gb-score { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--navy); line-height: 1; }
.g-badge-lg .gb-meta { line-height: 1.35; }
.g-badge-lg .stars { color: var(--gold); letter-spacing: 2px; }
.g-badge-lg .gb-count { font-size: .88rem; color: var(--slate); font-weight: 600; }

/* ---------- Our work / case studies ---------- */
.work-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; display: block;
}
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.work-card:hover img { transform: scale(1.06); }
.work-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 34, 51, .88));
}
.work-meta { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: #fff; }
.work-meta .wm-loc { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #8FC9EC; margin-bottom: 6px; }
.work-meta h3 { color: #fff; font-size: 1.15rem; }

/* ---------- Areas ---------- */
.area-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.area-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.area-block h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.area-block h3 svg { width: 20px; height: 20px; fill: var(--red); }
.area-list { display: flex; flex-wrap: wrap; gap: 9px; }
.area-list a, .area-list span {
  display: inline-block; padding: 7px 15px; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--line);
  font-weight: 600; font-size: .88rem; color: var(--ink);
  transition: all .2s;
}
.area-list a:hover { background: var(--blue-tint); border-color: var(--blue); color: var(--blue-deep); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; color: var(--navy);
  padding: 19px 54px 19px 22px; position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--blue); transition: transform .3s var(--ease);
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); color: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; color: var(--slate); font-size: .96rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 2; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; max-width: 15em; }
.cta-inner .lead { color: #B9CFDE; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-phones { margin-top: 14px; display: flex; gap: 22px; flex-wrap: wrap; }
.cta-phones a { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; display: inline-flex; align-items: center; gap: 9px; }
.cta-phones a:hover { color: #7FC5EC; }
.cta-phones svg { width: 18px; height: 18px; fill: var(--red); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding: 0; color: #E4EEF5; }
.page-hero .hero-bg::after { background: linear-gradient(100deg, rgba(6, 34, 51, .96), rgba(10, 48, 73, .82) 60%, rgba(10, 48, 73, .6)); }
.page-hero-inner { position: relative; z-index: 2; padding: 74px 22px; max-width: 760px; }
.page-hero h1 { color: #fff; margin: 14px 0 14px; }
.page-hero .hero-sub { font-size: 1.12rem; color: #C4D8E5; margin-bottom: 24px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; font-size: .84rem; color: #8FA9BC; margin-bottom: 6px; }
.breadcrumb a { color: #B9D6E9; font-weight: 600; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Content blocks ---------- */
.prose { max-width: 760px; }
.prose p { margin-bottom: 18px; color: var(--slate); }
.prose h2 { margin: 34px 0 14px; }
.prose h3 { margin: 26px 0 10px; }
.prose ul { margin: 0 0 18px; display: grid; gap: 9px; }
.prose ul li { position: relative; padding-left: 28px; color: var(--slate); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  background: var(--blue-tint); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230873AE'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

/* Split rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
/* CLS guard: reserve image space before load (direct img children only — iframes keep their fixed heights) */
.split-img > img { height: auto; aspect-ratio: 4 / 3; }
iframe { max-width: 100%; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid a, .gallery-grid figure { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; display: block; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid a:hover img, .gallery-grid figure:hover img { transform: scale(1.05); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #A9C3D4; font-size: .93rem; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 44px; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { display: grid; gap: 9px; }
.site-footer a { color: #A9C3D4; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 52px; margin-bottom: 14px; background: #fff; border-radius: 8px; padding: 4px 10px; }
.footer-brand p { max-width: 30em; margin-bottom: 16px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; fill: #7FC5EC; margin-top: 4px; flex: 0 0 auto; }
.footer-contact a { font-weight: 600; color: #D7E5EF; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .09); padding: 20px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .82rem; color: #7E99AB; }
.footer-bottom a { color: #A9C3D4; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1150;
  display: none; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 24px rgba(6, 34, 51, .22);
}
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px; font-family: var(--font-display); font-weight: 800; font-size: .98rem; color: #fff;
}
.mobile-cta .m-call { background: var(--navy); }
.mobile-cta .m-quote { background: var(--red); }
.mobile-cta svg { width: 17px; height: 17px; fill: #fff; }

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

/* ---------- Utility ---------- */
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 34px; } .mt-4 { margin-top: 48px; }
.mb-2 { margin-bottom: 20px; } .mb-3 { margin-bottom: 34px; }
.center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 64px 22px 78px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .header-phone.hp-land { display: none; }
}
@media (max-width: 820px) {
  section { padding: 62px 0; }
  .topbar .tb-left .tb-hide-m { display: none; }
  .main-nav {
    position: fixed; inset: 0; top: 0; background: var(--navy-900);
    flex-direction: column; justify-content: center; gap: 8px;
    opacity: 0; visibility: hidden; transition: opacity .3s;
    z-index: 1050;
  }
  .nav-open .main-nav { opacity: 1; visibility: visible; }
  .main-nav > ul { flex-direction: column; gap: 6px; text-align: center; }
  .main-nav a.nav-link { color: #fff; font-size: 1.3rem; font-family: var(--font-display); font-weight: 800; }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: 0; box-shadow: none; min-width: 0; padding: 0; display: none; }
  .nav-open .has-drop.open .drop { display: block; }
  .drop a { color: #9fbdd2; text-align: center; }
  .nav-toggle { display: block; position: relative; z-index: 1060; }
  .header-call .header-phone { display: none; }
  .area-cols { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .mobile-cta { display: grid; }
  body { padding-bottom: 54px; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .quote-form .row2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .topbar-inner { justify-content: center; }
  .topbar .tb-right { display: none; }
}
