/* ==========================================================================
   Irish Air to Water — shared stylesheet
   SquareTwo build
   ========================================================================== */

:root {
  --ink: #10231c;
  --pine: #14352a;
  --pine-deep: #0d2620;
  --bone: #f4f3ee;
  --bone-dim: #e9e7df;
  --white: #fdfdfb;
  --amber: #e8a33d;
  --amber-deep: #c9871f;
  --amber-text: #8f5d10; /* amber for text on light: 5.5:1 on white */
  --text: #2b3a34;
  --text-soft: #5c6b64;
  --line: rgba(16, 35, 28, 0.12);
  --line-light: rgba(244, 243, 238, 0.14);
  --radius: 14px;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: clip; }
html { scroll-behavior: smooth; }
body.nav-open { overflow: hidden; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--bone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; color: var(--ink); }
img { max-width: 100%; display: block; }
picture { display: contents; } /* WebP wrapper must not interfere with frame sizing */
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: var(--pine-deep);
  padding: 12px 20px;
  z-index: 200;
  font-weight: 600;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ---------- Image placeholders (swap src later) ---------- */
.ph {
  background:
    repeating-linear-gradient(45deg, rgba(20,53,42,0.06) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, #dfe4dd, #cfd7cf);
  border: 1.5px dashed rgba(20, 53, 42, 0.35);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #4a5c53;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 16px;
}
.ph span { max-width: 26ch; }

/* ---------- Photos ----------
   Every supplied photo is 3:4 portrait, so slots are portrait-friendly and
   images cover rather than letterbox. */
.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bone-dim);
  border: 1px solid var(--line);
}
.bg-pine .media-frame, .hero .media-frame { border-color: rgba(244, 243, 238, 0.14); }
.svc-feature .media-frame { border: none; border-bottom: 1px solid rgba(244, 243, 238, 0.14); }
.ph-dark {
  background:
    repeating-linear-gradient(45deg, rgba(244,243,238,0.06) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, #1d4636, #14352a);
  border-color: rgba(244, 243, 238, 0.35);
  color: rgba(244, 243, 238, 0.75);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 26px;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-amber {
  background: var(--amber);
  color: var(--pine-deep);
  box-shadow: 0 6px 18px rgba(201, 135, 31, 0.28);
}
.btn-amber:hover { background: var(--amber-deep); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(16, 35, 28, 0.35);
}
.btn-ghost:hover { border-color: var(--pine); background: rgba(20, 53, 42, 0.05); }
.btn-ghost-light {
  background: transparent;
  color: var(--bone);
  border: 1.5px solid rgba(244, 243, 238, 0.45);
}
.btn-ghost-light:hover { background: rgba(244, 243, 238, 0.1); }
.btn-pine { background: var(--pine); color: var(--bone); }
.btn-pine:hover { background: var(--pine-deep); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  object-fit: contain;
  padding: 3px;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.15;
}
.brand-name small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--pine); }
.nav-links a[aria-current="page"] { color: var(--pine); font-weight: 600; }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid rgba(16, 35, 28, 0.28);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bone);
  padding: 18px 24px 26px;
  max-height: calc(100svh - 72px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-panel.open { display: block; }
.mobile-panel ul { list-style: none; display: grid; gap: 2px; margin-bottom: 18px; }
.mobile-panel ul a {
  display: block;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-panel ul a[aria-current="page"] { color: var(--amber-text); }
.mobile-actions { display: grid; gap: 10px; }
.mobile-actions .btn { display: flex; justify-content: center; width: 100%; }

/* ---------- Hero ---------- */
.hero { background: var(--pine-deep); color: var(--bone); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 72px 24px 88px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.3vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero p.lede {
  font-size: 1.12rem;
  color: rgba(244, 243, 238, 0.82);
  max-width: 46ch;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media .ph { aspect-ratio: 4 / 4.2; }
.hero-stack { position: relative; }
.hero-stack .stack-main { aspect-ratio: 4 / 3.9; }
.hero-stack .stack-small {
  position: absolute;
  left: -36px;
  bottom: -44px;
  width: 45%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid var(--pine-deep);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
  background: var(--bone-dim);
}
.hero-stack .stack-small img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--white);
  color: var(--ink);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge .dot-cert {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pine);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.hero-badge strong { font-family: 'Sora', sans-serif; font-size: 0.9rem; display: block; }
.hero-badge small { color: var(--text-soft); font-size: 0.78rem; }

/* Inner page hero */
.page-hero {
  background: var(--pine-deep);
  color: var(--bone);
  padding: 64px 0 68px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 22ch;
}
.page-hero p {
  color: rgba(244, 243, 238, 0.78);
  font-size: 1.08rem;
  max-width: 54ch;
  font-weight: 300;
}
.eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.eyebrow-dark { color: var(--amber-text); }
.crumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(244, 243, 238, 0.55);
  margin-top: 26px;
}
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--amber); }
.crumbs li + li::before { content: "/"; margin-right: 8px; opacity: 0.5; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--pine);
  color: rgba(244, 243, 238, 0.9);
  border-top: 1px solid rgba(244, 243, 238, 0.08);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 44px;
  padding: 18px 0;
  font-size: 0.92rem;
  color: rgba(244, 243, 238, 0.85);
}

/* ---------- Sections ---------- */
section { padding: 92px 0; }
[id] { scroll-margin-top: 84px; }
.sec-tight { padding: 64px 0; }
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head-center { max-width: 660px; margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin-bottom: 14px;
}
.sec-head p { color: var(--text-soft); font-size: 1.05rem; }
.bg-white { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bg-pine { background: var(--pine-deep); color: var(--bone); }
.bg-pine h2, .bg-pine h3 { color: var(--white); }
.bg-pine .sec-head p { color: rgba(244, 243, 238, 0.72); }

/* Services bento */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 18px;
}
.svc-grid-3 {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
}
@media (max-width: 1024px) { .svc-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid-3 { grid-template-columns: 1fr; } }
.svc {
  border-radius: var(--radius);
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16, 35, 28, 0.1); }
.svc h3 { font-size: 1.12rem; }
.svc p { color: var(--text-soft); font-size: 0.94rem; }
.svc-more {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--amber-text);
  margin-top: 6px;
}
.svc-feature {
  grid-row: span 2;
  background: var(--pine);
  border: none;
  justify-content: space-between;
  padding: 0;
  overflow: hidden;
}
.svc-feature .ph {
  border-radius: 0;
  border: none;
  border-bottom: 1.5px dashed rgba(244, 243, 238, 0.4);
  background:
    repeating-linear-gradient(45deg, rgba(244,243,238,0.06) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, #1d4636, #14352a);
  color: rgba(244, 243, 238, 0.75);
  flex: 1;
  min-height: 180px;
}
.svc-feature .media-frame {
  border-radius: 0;
  flex: 1;
  min-height: 200px;
}
.svc-feature .media-frame .media-img { border-radius: 0; }
.svc-feature .svc-feature-body { padding: 26px 28px 30px; }
.svc-feature h3 { color: var(--white); }
.svc-feature p { color: rgba(244, 243, 238, 0.75); }
.svc { position: relative; overflow: hidden; }
.svc-watermark {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 160px;
  height: 160px;
  color: rgba(20, 53, 42, 0.07);
  pointer-events: none;
}
.svc-watermark svg { width: 100%; height: 100%; }
.svc h3, .svc p { position: relative; }

/* ---------- Detailed service blocks ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.svc-detail:first-of-type { border-top: none; padding-top: 12px; }
.svc-detail.flip .svc-detail-media { order: 2; }
.svc-detail-media .ph, .svc-detail-media .media-frame { aspect-ratio: 4 / 4.1; }
.svc-detail-media .frame-landscape { aspect-ratio: 1.9 / 1; }
.svc-detail h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 14px; letter-spacing: -0.015em; }
.svc-detail > div > p { color: var(--text-soft); margin-bottom: 18px; max-width: 56ch; }
.tick-list { list-style: none; display: grid; gap: 11px; margin-bottom: 22px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.97rem; }
.tick-list svg { width: 19px; height: 19px; color: var(--amber-deep); flex-shrink: 0; margin-top: 4px; }
.bg-pine .tick-list li { color: rgba(244, 243, 238, 0.85); }
.bg-pine .tick-list svg { color: var(--amber); }

.svc-detail-full {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.svc-detail-full h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 14px; letter-spacing: -0.015em; }
.svc-detail-full > p { color: var(--text-soft); max-width: 68ch; }
.svc-detail-full .panel h3 { margin-bottom: 16px; }

/* ---------- Problems band ---------- */
.prob-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; }
.prob {
  padding: 26px 0;
  border-top: 1px solid var(--line-light);
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.prob-num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--amber);
  font-size: 1.05rem;
  min-width: 34px;
}
.prob h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 6px; }
.prob p { color: rgba(244, 243, 238, 0.72); font-size: 0.95rem; }

.issues-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
  max-width: 860px;
}
.bg-pine .issues-list li { color: rgba(244, 243, 238, 0.88); font-size: 1.05rem; }
@media (max-width: 600px) { .issues-list { grid-template-columns: 1fr; } }

/* ---------- Brands ---------- */
/* services.html: each block heads to its own page */
.svc-detail-media > a { display: block; text-decoration: none; }
.svc-detail h2 a, .svc-detail-full h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.svc-detail h2 a:hover, .svc-detail-full h2 a:hover { color: var(--amber-text); }
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--amber-text);
  text-decoration: none;
}
.more-link svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform 0.2s; }
.more-link:hover svg { transform: translateX(4px); }
.more-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Cross-links between service pages */
.related-row { display: flex; flex-wrap: wrap; gap: 10px; }
.related-row a {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--pine);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.related-row a:hover { background: var(--pine); border-color: var(--pine); color: var(--white); }

.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 28px 44px;
  padding: 10px 0 0;
}
.brand-mark {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #9aa8a0;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}
.brand-mark:hover { color: var(--pine); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media .ph, .about-media .media-frame { aspect-ratio: 4 / 4.6; }
.about h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; letter-spacing: -0.015em; }
.about p { color: var(--text-soft); margin-bottom: 16px; max-width: 56ch; }
.about .sig { margin-top: 26px; font-family: 'Sora', sans-serif; font-weight: 600; color: var(--ink); }
.about .sig small { display: block; font-family: 'Outfit', sans-serif; font-weight: 400; color: var(--text-soft); }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  border-top: 2px solid var(--amber);
  padding-top: 20px;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--amber-text);
  margin-bottom: 8px;
}
.bg-pine .step-num { color: var(--amber); }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.93rem; color: var(--text-soft); }
.bg-pine .step p { color: rgba(244, 243, 238, 0.72); }

/* ---------- Certifications ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cert {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 26px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cert .ph { width: 100%; aspect-ratio: 1 / 1.3; font-size: 0.74rem; }
.cert h3 { font-size: 1.02rem; line-height: 1.35; }
.cert p { color: var(--text-soft); font-size: 0.9rem; }
.cert-meta {
  list-style: none;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-soft);
}
.cert-meta strong { color: var(--ink); font-family: 'Sora', sans-serif; font-weight: 600; }

/* ---------- Coverage ---------- */
.coverage-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.coverage-media .ph, .coverage-media .media-frame { aspect-ratio: 4 / 3.6; }
.coverage h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; letter-spacing: -0.015em; }
.coverage p { color: var(--text-soft); max-width: 52ch; margin-bottom: 22px; }
.county-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.county-list li {
  font-size: 0.84rem;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text-soft);
}

/* ---------- Info tables (maintenance page) ---------- */
.split-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 32px 30px 34px;
}
.panel-included { border-top: 4px solid #3f8f6b; }
.panel-chargeable { border-top: 4px solid var(--amber); }
.panel h3 { font-size: 1.2rem; margin-bottom: 6px; }
.panel > p.panel-sub { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 20px; }
.panel ul { list-style: none; display: grid; gap: 12px; }
.panel ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.panel ul li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; }
.panel-included li svg { color: #3f8f6b; }
.panel-chargeable li svg { color: var(--amber-deep); }

.callout {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  padding: 26px 28px;
  margin: 32px 0;
}
.callout h3 { font-size: 1.05rem; margin-bottom: 8px; }
.callout p { color: var(--text-soft); font-size: 0.97rem; }
.bg-pine .callout {
  background: rgba(244, 243, 238, 0.06);
  border-color: var(--line-light);
  border-left-color: var(--amber);
}
.bg-pine .callout p { color: rgba(244, 243, 238, 0.78); }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat span { font-size: 0.92rem; color: var(--text-soft); }

/* ---------- Bleed hero ---------- */
.hero-bleed {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(86svh, 720px);
  padding: 88px 0;
}
.bleed-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bleed-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(13, 38, 32, 0.93) 0%, rgba(13, 38, 32, 0.78) 42%, rgba(13, 38, 32, 0.42) 75%, rgba(13, 38, 32, 0.30) 100%),
    linear-gradient(to bottom, rgba(13, 38, 32, 0.25), rgba(13, 38, 32, 0) 30%, rgba(13, 38, 32, 0) 70%, rgba(13, 38, 32, 0.55));
}
.bleed-content { position: relative; z-index: 1; width: 100%; }
.hero-bleed h1 { max-width: 23ch; }

/* Light variant: his brand animation plays behind ink text */
.hero-light { background: var(--white); color: var(--text); }
.hero-light .bleed-video {
  left: 10%;
  right: auto;
  width: 118%;
}
.hero-light .bleed-scrim {
  background:
    linear-gradient(90deg, rgba(253, 253, 251, 0.97) 0%, rgba(253, 253, 251, 0.92) 34%, rgba(253, 253, 251, 0.55) 58%, rgba(253, 253, 251, 0.05) 82%),
    linear-gradient(to bottom, rgba(253, 253, 251, 0.35), rgba(253, 253, 251, 0) 26%, rgba(253, 253, 251, 0) 78%, rgba(253, 253, 251, 0.30));
}
.hero-light .eyebrow { color: var(--amber-deep); }
.hero-light h1 { color: var(--ink); }
.hero-light h1 em { color: var(--amber-deep); }
.hero-light p.lede { color: var(--text-soft); font-weight: 400; }

/* ---------- Video ---------- */
.hero-video {
  aspect-ratio: 4 / 3.3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(244, 243, 238, 0.16);
  background: var(--white);
}
.hero-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-video {
  grid-column: 3;
  grid-row: 1 / span 2;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}
.review-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Document thumbnails ---------- */
.doc-frame {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}
.doc-frame img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.doc-tile {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  background: var(--pine);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-tile svg { width: 54px; height: 54px; color: var(--amber); }

/* ---------- Work gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bone-dim);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-tall { grid-row: span 2; }

/* ---------- Coverage band ---------- */
.coverage-band { background: var(--pine); color: var(--bone); padding: 64px 0; }
.coverage-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.coverage-band h2 { color: var(--white); font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin-bottom: 8px; letter-spacing: -0.015em; }
.coverage-band p { color: rgba(244, 243, 238, 0.75); }
.coverage-band .tick-list { display: flex; gap: 24px; flex-wrap: wrap; }
.coverage-band .tick-list li { color: rgba(244, 243, 238, 0.88); white-space: nowrap; }
.coverage-band .tick-list svg { color: var(--amber); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.72fr;
  gap: 20px;
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}
.review blockquote {
  font-size: 0.98rem;
  color: var(--text);
  border: none;
  margin: 0 0 18px;
}
.review-lead { grid-column: 1; grid-row: 1 / span 2; justify-content: center; background: var(--pine); border: none; }
.review-lead blockquote {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--white);
  font-weight: 500;
}
.review-who {
  margin-top: auto;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.review-lead .review-who { color: var(--amber); }
.review-who small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text-soft);
  font-size: 0.8rem;
}
.review-lead .review-who small { color: rgba(244, 243, 238, 0.65); }
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-lead, .review-video { grid-column: auto; grid-row: auto; }
  .review-video { aspect-ratio: 9 / 16; max-width: 420px; margin: 0 auto; }
}

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 22px 44px 22px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq-q::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--amber-deep);
  border-bottom: 2px solid var(--amber-deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s;
}
.faq-q[aria-expanded="true"]::after { transform: translateY(-20%) rotate(-135deg); }
.faq-a { display: none; padding: 0 44px 24px 0; color: var(--text-soft); font-size: 0.97rem; }
.faq-a.open { display: block; }
.faq-a p + p { margin-top: 12px; }

/* ---------- Contact ---------- */
.contact { background: var(--pine-deep); color: var(--bone); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 16px; letter-spacing: -0.015em; }
.contact .contact-lede { color: rgba(244, 243, 238, 0.75); margin-bottom: 34px; max-width: 44ch; }
.contact-list { list-style: none; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: center; }
.contact-list .c-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(244, 243, 238, 0.08);
  border: 1px solid rgba(244, 243, 238, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.contact-list .c-icon svg { width: 21px; height: 21px; }
.contact-list a { color: var(--white); text-decoration: none; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.02rem; }
.contact-list a:hover { color: var(--amber); }
.contact-list small { display: block; color: rgba(244, 243, 238, 0.6); font-size: 0.82rem; }
.form-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 34px;
  color: var(--text);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.form-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.form-card .form-sub { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 22px; }
.form-card .form-error { color: #9b2c1f; font-size: 0.92rem; margin-top: 14px; }
.form-card .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 500; font-size: 0.88rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 0.97rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid rgba(16, 35, 28, 0.22);
  border-radius: 10px;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(20, 53, 42, 0.14);
}
.field textarea { resize: vertical; min-height: 104px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 0.8rem; color: var(--text-soft); margin-top: 14px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--pine); color: var(--bone); padding: 68px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin-bottom: 8px; letter-spacing: -0.015em; }
.cta-inner p { color: rgba(244, 243, 238, 0.75); max-width: 46ch; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: rgba(244, 243, 238, 0.65); padding: 56px 0 32px; font-size: 0.9rem; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 243, 238, 0.12);
}
.foot-brand { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--bone); font-size: 1.05rem; margin-bottom: 12px; }
.foot-logo {
  display: inline-block;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.foot-logo img { width: 132px; height: auto; display: block; }
.foot-grid h4 {
  color: var(--bone);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.foot-grid ul { list-style: none; display: grid; gap: 10px; }
.foot-grid a { text-decoration: none; transition: color 0.2s; }
.foot-grid a:hover { color: var(--amber); }
.foot-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(244, 243, 238, 0.5);
}
.foot-bottom a { color: rgba(244, 243, 238, 0.7); }
.foot-bottom a:hover { color: var(--amber); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  z-index: 60;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Reviews page ---------- */
.reviews-page { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.reviews-list { display: grid; gap: 18px; }
.reviews-side { position: sticky; top: 96px; }
.reviews-side .review-video { aspect-ratio: 9 / 16; }
.reviews-side-note { margin-top: 16px; font-size: 0.9rem; color: var(--text-soft); text-align: center; }
@media (max-width: 900px) {
  .reviews-page { grid-template-columns: 1fr; }
  .reviews-side { position: static; max-width: 420px; margin: 0 auto; width: 100%; }
}

/* ---------- FAQ page ---------- */
.faq-group + .faq-group { margin-top: 48px; }
.faq-group h2 { font-size: 1.35rem; margin-bottom: 14px; }
.faq-more { margin-top: 40px; color: var(--text-soft); }
.faq-more a { color: var(--pine); font-weight: 600; }

/* ---------- Plain text pages (privacy) ---------- */
.prose h2 { font-size: 1.2rem; margin: 32px 0 10px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--text); margin-bottom: 14px; max-width: 68ch; }
.prose a { color: var(--pine); font-weight: 500; }
.prose-note { color: var(--text-soft); font-size: 0.88rem; margin-top: 36px; }

/* ---------- Mobile call bar ----------
   Phones get a fixed Call / WhatsApp bar instead of the float. */
.call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--pine-deep);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}
.call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--amber);
}
.call-bar a.call-bar-wa { color: #fff; background: #1fb85a; }
.call-bar svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ---------- Reveal animation ----------
   Progressive enhancement: content is only hidden when JS is running,
   so a JS failure or a blocked script never hides the page content. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .svc, .btn, .wa-float { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid, .about-grid, .coverage-grid, .contact-grid, .split-cols { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail { grid-template-columns: 1fr; gap: 32px; padding: 44px 0; }
  .svc-detail.flip .svc-detail-media { order: 0; }
  .hero-grid { padding: 48px 24px 64px; }
  .hero-badge { left: 12px; bottom: 16px; }
  .hero-stack .stack-small { display: none; }
  .hero-stack .stack-main { aspect-ratio: 4 / 3.2; }
  .hero-bleed { min-height: min(78svh, 640px); padding: 72px 0; }
  .bleed-scrim::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 38, 32, 0.30);
  }
  .hero-light .bleed-video { left: 0; right: auto; width: 100%; }
  .hero-light .bleed-scrim::after { background: rgba(253, 253, 251, 0.62); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .coverage-band .tick-list { gap: 10px 24px; }
  .prob-cols { grid-template-columns: 1fr; }
  .about-grid .about-media { order: -1; }
  section { padding: 64px 0; }
  .stat-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-feature { grid-row: auto; }
  .cert-grid { grid-template-columns: 1fr; }
  .brands-row { justify-content: flex-start; gap: 20px 28px; }
  .brand-mark { font-size: 1.02rem; }
  .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .panel { padding: 26px 22px 28px; }
  .brand-name small { display: none; }
  .brand-name { font-size: 0.95rem; }
  /* Icon-only call button so the brand name is not squeezed */
  .nav-call span { display: none; }
  .nav-call { padding: 13px 16px; }
  .nav-call svg { width: 19px; height: 19px; }
  .call-bar { display: grid; }
  .wa-float { display: none; }
  body { padding-bottom: 60px; }
}
