/* ===================================================
   WO2 Environmental Diagnostics — shared styles
   Palette: navy #1B4E8C · sky #3E9BD6 · leaf #4F9A3C
            sand #F7F3EA · sand-deep #EDE6D4 · amber #E2963C
            ink #1C2B2E
   Type: Fraunces (display) / Inter (body) / JetBrains Mono (data)
=================================================== */

/* Root CSS variables define the shared color palette, spacing, border radius, and shadow used throughout the site. */
:root{
  --ink:#1C2B2E;
  --ink-soft:#4B5A5D;
  --navy:#1B4E8C;
  --navy-deep:#123863;
  --sky:#3E9BD6;
  --leaf:#4F9A3C;
  --sand:#F7F3EA;
  --sand-deep:#EDE6D4;
  --amber:#E2963C;
  --white:#FFFFFF;
  --line: rgba(28,43,46,0.12);
  --shadow: 0 20px 50px -25px rgba(18,56,99,0.35);
  --radius: 14px;
  --max: 1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  /* Base typography and page background for the whole site. */
  background:var(--sand);
  color:var(--ink);
  font-family:'Inter',system-ui,sans-serif;
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.wrap{max-width:var(--max);margin:0 auto;padding:0 28px;}

h1,h2,h3,h4{
  font-family:'Fraunces',Georgia,serif;
  font-weight:600;
  color:var(--navy-deep);
  line-height:1.15;
  margin:0 0 .5em;
  letter-spacing:-0.01em;
}
h1{font-size:clamp(2.4rem,5vw,3.6rem); font-optical-sizing:auto;}
h2{font-size:clamp(1.8rem,3.4vw,2.5rem);}
h3{font-size:1.3rem;}
@media (max-width: 480px){
  h1{font-size:clamp(1.8rem,4vw,2.2rem);}
  h2{font-size:clamp(1.3rem,3vw,1.8rem);}
  body{font-size:16px;}
}
p{margin:0 0 1em;color:var(--ink-soft);}
.eyebrow{
  font-family:'JetBrains Mono',monospace;
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--leaf);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:.5em;
  margin-bottom:.9em;
}
.eyebrow::before{
  content:"";
  width:18px;height:2px;
  background:var(--leaf);
  display:inline-block;
}

/* ---------- header ---------- */
/* Sticky page header with translucent glass effect and in-page navigation. */
header.site{
  position:sticky; top:0; z-index:100;
  border-bottom:1px solid var(--line);
  width:100%;
}
/* Frosted-glass fill lives on a pseudo-element, NOT on header.site itself.
   backdrop-filter (like transform/filter/perspective/contain) forces the
   element it's set on to become a new "containing block" for any
   position:fixed descendants. The mobile .nav-links menu below is
   position:fixed and lives inside <header>, so putting backdrop-filter
   directly on header.site was squashing that fixed menu down into the
   header's own ~65px height instead of letting it cover the full screen.
   Moving the blur to ::before keeps the visual effect without header.site
   (or any ancestor of .nav-links) triggering that containing-block rule. */
header.site::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(247,243,234,0.95);
  backdrop-filter:blur(8px);
  z-index:-1;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 28px;
  width:100%;
  position:relative;
}
.nav .brand{display:flex; align-items:center; gap:10px;}
.nav .brand img{height:100px; width:auto;}
.nav-links{
  display:flex; gap:2.1rem; align-items:center;
  font-size:.95rem; font-weight:500;
}
.nav-links a{
  color:var(--ink);
  position:relative;
  padding:4px 0;
}
.nav-links a.active{color:var(--navy);}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-2px;
  width:0; height:2px; background:var(--leaf);
  transition:width .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{width:100%;}
.nav-cta{
  background:var(--navy); color:var(--white)!important;
  padding:10px 20px; border-radius:999px; font-weight:600;
  font-size:.9rem;
}
.nav-cta:hover{background:var(--navy-deep);}
.nav-toggle{display:none; background:none; border:0; cursor:pointer; padding:6px;}
.nav-toggle span{display:block; width:24px; height:2px; background:var(--navy); margin:5px 0; transition:.2s;}

@media (max-width: 768px){
  .nav .brand img{height:80px; width:auto;}
  .nav-links{
    /* Mobile menu panel: hidden by default by moving it above the viewport. */
    /* top:0 + bottom:0 (not top:70px) so the panel's own height equals the
       FULL viewport height. translateY(-100%) then shifts it up by that
       full height and clears the header completely. Using top:70px here
       previously made translateY(-100%) fall short by exactly the header's
       height, leaving a sliver of the "hidden" panel sitting on top of the
       logo the whole time. padding-top pushes the visible links down below
       the header instead. */
    position:fixed; top:0; left:0; right:0; bottom:0;
    background:var(--sand); z-index:90;
    flex-direction:column; padding:86px 28px 1.5rem; gap:1rem;
    transform:translateY(-100%); transition:transform .25s ease-out;
    overflow-y:auto;
  }
  .nav-links.open{transform:translateY(0);}
  .nav-links a{padding:10px 0; font-size:1rem;}
  .nav-cta{width:100%; text-align:center; padding:12px 20px;}
  .nav-toggle{display:block; z-index:95; position:relative;}
  .nav-toggle.open span:nth-child(1){transform:rotate(45deg) translate(6px, 6px);}
  .nav-toggle.open span:nth-child(2){opacity:0;}
  .nav-toggle.open span:nth-child(3){transform:rotate(-45deg) translate(5px, -5px);}
}

@media (max-width: 480px){
  .wrap{padding:0 16px;}
  .nav{padding:12px 16px;}
  .nav .brand img{height:52px;}
  .nav-links{padding-top:72px;}
}

/* ---------- buttons ---------- */
/* Reusable button styles that can be combined with utility classes. */
.btn{
  display:inline-flex; align-items:center; gap:.5em;
  padding:13px 26px; border-radius:999px;
  font-weight:600; font-size:.95rem;
  border:1px solid transparent; cursor:pointer;
}
.btn-primary{background:var(--navy); color:var(--white);}
.btn-primary:hover{background:var(--navy-deep);}
.btn-ghost{border-color:var(--navy); color:var(--navy);}
.btn-ghost:hover{background:var(--navy); color:var(--white);}
.btn-amber{background:var(--amber); color:var(--white);}
.btn-amber:hover{background:#c97e2a;}

/* ---------- hero ---------- */
/* Top section of the homepage, including headline, CTA buttons, and sample report card. */
.hero{padding:76px 0 40px;}
.hero-grid{
  display:block;
}
@media (max-width: 768px){
  .hero-grid{grid-template-columns:1fr; gap:32px;}
  .hero{padding:48px 0 24px;}
}
.hero-tagline{
  font-family:'JetBrains Mono',monospace; font-size:.85rem;
  color:var(--sky); letter-spacing:.06em; margin-bottom:1em;
}
.hero p.lead{font-size:1.15rem; max-width:46ch;}
.hero-actions{display:flex; gap:14px; margin-top:1.8em; flex-wrap:wrap;}
@media (max-width: 480px){
  .hero-actions{flex-direction:column;}
  .btn{width:100%; text-align:center; justify-content:center;}
}
.hero-trust{
  margin-top:2.6em; display:flex; gap:28px; flex-wrap:wrap;
  font-size:.85rem; color:var(--ink-soft);
}
.hero-trust b{color:var(--navy-deep); font-family:'Fraunces',serif; font-size:1.1rem; display:block;}
@media (max-width: 480px){
  .hero-trust{gap:16px; font-size:.8rem;}
  .hero-trust b{font-size:.95rem;}
}

.hero-photo{
  position:relative;
  overflow:hidden;
  background:var(--navy-deep) url('hero-bg.jpeg') center 30%/cover no-repeat;
  min-height:600px;
  display:flex;
  align-items:center;
  padding:120px 0;
}
.hero-photo::before, .hero-photo::after{display:none;} /* hide the glow blobs over a photo */
.hero-photo-overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(18,56,99,0.92) 0%, rgba(18,56,99,0.7) 50%, rgba(18,56,99,0.4) 80%);
}
.hero-photo-content{position:relative; z-index:1; width:100%;}
.hero-photo h1, .hero-photo .lead{color:#fff; max-width:720px;}
.hero-photo .hero-tagline{color:#8FC7EE;}
.btn-outline-light{border:1px solid #fff; color:#fff; background:transparent;}
.btn-outline-light:hover{background:#fff; color:var(--navy-deep);}
@media (max-width:768px){
  .hero-photo{min-height:520px; padding:100px 0; background-position: 68% 25%;}
}


.btn-outline-light{
  border:1px solid #fff; color:#fff; background:transparent;
}
.btn-outline-light:hover{background:#fff; color:var(--navy-deep);}
@media (max-width:768px){
  .hero-photo{padding:110px 0 90px;}
}



/* signature: sample report card */
.report-card{
  background:var(--white); border-radius:var(--radius);
  box-shadow:var(--shadow); border:1px solid var(--line);
  padding:26px 26px 20px; position:relative;
}
.report-card::before{
  content:"SAMPLE REPORT"; position:absolute; top:-11px; left:22px;
  background:var(--leaf); color:#fff; font-family:'JetBrains Mono',monospace;
  font-size:.62rem; letter-spacing:.12em; padding:4px 10px; border-radius:999px;
}
.report-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:13px 0; border-bottom:1px dashed var(--line);
  font-family:'JetBrains Mono',monospace; font-size:.85rem;
}
.report-row:last-child{border-bottom:none;}
.report-label{color:var(--ink-soft);}
.report-value{display:flex; align-items:center; gap:8px; font-weight:600; color:var(--navy-deep);}
@media (max-width: 480px){
  .report-row{flex-direction:column; align-items:flex-start; gap:6px;}
  .report-row{font-size:.75rem;}
}
.dot{width:9px; height:9px; border-radius:50%;}
.dot.good{background:var(--leaf);}
.dot.watch{background:var(--amber);}
.report-foot{
  margin-top:14px; padding-top:14px; border-top:1px solid var(--line);
  font-size:.78rem; color:var(--ink-soft); font-style:italic;
}

/* ---------- wave divider ---------- */
/* Decorative SVG divider between sections. */
.wave{display:block; width:100%; height:44px;}

/* ---------- sections ---------- */
/* Generic section spacing for page layout. */
section{padding:64px 0;}
@media (max-width: 768px){section{padding:40px 0;}}
@media (max-width: 480px){section{padding:32px 0;}}
.section-head{max-width:640px; margin-bottom:2.6rem;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}

.band-sand-deep{background:var(--sand-deep);}
.band-navy{background:var(--navy-deep); color:#fff;}
.band-navy h2, .band-navy h3{color:#fff;}
.band-navy p{color:#CFE0F2;}

/* service cards */
.grid-cards{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
@media (max-width:900px){.grid-cards{grid-template-columns:1fr 1fr;}}
@media (max-width:620px){.grid-cards{grid-template-columns:1fr;}}
.card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px 24px; box-shadow:0 12px 30px -22px rgba(18,56,99,.4);
  transition:transform .18s ease, box-shadow .18s ease;
}
.card:hover{transform:translateY(-4px); box-shadow:var(--shadow);}
.card .icon{
  width:46px;height:46px;border-radius:12px;
  background:var(--sand-deep); display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.card .icon svg{width:24px;height:24px;stroke:var(--navy);}
.card ul{margin:.6em 0 0; padding-left:1.1em; color:var(--ink-soft); font-size:.92rem;}
.card ul li{margin-bottom:.35em;}
.card a.more{
  display:inline-block; margin-top:1em; font-size:.85rem; font-weight:600; color:var(--navy);
  border-bottom:1px solid var(--navy);
}

/* two column */
.two-col{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;}
@media (max-width:820px){.two-col{grid-template-columns:1fr;}}

/* value chips */
.chip-row{display:flex; flex-wrap:wrap; gap:10px;}
.chip{
  background:var(--white); border:1px solid var(--line); border-radius:999px;
  padding:8px 16px; font-size:.85rem; font-weight:500; color:var(--navy-deep);
  display:flex; align-items:center; gap:8px;
}
.chip .dotc{width:7px;height:7px;border-radius:50%; background:var(--leaf);}

/* stats */
.stats{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
@media (max-width:760px){.stats{grid-template-columns:1fr 1fr;}}
@media (max-width:480px){.stats{grid-template-columns:1fr;}}
.stat b{
  font-family:'Fraunces',serif; font-size:2.2rem; color:var(--white); display:block;
}
.stat span{font-size:.85rem; color:#CFE0F2;}
.stat{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:var(--radius);
  padding:28px 22px;
  text-align:center;
  transition:transform .2s ease, background .2s ease;
}
.stat:hover{background:rgba(255,255,255,0.1); transform:translateY(-4px);}
.stat-icon{
  width:44px; height:44px; border-radius:12px;
  background:rgba(255,255,255,0.12);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 14px;
}
.stat-icon svg{width:22px; height:22px; stroke:#8FC7EE;}
.stat b{font-family:'Fraunces',serif; font-size:1.3rem; color:var(--white); display:block; margin-bottom:.3em;}
.stat span{font-size:.85rem; color:#CFE0F2;}

/* CTA band */
.cta-band{
  border-radius:20px; background:linear-gradient(135deg,var(--navy) 0%, var(--navy-deep) 100%);
  color:#fff; padding:52px 44px; display:flex; justify-content:space-between; align-items:center; gap:32px;
}
.cta-band h2{color:#fff; margin-bottom:.3em;}
.cta-band p{color:#CFE0F2; margin:0;}
@media (max-width:760px){.cta-band{flex-direction:column; text-align:center;}}
@media (max-width:480px){.cta-band{padding:32px 24px;}}

/* footer */
footer.site{
  background:var(--navy-deep); color:#CFE0F2; padding:52px 0 28px; margin-top:40px;
}
@media (max-width:480px){footer.site{padding:40px 0 20px;}}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px;}
@media (max-width:760px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:480px){.footer-grid{grid-template-columns:1fr;}}
footer.site h4{color:#fff; font-family:'Inter',sans-serif; font-size:.9rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:1em;}
footer.site a{color:#CFE0F2; display:block; margin-bottom:.6em; font-size:.92rem;}
footer.site a:hover{color:#fff;}
.footer-logo-badge{
  display:inline-block;
  background:var(--white);
  padding:10px 16px;
  border-radius:12px;
  margin-bottom:16px;
  line-height:0;
}

.footer-brand img{height:50px; display:block;}

.social-row{display:flex; gap:10px; margin-top:16px;}
.social-icon{
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease;
}
.social-icon svg{width:18px; height:18px; stroke:#CFE0F2; color:#CFE0F2;}
.social-icon:hover{background:var(--leaf);}
.social-icon:hover svg{stroke:#fff; color:#fff;}


.footer-bottom{
  margin-top:40px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12);
  font-size:.8rem; color:#9FB6CE; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}

/* page hero (inner pages) */
.page-hero{padding:56px 0 20px;}
.page-hero .eyebrow{color:var(--sky);}
.breadcrumb{font-size:.82rem; color:var(--ink-soft); margin-bottom:1em;}
.breadcrumb a{color:var(--navy); font-weight:600;}

/* about page */
.value-list{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
@media (max-width:700px){.value-list{grid-template-columns:1fr;}}
.value-item{display:flex; gap:14px; align-items:flex-start;}
.value-item .num{
  font-family:'JetBrains Mono',monospace; font-size:.8rem; color:var(--leaf);
  border:1px solid var(--leaf); border-radius:50%; width:30px; height:30px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px;
}

/* service detail blocks */
.service-block{
  border-top:1px solid var(--line); padding:44px 0; display:grid; grid-template-columns:.9fr 1.4fr; gap:40px;
}
.service-block > div:last-child{
  display:flex;
  align-items:center;
}

.service-block:last-child{border-bottom:1px solid var(--line);}
@media (max-width:820px){.service-block{grid-template-columns:1fr; gap:16px;}}
.service-block .tag{
  font-family:'JetBrains Mono',monospace; font-size:.72rem; letter-spacing:.1em;
  color:var(--sky); text-transform:uppercase; margin-bottom:.6em; display:block;
}


/* BEFORE
.service-block ul{columns:2; column-gap:28px; padding-left:1.2em; color:var(--ink-soft);}
@media (max-width:560px){.service-block ul{columns:1;}}
.service-block ul li{margin-bottom:.5em; break-inside:avoid;} */

/* AFTER */
.service-block ul{
  columns:2; column-gap:36px; padding-left:0; color:var(--ink-soft);
  font-size:1.12rem; line-height:1.65;
}
@media (max-width:560px){.service-block ul{columns:1;}}
.service-block ul li{
  list-style:none; position:relative; padding-left:30px;
  margin-bottom:1.3em; break-inside:avoid;
}
.service-block ul li::before{
  content:"✓"; position:absolute; left:0; top:0;
  color:var(--leaf); font-weight:700; font-size:1.05em;
}


.price-tag{
  display:inline-block; margin-top:1em; font-family:'JetBrains Mono',monospace;
  font-size:.82rem; background:var(--sand-deep); padding:6px 14px; border-radius:999px; color:var(--navy-deep);
}

/* pricing table */
.price-table{width:100%; border-collapse:collapse; margin-top:1em;}
.price-table th, .price-table td{
  text-align:left; padding:14px 16px; border-bottom:1px solid var(--line); font-size:.92rem;
}
.price-table th{font-family:'JetBrains Mono',monospace; font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:var(--ink-soft);}
.price-table td:last-child, .price-table th:last-child{text-align:right; font-family:'JetBrains Mono',monospace; color:var(--navy-deep); font-weight:600;}

/* blog */
.post-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
@media (max-width:900px){.post-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:620px){.post-grid{grid-template-columns:1fr;}}
.post-card{background:var(--white); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; display:flex; flex-direction:column;}
.post-card .post-top{
  padding:22px 22px 0;
}
.post-card .post-cat{
  font-family:'JetBrains Mono',monospace; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--leaf); font-weight:700;
}
.post-card .post-body{padding:14px 22px 24px; flex:1; display:flex; flex-direction:column;}
.post-card h3{margin-bottom:.4em; font-size:1.15rem;}
.post-card .read{margin-top:auto; font-weight:600; font-size:.85rem; color:var(--navy);}

.post-article{max-width:760px; margin:0 auto;}
.post-article h1{margin-bottom:.3em;}
.post-meta{font-family:'JetBrains Mono',monospace; font-size:.78rem; color:var(--ink-soft); margin-bottom:2em;}
.post-article h2{font-size:1.5rem; margin-top:1.6em;}
.post-article p, .post-article li{color:var(--ink-soft); font-size:1.02rem;}
.post-article ul{padding-left:1.3em;}
.pullquote{
  border-left:3px solid var(--leaf); padding:6px 0 6px 20px; margin:2em 0;
  font-family:'Fraunces',serif; font-size:1.25rem; color:var(--navy-deep);
}

/* contact */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px;}
@media (max-width:820px){.contact-grid{grid-template-columns:1fr;}}
@media (max-width:480px){.contact-grid{gap:32px;}}
.form-field{margin-bottom:1.2em;}
.form-field label{display:block; font-size:.85rem; font-weight:600; margin-bottom:.4em; color:var(--navy-deep);}
.form-field input, .form-field textarea, .form-field select{
  width:100%; padding:12px 14px; border-radius:9px; border:1px solid var(--line);
  font-family:'Inter',sans-serif; font-size:.95rem; background:#fff; color:var(--ink);
}
.form-field textarea{min-height:120px; resize:vertical;}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  outline:2px solid var(--sky); outline-offset:1px;
}
.contact-info-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:28px; margin-bottom:18px;
}
.contact-info-card .row{display:flex; gap:14px; align-items:flex-start; margin-bottom:16px;}
.contact-info-card .row:last-child{margin-bottom:0;}
.contact-info-card .row svg{width:20px;height:20px; stroke:var(--navy); flex-shrink:0; margin-top:2px;}
.contact-info-card .row b{display:block; color:var(--navy-deep); font-size:.92rem;}
.contact-info-card .row span, .contact-info-card .row a{font-size:.9rem; color:var(--ink-soft);}
.notice{
  background:var(--sand-deep); border-radius:10px; padding:14px 18px; font-size:.85rem; color:var(--ink-soft);
  border-left:3px solid var(--amber);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  .card{transition:none;}
}

/* focus visibility */
a:focus-visible, button:focus-visible{outline:2px solid var(--sky); outline-offset:2px;}

.map-card{
  border-radius:var(--radius);
  overflow:hidden;
  height:280px;
}

/* ---------- About page photo ---------- */
.about-photo{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:var(--sand-deep);
  aspect-ratio:4/5;
}
.about-photo img{width:100%; height:100%; object-fit:cover; object-position:35% 35%; display:block;}
.about-photo-caption{
  position:absolute; left:0; right:0; bottom:0;
  padding:20px 22px 16px;
  background:linear-gradient(to top, rgba(18,56,99,0.85) 0%, rgba(18,56,99,0) 100%);
  color:#fff; font-size:.85rem; font-weight:500;
}
@media (max-width:820px){
  .about-photo{aspect-ratio:16/9;}
}

/* ---------- Floating call button (site-wide) ---------- */
.floating-call{
  position:fixed; bottom:24px; right:24px; z-index:200;
  width:58px; height:58px; border-radius:50%;
  background:var(--amber); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -10px rgba(226,150,60,0.6);
  transition:transform .2s ease, opacity .2s ease;
}
.floating-call svg{width:26px; height:26px; stroke:#fff; position:relative; z-index:1;}
.floating-call:hover{transform:scale(1.08);}
.floating-call.is-hidden{opacity:0; pointer-events:none; transform:scale(.8);}
.floating-call-pulse{
  position:absolute; inset:0; border-radius:50%;
  background:var(--amber); opacity:.55;
  animation:call-pulse 2.2s ease-out infinite;
}
@keyframes call-pulse{
  0%{transform:scale(1); opacity:.55;}
  100%{transform:scale(1.7); opacity:0;}
}
@media (prefers-reduced-motion: reduce){
  .floating-call-pulse{animation:none; display:none;}
}
@media (max-width:480px){
  .floating-call{bottom:16px; right:16px; width:52px; height:52px;}
  .floating-call svg{width:22px; height:22px;}
}


.process-steps{position:relative;}
.process-step{display:flex; gap:18px; position:relative; padding-bottom:28px;}
.process-step:last-child{padding-bottom:0;}
.process-step:not(:last-child)::before{
  content:""; position:absolute; left:19px; top:40px; bottom:-8px;
  width:2px; background:var(--line);
}
.process-num{
  flex-shrink:0; width:40px; height:40px; border-radius:50%;
  background:var(--navy); color:#fff; font-family:'Fraunces',serif; font-weight:600;
  display:flex; align-items:center; justify-content:center;
  font-size:1.05rem; position:relative; z-index:1;
}
.process-content h3{font-size:1.05rem; margin-bottom:.25em;}
.process-content p{font-size:.9rem; margin-bottom:0;}
.process-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:32px 30px;
}

/* ---------- wide supporting photo (Services page) ---------- */
.wide-photo{
  position:relative; margin-top:16px;
  border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow);
  aspect-ratio:16/9;
}
.wide-photo img{width:100%; height:100%; object-fit:cover; display:block;}
.wide-photo-caption{
  position:absolute; left:0; right:0; bottom:0;
  padding:18px 22px 14px;
  background:linear-gradient(to top, rgba(18,56,99,0.85) 0%, rgba(18,56,99,0) 100%);
  color:#fff; font-size:.85rem; font-weight:500;
}

/* ---------- card photo variant (Who We Serve cards) ---------- */
.card-photo{padding:0; overflow:hidden;}
.card-photo-frame{aspect-ratio:4/3; overflow:hidden;}
.card-photo-frame img{width:100%; height:100%; object-fit:cover; display:block;}
.card-photo h3, .card-photo p{padding-left:24px; padding-right:24px;}
.card-photo h3{margin-top:20px;}
.card-photo p{padding-bottom:24px;}

/* ---------- Why Choose Us: credential cards ---------- */
.credential-stack{display:flex; flex-direction:column; gap:20px;}
.credential-card{
  display:flex; gap:16px; align-items:flex-start;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:24px; box-shadow:var(--shadow);
}
.credential-icon{
  width:50px; height:50px; border-radius:12px; background:var(--sand-deep);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.credential-icon svg{width:26px; height:26px; stroke:var(--navy);}
.credential-card b{display:block; color:var(--navy-deep); font-family:'Fraunces',serif; font-size:1.05rem; margin-bottom:.3em;}
.credential-card span{font-size:.88rem; color:var(--ink-soft);}

/* ---------- Why Choose Us: comparison table ---------- */
.compare-table-wrap{
  overflow-x:auto; background:var(--white); border-radius:var(--radius);
  box-shadow:var(--shadow); border:1px solid var(--line);
}
.compare-table{width:100%; border-collapse:collapse; min-width:600px;}
.compare-table th, .compare-table td{
  padding:16px 20px; text-align:center; border-bottom:1px solid var(--line); font-size:.92rem;
}
.compare-table td:first-child, .compare-table th:first-child{text-align:left; font-weight:600; color:var(--navy-deep);}
.compare-table th{font-family:'Fraunces',serif; font-size:1rem; color:var(--navy-deep);}
.compare-table th.us{background:rgba(79,154,60,0.08); color:var(--leaf);}
.compare-table td.us{background:rgba(79,154,60,0.06);}
.compare-table td.us svg{stroke:var(--leaf); width:22px; height:22px;}
.compare-table tbody tr:last-child td{border-bottom:none;}
@media (max-width:700px){
  .compare-table-wrap{overflow-x:visible;}
  .compare-table{min-width:0; width:100%;}
  .compare-table thead{display:none;}
  .compare-table, .compare-table tbody, .compare-table tr, .compare-table td{
    display:block; width:100%;
  }
  .compare-table tr{
    display:flex; align-items:center; justify-content:space-between;
    padding:14px 16px; border-bottom:1px solid var(--line); gap:12px;
  }
  .compare-table tbody tr:last-child{border-bottom:none;}
  .compare-table td{
    padding:0; border-bottom:none; width:auto;
  }
  .compare-table td:first-child{
    text-align:left; flex:1; font-size:.88rem;
  }
  .compare-table td.us{
    background:none; flex:0 0 auto;
    display:flex; align-items:center; justify-content:center;
    width:32px; height:32px; border-radius:50%;
    background:rgba(79,154,60,0.12);
  }
  .compare-table td.us svg{width:18px; height:18px;}
}