/* Norton Electric — redesign pitch build
   Palette: deep navy + electric amber. Flat, premium, high-trust.
   Single stylesheet shared across all pages. */

:root {
  --navy: #0b1f33;
  --navy-2: #112e4a;
  --navy-3: #1c405f;
  --brand-blue: #1b2be6;
  --amber: #ee6a1b;
  --amber-dark: #b84e08;
  --ink: #0e1726;
  --muted: #5b6573;
  --muted-2: #8a93a0;
  --line: #e4e8ee;
  --surface: #f6f8fb;
  --white: #ffffff;
  --green: #1f9d63;
  --green-bg: #e7f6ee;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(14, 23, 38, 0.06), 0 1px 2px rgba(14, 23, 38, 0.04);
  --shadow-md: 0 10px 30px rgba(14, 23, 38, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 31, 51, 0.18);
  --maxw: 1140px;
  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { 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: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
}
.section { padding: 76px 0; }
.section--tight { padding: 56px 0; }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn:active { transform: translateY(1px); }
.btn--call { background: var(--amber); color: #fff; box-shadow: var(--shadow-sm); }
.btn--call:hover { background: #ff7d33; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-2); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--navy); }
.btn--lg { padding: 17px 30px; font-size: 1.1rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  font-size: 0.86rem;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.topbar a { color: rgba(255,255,255,0.9); font-weight: 600; }
.topbar .pill { display: inline-flex; align-items: center; gap: 6px; }
.topbar .pill svg { width: 15px; height: 15px; color: var(--amber); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; color: var(--navy); letter-spacing: -0.02em; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 10px; background: var(--navy);
  display: grid; place-items: center; color: var(--amber); flex-shrink: 0;
}
.brand .mark svg { width: 23px; height: 23px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 600; font-size: 0.98rem; color: var(--ink); transition: color 0.15s; white-space: nowrap; }
.nav a:hover, .nav a.active { color: var(--amber-dark); }

/* Services dropdown */
.nav-drop-wrap { position: relative; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; color: var(--ink); padding: 0; white-space: nowrap; }
.nav-drop-btn .chev { width: 16px; height: 16px; transition: transform 0.2s; }
.nav-drop-wrap:hover .nav-drop-btn, .nav-drop-wrap:focus-within .nav-drop-btn { color: var(--amber-dark); }
.nav-drop-wrap:hover .nav-drop-btn .chev, .nav-drop-wrap:focus-within .nav-drop-btn .chev { transform: rotate(180deg); }
.nav-drop { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 262px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden; transition: opacity 0.18s ease, transform 0.18s ease; z-index: 55; }
.nav-drop::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.nav-drop-wrap:hover .nav-drop, .nav-drop-wrap:focus-within .nav-drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop a { display: block; padding: 10px 14px; border-radius: var(--radius-md); font-size: 0.95rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.nav-drop a:hover { background: var(--surface); color: var(--amber-dark); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.05rem; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.header-phone svg { width: 17px; height: 17px; color: var(--green); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--navy); }
.nav-toggle svg { width: 30px; height: 30px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; color: var(--white); overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11,31,51,0.95), rgba(7,22,37,0.98)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1.2'%3E%3Cpath d='M0 32h20M32 0v20M44 32h20M32 44v20'/%3E%3Ccircle cx='32' cy='32' r='6'/%3E%3Cpath d='M20 32h6M32 20v6M38 32h6M32 38v6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 64px 64px;
}
.hero-glow {
  position: absolute; inset: -25% -10% -10% -10%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(42% 48% at 80% 16%, rgba(238,106,27,0.36), transparent 70%),
    radial-gradient(46% 56% at 10% 88%, rgba(27,43,230,0.32), transparent 72%);
  animation: glowDrift 16s ease-in-out infinite alternate;
}
@keyframes glowDrift { from { transform: translate3d(-2%,-1%,0) scale(1); } to { transform: translate3d(3%,2%,0) scale(1.1); } }

.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 54px; align-items: center; padding-top: 60px; padding-bottom: 70px; }
.hero h1 { color: var(--white); font-size: clamp(2.15rem, 4.7vw, 3.55rem); }
.hero h1 .accent { color: var(--amber); }
.hero-copy p { color: rgba(255,255,255,0.82); font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 520px; margin-top: 16px; }

.locality { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: #fff; font-weight: 600; font-size: 0.88rem; padding: 7px 15px; border-radius: 999px; margin-bottom: 20px; }
.locality svg { width: 16px; height: 16px; color: var(--amber); }
.stars { color: var(--amber); display: inline-flex; gap: 2px; }
.stars svg { width: 19px; height: 19px; }
.hero-cta { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 26px 0 0; padding: 0; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.82); font-size: 0.92rem; font-weight: 500; }
.hero-trust svg { width: 17px; height: 17px; color: var(--amber); }

.avatar {
  width: 50px; height: 50px; border-radius: 50%; background: var(--navy); color: var(--amber);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; flex-shrink: 0;
}

/* Hero visual: framed photo with floating proof badges */
.hero-visual { position: relative; }
.hero-photo { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.1; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.03); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(155deg, transparent 50%, rgba(7,22,37,0.55)); }
.float-badge { position: absolute; z-index: 2; background: rgba(255,255,255,0.97); color: var(--ink); border-radius: 15px; padding: 11px 15px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 11px; }
.float-rating { top: 22px; left: -16px; }
.float-rating .rnum { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--navy); line-height: 1; }
.float-rating .rstars { color: var(--amber); display: inline-flex; gap: 1px; }
.float-rating .rstars svg { width: 13px; height: 13px; }
.float-rating small { display: block; font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.float-owner { bottom: 24px; right: -16px; }
.float-owner .avatar { width: 42px; height: 42px; font-size: 0.85rem; }
.float-owner b { font-family: var(--font-head); font-size: 0.95rem; display: block; line-height: 1.2; }
.float-owner small { color: var(--muted); font-size: 0.78rem; }
.float-rating { animation: floaty 6s ease-in-out infinite; }
.float-owner { animation: floaty 7s ease-in-out infinite; animation-delay: -3.2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Scroll cue */
.scroll-cue { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,0.7); display: grid; place-items: center; animation: cueBob 2.2s ease-in-out infinite; }
.scroll-cue svg { width: 26px; height: 26px; }
@keyframes cueBob { 0%,100% { transform: translate(-50%,0); opacity: 0.6; } 50% { transform: translate(-50%,7px); opacity: 1; } }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; padding: 20px 22px; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.trust-item svg { width: 20px; height: 20px; color: var(--green); }

/* ---------- Services ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.svc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.svc-head .lead { margin-top: 10px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ic { width: 52px; height: 52px; border-radius: 13px; background: var(--surface); display: grid; place-items: center; color: var(--amber-dark); margin-bottom: 18px; }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: 0.97rem; flex-grow: 1; }
.card .more { margin-top: 16px; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 0.95rem; display: inline-flex; align-items: center; gap: 6px; }
.card:hover .more { color: var(--amber-dark); }
.card .more svg { width: 16px; height: 16px; transition: transform 0.16s; }
.card:hover .more svg { transform: translateX(3px); }
.card--feature { background: var(--navy); color: var(--white); border-color: var(--navy); }
.card--feature h3 { color: var(--white); }
.card--feature p { color: rgba(255,255,255,0.78); }
.card--feature .ic { background: rgba(255,255,255,0.1); color: var(--amber); }
.card--feature .more { color: var(--amber); }
.tag { align-self: flex-start; background: var(--amber); color: var(--navy); font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; margin-bottom: 14px; }

/* ---------- Split feature (generators / financing) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg); min-height: 360px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  display: grid; place-items: center; color: rgba(255,255,255,0.55); text-align: center;
  padding: 20px; box-shadow: var(--shadow-md);
}
.split-media svg { width: 40px; height: 40px; margin-bottom: 10px; opacity: 0.85; }
.split ul { list-style: none; margin: 22px 0; display: grid; gap: 12px; }
.split li { display: flex; align-items: flex-start; gap: 11px; color: var(--ink); font-size: 1.02rem; }
.split li svg { width: 21px; height: 21px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.price-anchor { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; margin: 22px 0; display: flex; align-items: center; gap: 14px; }
.price-anchor .big { font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; color: var(--navy); }
.price-anchor small { color: var(--muted); font-size: 0.85rem; }

/* ---------- Reviews ---------- */
.reviews { background: var(--navy); color: var(--white); }
.reviews h2 { color: var(--white); }
.reviews .eyebrow { color: var(--amber); }
.review-stat { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; margin: 26px 0 44px; }
.review-stat .num { font-family: var(--font-head); font-weight: 800; font-size: 2.8rem; color: var(--amber); line-height: 1; }
.review-stat .blk { text-align: center; }
.review-stat .blk span { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 4px; }
.review-stat .divider { width: 1px; height: 48px; background: rgba(255,255,255,0.16); }
.r-card { background: var(--navy-2); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 26px; }
.r-card .stars { margin-bottom: 12px; }
.r-card p { color: rgba(255,255,255,0.88); font-size: 1rem; }
.r-card .who { margin-top: 16px; display: flex; align-items: center; gap: 11px; }
.r-card .who b { font-family: var(--font-head); }
.r-card .who span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ---------- About ---------- */
.about-media { border-radius: var(--radius-lg); min-height: 420px; background: linear-gradient(135deg, var(--navy-2), var(--navy-3)); display: grid; place-items: center; color: rgba(255,255,255,0.55); text-align: center; padding: 20px; box-shadow: var(--shadow-md); }
.about-media svg { width: 42px; height: 42px; margin-bottom: 10px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.stat { background: var(--surface); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat .n { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--navy); }
.stat .l { font-size: 0.85rem; color: var(--muted); }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 28px; }
.area-chip { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); }
.area-chip svg { width: 18px; height: 18px; color: var(--amber-dark); }

/* ---------- Banner CTA ---------- */
.banner { background: var(--amber); color: var(--navy); }
.banner .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 46px 22px; flex-wrap: wrap; }
.banner h2 { color: var(--navy); }
.banner p { color: rgba(11,31,51,0.78); margin-top: 6px; }
.banner .btn--dark { box-shadow: var(--shadow-md); }

/* ---------- Form ---------- */
.estimate { background: var(--surface); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--white); transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(247,168,27,0.18); }
.field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-ok { background: var(--green-bg); color: #136b41; border-radius: var(--radius); padding: 14px 16px; font-weight: 600; display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 30px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; letter-spacing: 0.02em; }
.site-footer a { color: rgba(255,255,255,0.7); display: block; padding: 5px 0; transition: color 0.15s; }
.site-footer a:hover { color: var(--amber); }
.site-footer .brand { color: var(--white); margin-bottom: 14px; }
.site-footer .brand small { color: var(--muted-2); }
.foot-contact { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 0.95rem; }
.foot-contact svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.foot-badges { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.foot-badge { border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; padding: 7px 11px; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted-2); }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr; gap: 10px;
}
.callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-head); font-weight: 700; padding: 13px; border-radius: 10px; font-size: 1rem; }
.callbar .c { background: var(--amber); color: var(--navy); }
.callbar .e { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.callbar svg { width: 18px; height: 18px; }

/* ---------- Sub-page hero ---------- */
.page-hero { background: var(--navy); color: var(--white); padding: 64px 0 70px; }
.page-hero h1 { color: var(--white); max-width: 760px; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.18rem; max-width: 620px; margin-top: 16px; }
.crumbs { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.crumbs a:hover { color: var(--amber); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Logo ---------- */
.brand { gap: 12px; }
.brand-mark { width: 46px; height: 46px; flex-shrink: 0; display: block; }
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-word {
  font-family: var(--font-head); font-weight: 800; font-size: 1.34rem;
  letter-spacing: -0.01em; line-height: 1; white-space: nowrap;
  padding-bottom: 4px; border-bottom: 2.5px solid var(--amber);
}
.brand-word .bw-1 { color: var(--brand-blue); }
.brand-word .bw-2 { color: var(--amber); margin-left: 5px; }
.brand--light .brand-word .bw-1 { color: #fff; }
.brand--light .brand-word { border-bottom-color: var(--amber); }

/* ---------- Real photos ---------- */
.brand-logo { height: 42px; width: auto; display: block; }
.media-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); display: block; }
.media-img--top { object-position: center top; }
.hero-card .photo-img { width: 100%; height: 210px; object-fit: cover; object-position: center 22%; border-radius: var(--radius); margin-bottom: 18px; display: block; }
.card { overflow: hidden; }
.card-photo { width: calc(100% + 56px); max-width: none; height: 210px; object-fit: cover; object-position: center; margin: -28px -28px 22px; display: block; background: var(--surface); }
.card--feature .card-photo { filter: saturate(1.05); }

/* ---------- Motion & storytelling ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100; background: linear-gradient(90deg, var(--amber), #ff9a4d); }

.site-header { transition: box-shadow 0.25s ease; }
.site-header .wrap { transition: min-height 0.25s ease; }
.site-header.scrolled { box-shadow: 0 6px 26px rgba(11,31,51,0.12); }
.site-header.scrolled .wrap { min-height: 60px; }

/* hero load-in entrance */
.reveal-load { opacity: 0; transform: translateY(20px); animation: revealUp 0.7s cubic-bezier(.22,.61,.36,1) forwards; }
.reveal-load.d1 { animation-delay: .05s; }
.reveal-load.d2 { animation-delay: .14s; }
.reveal-load.d3 { animation-delay: .23s; }
.reveal-load.d4 { animation-delay: .32s; }
.reveal-load.d5 { animation-delay: .41s; }
@keyframes revealUp { to { opacity: 1; transform: none; } }

/* scroll reveal variants */
.reveal[data-reveal="left"] { transform: translateX(-30px); }
.reveal[data-reveal="right"] { transform: translateX(30px); }
.reveal[data-reveal="scale"] { transform: scale(0.94); }
.reveal.in { transform: none; }

/* image motion */
.card-photo { transition: transform 0.55s cubic-bezier(.2,.6,.2,1); }
.card:hover .card-photo { transform: scale(1.07); }

/* numbered section eyebrow */
.eyebrow .num { color: var(--amber); margin-right: 9px; font-variant-numeric: tabular-nums; }

/* brands marquee */
.marquee { background: var(--white); border-bottom: 1px solid var(--line); padding: 26px 0; overflow: hidden; }
.marquee-head { text-align: center; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; margin-bottom: 18px; font-family: var(--font-head); }
.marquee-mask { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 52px; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; color: var(--navy); opacity: 0.5; white-space: nowrap; display: inline-flex; align-items: center; gap: 11px; transition: opacity 0.2s; }
.marquee-track span:hover { opacity: 1; }
.marquee-track span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* mobile nav overlay pieces */
.nav-close, .nav-cta { display: none; }
.nav-backdrop { position: fixed; inset: 0; background: rgba(7,22,37,0.55); z-index: 40; opacity: 0; animation: fadeIn 0.3s forwards; }
body.nav-open { overflow: hidden; }
body.nav-open .callbar { display: none; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes navIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-load { opacity: 1 !important; transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { max-width: 460px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse .split-media { grid-template-columns: 1fr; order: 0; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
}
/* Header collapses to a hamburger before it gets crowded */
@media (max-width: 1100px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; gap: 2px;
    position: fixed; top: 0; right: 0; bottom: 0; width: min(84vw, 350px);
    background: var(--navy); padding: 84px 26px 32px; z-index: 65; overflow-y: auto;
    box-shadow: -24px 0 70px rgba(0,0,0,0.45);
    animation: navIn 0.34s cubic-bezier(.22,.61,.36,1);
  }
  .nav.open a { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; padding: 15px 2px; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color 0.15s, padding-left 0.15s; }
  .nav.open a:hover, .nav.open a.active { color: var(--amber); padding-left: 8px; }
  .nav.open .nav-drop-wrap { width: 100%; }
  .nav.open .nav-drop-btn { width: 100%; justify-content: space-between; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; padding: 15px 2px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav.open .nav-drop-btn .chev { display: none; }
  .nav.open .nav-drop { position: static; transform: none; opacity: 1; visibility: visible; background: transparent; border: 0; box-shadow: none; padding: 4px 0 6px 12px; min-width: 0; }
  .nav.open .nav-drop a { color: rgba(255,255,255,0.82); font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; padding: 11px 2px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav.open .nav-drop a:hover { color: var(--amber); background: transparent; padding-left: 6px; }
  .nav.open .nav-close { display: grid; place-items: center; position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 0; color: #fff; cursor: pointer; }
  .nav.open .nav-close svg { width: 22px; height: 22px; }
  .nav.open .nav-cta { display: flex; margin-top: 24px; }
  .nav.open .nav-cta a { width: 100%; justify-content: center; }
}

@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 72px; }
  .section { padding: 56px 0; }
  .grid--3, .grid--2, .stats-row, .form-row { grid-template-columns: 1fr; }
  .topbar .wrap { justify-content: center; }
  .topbar .pill:first-child { display: none; }
  .callbar { display: grid; }
  .review-stat .divider { display: none; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 28px; }
  .media-img { height: 300px; }
  /* header: logo + hamburger only; CTAs live in the menu and sticky bar */
  .header-cta .btn--dark { display: none; }
  .brand-logo { height: 34px; }
  /* hero: full-width tap targets, inset floating badges */
  .hero-grid { padding-top: 40px; padding-bottom: 52px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-photo { aspect-ratio: 4 / 3.4; }
  .float-rating { left: 6px; top: 12px; padding: 9px 12px; }
  .float-owner { right: 6px; bottom: 14px; padding: 9px 12px; }
  .scroll-cue { display: none; }
}
