/* Pacific Blue Catchment — Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1f3c;
  --green: #2e8b57;
  --green-dark: #236b43;
  --green-light: #42956a;
  --green-pale: #eaf4ee;
  --sand: #f5f0e8;
  --white: #ffffff;
  --warm-gray: #f9f7f4;
  --border: #e8e2d9;
  --text-dark: #1a1a2e;
  --text-mid: #5a6072;
  --text-light: #8a90a0;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Outfit', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* SKIP LINK */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--green); color: white; padding: 8px 16px; z-index: 200; font-size: 14px; text-decoration: none; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy); padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; height: 88px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-badge { width: 40px; height: 40px; border-radius: 8px; background: var(--green); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; color: white; letter-spacing: 0.5px; }
.nav-name { color: white; font-weight: 700; font-size: 15px; line-height: 1.2; }
.nav-name span { display: block; font-weight: 400; font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-cta { background: var(--green); color: white; padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 14px; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--green-light); }

/* HAMBURGER */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* FOCUS */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

/* SHARED SECTION */
section { padding: 96px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.label-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.1; margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--text-mid); line-height: 1.7; }

/* BUTTONS */
.btn-green { background: var(--green); color: white; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-green:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: white; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.28); transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: rgba(255,255,255,0.55); }
.btn-full { display: block; width: 100%; text-align: center; background: var(--green); color: white; padding: 15px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; margin-top: 22px; transition: background 0.2s; }
.btn-full:hover { background: var(--green-light); }
.btn-submit { background: var(--green); color: white; padding: 16px 36px; border-radius: 10px; font-weight: 700; font-size: 16px; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; transition: all 0.2s; margin-top: 6px; width: 100%; }
.btn-submit:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* PAGE HERO (inner pages) */
.page-hero { background: var(--navy); padding: 140px 48px 80px; }
.page-hero .section-inner { max-width: 1200px; margin: 0 auto; }
.page-hero .label-tag { color: #8ecfa8; }
.page-hero .section-title { color: white; font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.page-hero .section-sub { color: rgba(255,255,255,0.55); max-width: 640px; }

/* HERO (home only) */
.hero {
  min-height: 100vh; padding-top: 68px; position: relative;
  display: flex; align-items: stretch; overflow: hidden; background: var(--navy);
}
.hero-photo { position: absolute; inset: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,31,60,0.92) 0%, rgba(13,31,60,0.70) 38%, rgba(13,31,60,0.18) 65%, rgba(13,31,60,0.04) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 80px 48px; display: flex; align-items: center; }
.hero-inner { max-width: 560px; }
.hero-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #8ecfa8; margin-bottom: 20px; }
.hero h1 { font-size: clamp(36px, 4.8vw, 62px); font-weight: 800; color: white; line-height: 1.06; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #8ecfa8; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.62); line-height: 1.75; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; flex-direction: column; gap: 10px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.62); font-size: 13px; font-weight: 500; }
.trust-icon { width: 18px; height: 18px; flex-shrink: 0; color: #8ecfa8; }

/* STATS */
.stats-strip { background: var(--sand); border-bottom: 1px solid var(--border); padding: 0 48px; }
.stats-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); border-left: 1px solid var(--border); }
.stat-block { padding: 28px 24px; border-right: 1px solid var(--border); display: flex; align-items: center; gap: 14px; }
.stat-icon-wrap { width: 42px; height: 42px; border-radius: 10px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon-wrap svg { width: 20px; height: 20px; color: var(--green); }
.stat-num { font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-mid); margin-top: 3px; font-weight: 500; }

/* SERVICES */
.services { background: white; }
.services-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 24px; flex-wrap: wrap; }
.services-top .section-sub { max-width: 400px; }
.services-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.service-row-item { display: flex; align-items: center; gap: 18px; padding: 22px 24px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); background: white; transition: background 0.18s; }
.service-row-item:hover { background: var(--warm-gray); }
.service-row-item:nth-child(3n) { border-right: none; }
.service-row-item:nth-last-child(-n+3) { border-bottom: none; }
.svc-icon { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.svc-icon svg { width: 36px; height: 36px; color: var(--green); }
.svc-name { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.4px; }
.svc-desc { font-size: 12px; color: var(--text-mid); margin-top: 3px; line-height: 1.4; }

/* SERVICE DETAIL CARDS */
.service-detail { background: white; padding: 96px 48px; }
.service-detail:nth-child(even) { background: var(--warm-gray); }
.service-detail-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.service-detail:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail:nth-child(even) .service-detail-inner > * { direction: ltr; }
.service-detail-text .section-sub { margin-bottom: 28px; }
.service-detail-img { border-radius: 14px; overflow: hidden; }
.service-detail-img img { width: 100%; display: block; height: 360px; object-fit: cover; }
.service-detail-img img + img { border-radius: 14px; height: auto; max-height: 280px; margin-top: 12px; }
.service-detail-img-stack img { height: auto !important; max-height: none !important; border-radius: 14px; }

/* SERVICE IMAGE SLIDESHOW */
.svc-slideshow { position: relative; overflow: hidden; border-radius: 14px; }
.svc-slide-track { display: flex; transition: transform 0.4s ease; }
.svc-slideshow .svc-slide-track img { min-width: 100%; flex-shrink: 0; height: 360px; object-fit: cover; display: block; border-radius: 0; margin: 0; max-height: none; }
.svc-slide-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,0.35); border: none; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 3; backdrop-filter: blur(4px); }
.svc-slide-btn:hover { background: rgba(0,0,0,0.55); }
.svc-slide-prev { left: 10px; }
.svc-slide-next { right: 10px; }
.svc-slide-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.svc-slide-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0; transition: background 0.2s; }
.svc-slide-dot.active { background: white; }
.service-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.service-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-mid); line-height: 1.55; }
.service-feature svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--green); margin-top: 2px; }

/* ABOUT */
.about { background: var(--warm-gray); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-photos { display: flex; flex-direction: column; gap: 16px; }
.photo-main { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.13); }
.photo-main img { width: 100%; height: 320px; object-fit: cover; display: block; }
.photo-thumb { border-radius: 12px; overflow: hidden; box-shadow: 0 14px 36px rgba(0,0,0,0.15); }
.photo-thumb img { width: 100%; height: 200px; object-fit: cover; display: block; }
.photo-owner { border-radius: 12px; overflow: hidden; box-shadow: 0 14px 36px rgba(0,0,0,0.10); }
.photo-owner img { width: 100%; height: 200px; object-fit: cover; object-position: center 20%; display: block; }
.photo-caption { padding: 10px 16px; background: var(--navy); color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500; line-height: 1.4; }
.about-text .section-sub { max-width: 100%; margin-bottom: 28px; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.check-item { display: flex; align-items: flex-start; gap: 13px; }
.check-mark { width: 22px; height: 22px; background: var(--green-pale); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-mark svg { width: 12px; height: 12px; color: var(--green); }
.check-item p { font-size: 15px; color: var(--text-mid); line-height: 1.55; }
.check-item strong { color: var(--text-dark); }

/* GALLERY */
.projects { background: white; padding: 0; }
.projects-label { max-width: 1200px; margin: 0 auto; padding: 72px 48px 40px; }
.photo-mosaic { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 4px; }
.mosaic-cell { overflow: hidden; }
.mosaic-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.mosaic-cell:hover img { transform: scale(1.04); }
.mosaic-cell.tall { grid-row: span 2; }

/* PIONEER */
.pioneer { background: var(--sand); }
.pioneer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pioneer-img { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 46px rgba(0,0,0,0.07); background: white; padding: 24px; }
.pioneer-img img { width: 100%; display: block; }
.pioneer-text .section-sub { max-width: 100%; margin-bottom: 36px; }
.spec-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.spec-item { background: white; border-radius: 10px; padding: 20px 22px; border: 1px solid var(--border); }
.spec-val { font-size: 24px; font-weight: 800; color: var(--navy); }
.spec-desc { font-size: 13px; color: var(--text-mid); margin-top: 4px; font-weight: 500; }

/* REVIEWS */
.reviews { background: var(--green-dark); padding: 96px 48px; }
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-top { text-align: center; margin-bottom: 56px; }
.reviews-top .label-tag { color: #a8d5b5; }
.reviews-top .section-title { color: white; }
.reviews-top .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 100px; padding: 9px 20px; margin-bottom: 22px; }
.google-badge span { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.88); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; }
.review-card .review-quote { flex: 1; }
.review-stars { color: #f6c90e; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.review-quote { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.78); margin-bottom: 22px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-av { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: 14px; color: white; }
.reviewer-sub { font-size: 12px; color: rgba(255,255,255,0.45); }
.review-cta { text-align: center; margin-top: 40px; }
.btn-review { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--green-dark); padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.2s; }
.btn-review:hover { background: var(--green-pale); transform: translateY(-1px); }
.btn-review svg { width: 20px; height: 20px; flex-shrink: 0; }

/* REVIEW CAROUSEL */
.review-carousel { position: relative; overflow: hidden; padding: 0 52px; }
.review-track { display: flex; gap: 20px; transition: transform 0.4s ease; align-items: stretch; }
.review-carousel .review-card { min-width: calc(33.333% - 14px); flex-shrink: 0; display: flex; flex-direction: column; }
.review-carousel .review-quote { flex: 1; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: white; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 5; backdrop-filter: blur(4px); }
.carousel-btn:hover { background: rgba(255,255,255,0.25); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; cursor: pointer; transition: background 0.2s; padding: 0; }
.carousel-dot.active { background: white; }

/* BBB BADGE */
.footer-bbb { display: flex; align-items: center; gap: 16px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bbb a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.footer-bbb a:hover { color: rgba(255,255,255,0.85); }
.bbb-shield { width: 28px; height: 28px; background: #005a78; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: white; font-size: 11px; font-weight: 900; letter-spacing: 0.5px; flex-shrink: 0; }

/* AREAS */
.areas { background: var(--navy); padding: 96px 48px; }
.areas-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.areas-left .label-tag { color: #8ecfa8; }
.areas-left .section-title { color: white; }
.areas-left .section-sub { color: rgba(255,255,255,0.52); margin-bottom: 36px; }
.areas-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; padding: 8px 16px; color: rgba(255,255,255,0.62); font-size: 13px; font-weight: 500; transition: all 0.2s; }
.area-chip:hover { background: rgba(53,122,85,0.25); border-color: #8ecfa8; color: #8ecfa8; }
.contact-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 38px; }
.contact-card h3 { color: white; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.contact-card > p { color: rgba(255,255,255,0.48); font-size: 15px; line-height: 1.6; margin-bottom: 30px; }
.contact-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; text-decoration: none; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; color: white; }
.contact-row-text strong { display: block; color: white; font-size: 16px; font-weight: 700; }
.contact-row-text span { color: rgba(255,255,255,0.38); font-size: 12px; }

/* CTA BAND */
.cta-band { background: var(--sand); padding: 80px 48px; text-align: center; border-top: 1px solid var(--border); }
.cta-band-inner { max-width: 600px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(26px,3.5vw,40px); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.cta-band p { font-size: 17px; color: var(--text-mid); margin-bottom: 32px; line-height: 1.6; }

/* QUOTE FORM */
.quote-form-section { background: var(--warm-gray); padding: 96px 48px; border-top: 1px solid var(--border); }
.quote-form-inner { max-width: 680px; margin: 0 auto; }
.quote-form-inner .label-tag { text-align: center; display: block; }
.quote-form-inner .section-title { text-align: center; }
.quote-form-inner .section-sub { text-align: center; margin-bottom: 40px; }
.quote-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.3px; }
.form-input, .form-select { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'Outfit', sans-serif; font-size: 15px; color: var(--text-dark); background: white; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-input:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(53,122,85,0.12); }
.form-input::placeholder { color: var(--text-light); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6072' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-input.error, .form-select.error { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,0.12); }
.form-error { color: #e53e3e; font-size: 12px; margin-top: 4px; display: none; }
.form-error.show { display: block; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 4px; }
.consent-row input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--green); flex-shrink: 0; cursor: pointer; }
.consent-row label { font-size: 13px; color: var(--text-mid); line-height: 1.55; cursor: pointer; }
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success.show { display: block; }
.form-success h3 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.form-success p { font-size: 17px; color: var(--text-mid); line-height: 1.6; }
.form-success .check-circle { width: 64px; height: 64px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success .check-circle svg { width: 28px; height: 28px; color: var(--green); }

/* FAQ */
.faq-section { background: white; padding: 96px 48px; border-top: 1px solid var(--border); }
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-item summary { padding: 20px 24px; font-weight: 600; font-size: 16px; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--green); font-weight: 300; flex-shrink: 0; margin-left: 16px; transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); background: var(--warm-gray); }
.faq-item p { padding: 20px 24px; font-size: 15px; color: var(--text-mid); line-height: 1.7; }

/* AREAS PAGE - island cards */
.island-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.island-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 32px; transition: box-shadow 0.2s; }
.island-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.island-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.island-card .island-areas { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.island-card .island-areas a { color: var(--green); text-decoration: none; font-weight: 500; }
.island-card .island-areas a:hover { text-decoration: underline; }
.island-card .btn-green { font-size: 13px; padding: 10px 20px; }

/* STICKY MOBILE CTA */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--navy); padding: 12px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.sticky-cta-btn { display: block; width: 100%; text-align: center; background: var(--green); color: white; padding: 14px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; }

/* FOOTER */
footer { background: var(--navy); padding: 64px 48px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 52px; }
.footer-about p { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 260px; }
.footer-col h4 { color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 18px; text-transform: uppercase; }
.footer-col a { display: block; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.75); }
.footer-col address { color: rgba(255,255,255,0.4); font-size: 14px; font-style: normal; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-copy { color: rgba(255,255,255,0.28); font-size: 13px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.28); font-size: 13px; text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { animation: fadeUp 0.6s 0.1s both; }
.hero h1 { animation: fadeUp 0.6s 0.2s both; }
.hero-sub { animation: fadeUp 0.6s 0.3s both; }
.hero-actions { animation: fadeUp 0.6s 0.4s both; }
.hero-trust { animation: fadeUp 0.6s 0.5s both; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero-overlay { background: linear-gradient(to right, rgba(13,31,60,0.92) 0%, rgba(13,31,60,0.75) 50%, rgba(13,31,60,0.5) 100%); }
}
@media (max-width: 900px) {
  .services-list { grid-template-columns: repeat(2,1fr); }
  .service-row-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-row-item:nth-child(2n) { border-right: none; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .island-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
}
@media (max-width: 800px) {
  .about-grid, .pioneer-grid, .areas-inner { grid-template-columns: 1fr; }
  .photo-main img { height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; position: fixed; top: 88px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 20px; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); z-index: 100; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 16px; }
  .hamburger { display: block; }
  .nav-cta { display: none; }
  .sticky-cta { display: block; }
  .faq-section { padding: 64px 20px; }
  section, .areas, .reviews, .cta-band, .quote-form-section, footer, .page-hero, .service-detail { padding-left: 20px; padding-right: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .stats-strip { padding: 0 20px; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
  .projects-label { padding: 48px 20px 28px; }
  .photo-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-cell.tall { grid-row: span 1; }
  .mosaic-cell img { height: 200px; }
  .review-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .service-row-item { border-right: none !important; }
  .hero-content { padding: 40px 20px; }
  .hero-overlay { background: rgba(13,31,60,0.82); }
  .island-grid { grid-template-columns: 1fr; }
  .island-stats-grid { grid-template-columns: 1fr !important; }
  .page-hero { padding: 120px 20px 60px; }
  .contact-two-col { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Tank packages: 4-col → 1-col */
  .tank-pkg-grid { grid-template-columns: 1fr !important; }
  /* Tank "what's included": 3-col → 1-col */
  .pkg-includes-grid { grid-template-columns: 1fr !important; }
  /* Pioneer spec row: 2-col → 1-col */
  .spec-row { grid-template-columns: 1fr; }

  /* Service detail images: shorter on mobile */
  .service-detail-img img { height: 240px; }

  /* CTA band buttons: stack vertically */
  .cta-band-inner .btn-green { margin-left: 0 !important; margin-top: 10px; display: block; width: 100%; }

  /* Footer: single column on narrow */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Bigger checkbox tap target for iOS */
  .consent-row input[type="checkbox"] { width: 22px; height: 22px; }

  /* Nav logo: constrain so it doesn't collide with hamburger */
  .nav-logo img { height: 40px !important; }

  /* Carousel: 1 card visible on mobile */
  .review-carousel { padding: 0 48px; }
  .review-carousel .review-card { min-width: 100%; }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .review-carousel .review-card { min-width: calc(50% - 10px); }
}
