/* ============================================================
   Handyman Saver — handymansaver.com
   AlphaCrew Holdings LLC DBA Handyman Saver
   ============================================================ */
:root {
  --navy-900: #0a1f3c;
  --navy-800: #0f2c52;
  --navy-700: #123c73;
  --blue: #1d5ba8;
  --blue-bright: #2e7cd6;
  --sky: #4fb3e8;
  --green: #7cc142;
  --green-dark: #63a52f;
  --orange: #f7941e;
  --bg: #f5f8fc;
  --card: #ffffff;
  --ink: #1e3450;
  --muted: #58708c;
  --line: #e3ebf4;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(16, 42, 78, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 42, 78, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 42, 78, 0.16);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
ul { list-style: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { color: var(--navy-800); line-height: 1.18; font-weight: 800; letter-spacing: -0.02em; }

.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-alt { background: #fff; }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 10px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(46, 124, 214, 0.08);
  border: 1px solid rgba(46, 124, 214, 0.18);
  padding: 6px 14px; border-radius: 100px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: 700 1rem var(--font);
  padding: 15px 30px; border-radius: 100px;
  border: 0; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.btn svg { transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(124, 193, 66, 0.38);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(124, 193, 66, 0.45); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.2); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: 0 10px 24px rgba(29, 91, 168, 0.35);
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(29, 91, 168, 0.42); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: #cfe0f2;
  font-size: 0.85rem;
  padding: 8px 0;
  position: relative; z-index: 60;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { flex: none; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); border-color: var(--line); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-inner { padding: 14px 0; transition: padding 0.3s ease; }
.header.scrolled .header-inner { padding: 8px 0; }
.brand img { height: 54px; width: auto; transition: height 0.3s ease; }
.header.scrolled .brand img { height: 44px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: var(--ink); font-weight: 600; font-size: 0.95rem;
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 2.5px; border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--sky));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav .btn { padding: 11px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  z-index: 70;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; border-radius: 3px;
  background: var(--navy-700); margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s 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;
  min-height: min(92vh, 860px);
  display: flex; align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center 35%;
  transform: scale(1.08);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(102deg, rgba(8, 27, 51, 0.94) 0%, rgba(10, 34, 66, 0.82) 42%, rgba(12, 41, 79, 0.45) 72%, rgba(12, 41, 79, 0.28) 100%);
}
.hero .container { padding: clamp(90px, 12vh, 150px) 0 110px; }
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(124, 193, 66, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 193, 66, 0.7); }
  70% { box-shadow: 0 0 0 9px rgba(124, 193, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 193, 66, 0); }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.35rem, 5.6vw, 3.9rem);
  margin: 22px 0 18px;
}
.hero h1 .grad {
  background: linear-gradient(92deg, #9be15d 0%, #7cc142 45%, #4fb3e8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: #d9e6f4; max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 42px;
  font-size: 0.9rem; font-weight: 600; color: #e6eef8;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--green); flex: none; }

/* staggered entrance */
.hero [data-stagger] { opacity: 0; transform: translateY(26px); animation: rise 0.8s cubic-bezier(0.22, 0.9, 0.3, 1) forwards; }
.hero [data-stagger="1"] { animation-delay: 0.1s; }
.hero [data-stagger="2"] { animation-delay: 0.25s; }
.hero [data-stagger="3"] { animation-delay: 0.4s; }
.hero [data-stagger="4"] { animation-delay: 0.55s; }
.hero [data-stagger="5"] { animation-delay: 0.7s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px; display: flex; justify-content: center;
}
.scroll-hint::before {
  content: ""; width: 4px; height: 9px; border-radius: 3px;
  background: #fff; margin-top: 7px;
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(14px); } }

.hero-bg { background-image: url("../img/hero.webp"); }
@media (max-width: 699px) {
  .hero-bg { background-image: url("../img/hero-mobile.webp"); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(34px, 5vw, 70px); align-items: center;
}
.about-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.about-photo {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-md); margin: 0;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.3, 1); }
.about-photo:hover img { transform: scale(1.05); }
.about-photo figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 34px 14px 12px;
  background: linear-gradient(transparent, rgba(8, 27, 51, 0.85));
  color: #fff; font-size: 0.8rem; font-weight: 600;
}
.about-photo.main { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.about-photo.small-1, .about-photo.small-2 { aspect-ratio: 4 / 3; }
.about-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 12px 0 16px; }
.about-copy p { color: var(--muted); margin-bottom: 14px; }
.about-copy p strong { color: var(--navy-700); }
.about-checks { margin: 20px 0 28px; display: grid; gap: 11px; }
.about-checks li { display: flex; gap: 11px; align-items: baseline; font-weight: 600; font-size: 0.96rem; }
.about-checks li::before {
  content: "✓"; flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: rgba(124, 193, 66, 0.15); color: var(--green-dark);
  font-size: 0.8rem; font-weight: 800;
  transform: translateY(3px);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--navy-800);
  color: #fff;
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ticker-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 34s linear infinite;
}
.ticker span { display: inline-flex; align-items: center; gap: 14px; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.ticker span::after { content: "✦"; color: var(--orange); font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { background: #fff; border-bottom: 1px solid var(--line); }
.stats .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 46px 0;
}
.stat { text-align: center; }
.stat b {
  display: block; font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800;
  color: var(--navy-700); letter-spacing: -0.02em; line-height: 1.1;
}
.stat b em { font-style: normal; color: var(--green); }
.stat small { color: var(--muted); font-weight: 600; font-size: 0.9rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.3, 1), box-shadow 0.35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.3, 1);
}
.service-card:hover .service-media img { transform: scale(1.07); }
.service-icon {
  position: absolute; left: 20px; bottom: -26px;
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.service-icon.i-electrical { background: linear-gradient(135deg, #ffb347, var(--orange)); }
.service-icon.i-hvac { background: linear-gradient(135deg, #6fc3f0, var(--sky)); }
.service-icon.i-pool { background: linear-gradient(135deg, #2e7cd6, var(--blue)); }
.service-icon.i-remodel { background: linear-gradient(135deg, #94d65e, var(--green)); }
.service-icon.i-handyman { background: linear-gradient(135deg, #365a8c, var(--navy-700)); }
.service-body { padding: 40px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.28rem; margin-bottom: 10px; }
.service-body p { color: var(--muted); font-size: 0.96rem; }
.service-list { margin: 16px 0 20px; display: grid; gap: 8px; }
.service-list li {
  display: flex; gap: 10px; align-items: baseline;
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
}
.service-list li::before { content: "✓"; color: var(--green); font-weight: 800; }
.service-link {
  margin-top: auto; font-weight: 700; font-size: 0.94rem;
  display: inline-flex; align-items: center; gap: 7px;
}
.service-link:hover { gap: 12px; }
.service-link { transition: gap 0.25s ease; }

/* ---------- Why us ---------- */
.why { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 124, 214, 0.22), transparent 65%);
  top: -220px; right: -160px; pointer-events: none;
}
.why::after {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 193, 66, 0.16), transparent 65%);
  bottom: -200px; left: -140px; pointer-events: none;
}
.why .section-head h2, .why h3 { color: #fff; }
.why .section-head p { color: #b9cbe0; }
.why .eyebrow { color: #9be15d; background: rgba(124, 193, 66, 0.12); border-color: rgba(124, 193, 66, 0.3); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px;
  position: relative; z-index: 1;
}
.why-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
  backdrop-filter: blur(4px);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.09); border-color: rgba(124, 193, 66, 0.45); }
.why-card .wicon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(124, 193, 66, 0.25), rgba(79, 179, 232, 0.25));
  color: #9be15d; margin-bottom: 18px;
}
.why-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.why-card p { color: #b9cbe0; font-size: 0.94rem; }

/* ---------- Process ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px;
  counter-reset: step;
}
.process-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 18px; right: 22px;
  font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px #d3e0ee;
}
.process-step .picon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(46, 124, 214, 0.12), rgba(124, 193, 66, 0.12));
  color: var(--blue-bright); margin-bottom: 18px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 38px; }
.filter-btn {
  font: 600 0.9rem var(--font);
  padding: 10px 20px; border-radius: 100px;
  border: 1.5px solid var(--line); background: #fff; color: var(--muted);
  cursor: pointer; transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--blue-bright); color: var(--blue-bright); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  border-color: transparent; color: #fff;
  box-shadow: 0 6px 16px rgba(29, 91, 168, 0.3);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
  grid-auto-flow: dense;
}
.gallery-item {
  position: relative; border-radius: 14px; overflow: hidden; cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.22, 0.9, 0.3, 1), opacity 0.4s ease, box-shadow 0.3s ease;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item:hover { box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 42px 16px 14px;
  background: linear-gradient(transparent, rgba(8, 27, 51, 0.88));
  color: #fff; font-size: 0.86rem; font-weight: 600;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-item .tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; padding: 4px 11px; border-radius: 100px;
  background: rgba(10, 31, 60, 0.65); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
}
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6, 18, 36, 0.94);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  padding: 24px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1100px, 94vw); max-height: 78vh;
  border-radius: 12px; box-shadow: var(--shadow-lg);
  object-fit: contain;
  animation: lbIn 0.35s cubic-bezier(0.22, 0.9, 0.3, 1);
}
@keyframes lbIn { from { opacity: 0; transform: scale(0.94); } }
.lightbox figcaption { color: #d9e6f4; margin-top: 16px; font-weight: 600; text-align: center; }
.lb-btn {
  position: absolute; background: rgba(255, 255, 255, 0.1); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%;
  width: 48px; height: 48px; display: grid; place-items: center;
  cursor: pointer; font-size: 1.2rem; transition: background 0.25s ease;
}
.lb-btn:hover { background: rgba(255, 255, 255, 0.22); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- Testimonials ---------- */
.reviews { background: #fff; }
.reviews-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card::before {
  content: "\201C";
  position: absolute; top: 6px; right: 22px;
  font-size: 4.6rem; font-weight: 800; line-height: 1;
  color: rgba(29, 91, 168, 0.10);
}
.stars { color: var(--orange); letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 14px; }
.review-card p { font-size: 0.97rem; color: var(--ink); }
.review-meta { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1rem;
}
.review-meta b { display: block; font-size: 0.95rem; color: var(--navy-800); }
.review-meta small { color: var(--muted); font-size: 0.83rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: box-shadow 0.3s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  font-weight: 700; font-size: 1.02rem; color: var(--navy-800);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--blue-bright);
  transition: transform 0.3s ease; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-800), var(--blue) 55%, var(--blue-bright));
  border-radius: 24px;
  padding: clamp(44px, 6vw, 70px) clamp(28px, 5vw, 64px);
  color: #fff;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 193, 66, 0.35), transparent 65%);
  right: -100px; top: -140px;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); max-width: 560px; position: relative; }
.cta-band p { color: #d9e6f4; margin-top: 8px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 34px; align-items: start; }
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  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.88rem; margin-bottom: 7px; color: var(--navy-800); }
.field input, .field select, .field textarea {
  width: 100%;
  font: 500 0.97rem var(--font);
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-bright); background: #fff;
  box-shadow: 0 0 0 4px rgba(46, 124, 214, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { margin-top: 14px; font-weight: 600; font-size: 0.95rem; display: none; }
.form-status.ok { display: block; color: var(--green-dark); }
.form-status.err { display: block; color: #d64545; }

.contact-info { display: grid; gap: 20px; }
.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card .iicon {
  width: 48px; height: 48px; border-radius: 13px; flex: none;
  display: grid; place-items: center; color: #fff;
}
.info-card h3 { font-size: 1.02rem; margin-bottom: 5px; }
.info-card p, .info-card a { color: var(--muted); font-size: 0.93rem; }
.info-card a { font-weight: 600; color: var(--blue-bright); }
.hours-table { width: 100%; font-size: 0.92rem; margin-top: 6px; border-collapse: collapse; }
.hours-table td { padding: 4px 0; color: var(--muted); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.hours-table tr.closed td:last-child { color: #c0392b; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #b9cbe0; padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 50px;
}
.footer img { height: 52px; width: auto; margin-bottom: 18px; }
.footer p { font-size: 0.9rem; }
.footer h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { color: #b9cbe0; font-size: 0.92rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer ul a:hover { color: #9be15d; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 0.84rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
}
.footer-bottom a { color: #b9cbe0; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.22, 0.9, 0.3, 1), transform 0.8s cubic-bezier(0.22, 0.9, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { transform: translateY(-3px); }

/* ---------- Legal pages ---------- */
.legal-hero {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff; padding: 80px 0 60px; text-align: center;
}
.legal-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.legal-hero p { color: #b9cbe0; margin-top: 10px; }
.legal-body { max-width: 820px; margin: 0 auto; padding: 60px 0 90px; }
.legal-body h2 { font-size: 1.35rem; margin: 38px 0 12px; }
.legal-body h3 { font-size: 1.1rem; margin: 26px 0 10px; }
.legal-body p, .legal-body li { color: var(--muted); font-size: 0.98rem; margin-bottom: 12px; }
.legal-body ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.legal-body ul li { margin-bottom: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 0; z-index: 60;
    background: rgba(10, 31, 60, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column; justify-content: center; gap: 26px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .nav a { color: #fff; font-size: 1.25rem; }
  .nav-open .nav { opacity: 1; pointer-events: auto; }
  .nav-open { overflow: hidden; }
  .nav-toggle { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 30px 14px; }
}
@media (max-width: 640px) {
  .topbar .container { justify-content: center; text-align: center; }
  .topbar .hide-sm { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero .container { padding-top: 80px; padding-bottom: 90px; }
  .hero-ctas .btn { width: 100%; }
  .gallery-grid { grid-auto-rows: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}

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