/* ============================================================
   Srishti Enterprise — Invisible Grill & Mosquito Net
   Bootstrap 5 build — custom theme layer
   Design system: steel-navy + fresh teal, Sora / Figtree
   Signature: near-invisible "grill wire" hairlines
   ============================================================ */

:root {
  /* Palette */
  --steel-900: #0E2A3F;
  --steel-800: #123249;
  --steel-700: #16466A;
  --steel-600: #1E5A85;
  --teal-600:  #0E8E76;
  --teal-500:  #12A386;
  --teal-400:  #22BB9C;
  --teal-050:  #E7F6F2;
  --amber:     #F2A93B;
  --ink:       #10222E;
  --muted:     #56707E;
  --paper:     #F5F8FA;
  --paper-2:   #EDF2F5;
  --white:     #FFFFFF;
  --line:      rgba(14, 42, 63, 0.10);
  --line-2:    rgba(14, 42, 63, 0.16);

  /* Type */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;

  /* Radius / shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(14, 42, 63, 0.06);
  --shadow-md: 0 12px 34px rgba(14, 42, 63, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 42, 63, 0.16);

  /* Rhythm */
  --section-y: 92px;

  --grill: repeating-linear-gradient(90deg,
            transparent 0, transparent 46px,
            var(--line) 46px, var(--line) 47px);

  /* Bootstrap overrides */
  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--paper);
}

/* -------------------------------------------------- base */
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--steel-900); line-height: 1.12; margin: 0; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }

/* keep the site to a 1200px rhythm like the original */
.container { max-width: 1200px; }

/* -------------------------------------------------- utility */
.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--white); }
.section--paper2 { background: var(--paper-2); }
.section--steel { background: var(--steel-900); color: #DCE7EE; }
.section--steel h2, .section--steel h3 { color: var(--white); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--teal-500); display: inline-block; }
.section--steel .eyebrow { color: var(--teal-400); }

.h-xl { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.h-lg { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.h-md { font-size: clamp(1.3rem, 2vw, 1.6rem); }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }
.section--steel .lead { color: #A9BDC9; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.text-center { margin-inline: auto; }

/* -------------------------------------------------- buttons (override Bootstrap) */
.btn {
  --bs-btn-padding-y: 14px; --bs-btn-padding-x: 26px;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  --bs-btn-bg: var(--teal-500); --bs-btn-border-color: var(--teal-500);
  --bs-btn-hover-bg: var(--teal-400); --bs-btn-hover-border-color: var(--teal-400);
  --bs-btn-active-bg: var(--teal-400); --bs-btn-color: #04231C; --bs-btn-hover-color: #04231C;
  background: var(--teal-500); color: #04231C; box-shadow: 0 8px 22px rgba(18,163,134,.32);
}
.btn-primary:hover { background: var(--teal-400); color: #04231C; transform: translateY(-2px); }
.btn-dark { background: var(--steel-800); color: #fff; }
.btn-dark:hover { background: var(--steel-700); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--steel-800); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--steel-700); background: var(--white); color: var(--steel-800); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }
.btn-lg { --bs-btn-padding-y: 17px; --bs-btn-padding-x: 32px; padding: 17px 32px; font-size: 1.02rem; }

/* ============================================================ topbar */
.topbar {
  background: var(--steel-900); color: #C6D6E0;
  font-size: 0.85rem; font-family: var(--font-display); font-weight: 400;
  position: relative; z-index: 1030;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 18px; min-height: 42px; }
.topbar a { color: #DDE9F0; }
.topbar a:hover { color: var(--teal-400); }
.topbar__left { display: flex; gap: 22px; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 14px; height: 14px; color: var(--teal-400); }
.topbar__right { display: inline-flex; align-items: center; gap: 8px; opacity: .92; }
.topbar__right svg { width: 14px; height: 14px; color: var(--teal-400); }
@media (max-width: 860px){ .topbar__left .topbar__item--hours { display: none; } }
@media (max-width: 620px){ .topbar__right { display: none; } .topbar__left { gap: 16px; } }

/* ============================================================ header / navbar */
.site-header {
  position: sticky; top: 0; z-index: 1040;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
  padding: 0;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header .navbar { min-height: 76px; padding-top: 0; padding-bottom: 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; padding: 0; }
.brand__logo { width: 230px; height: auto; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, var(--steel-700), var(--teal-500));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.brand__mark::after {
  content:""; position:absolute; inset:0;
  background: repeating-linear-gradient(90deg, transparent 0 6px, rgba(255,255,255,.28) 6px 6.7px);
}
.brand__mark span { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.25rem; position: relative; z-index:1; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; color: var(--steel-900); letter-spacing: -0.02em; }
.brand__tag { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }

.site-header .navbar-nav { gap: 4px; }
.site-header .navbar-nav .nav-link {
  font-family: var(--font-display); font-weight: 500; font-size: 0.94rem;
  color: var(--steel-800); padding: 10px 10px; border-radius: 8px; position: relative;
}
.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link.active { color: var(--teal-600); }
.site-header .navbar-nav .nav-link.active::after {
  content:""; position:absolute; left:14px; right:14px; bottom:4px; height:2px;
  background: var(--teal-500); border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; color: var(--steel-900); }
.header-phone svg { width: 30px; height: 30px; padding: 7px; border-radius: 9px; background: var(--teal-050); color: var(--teal-600); }

/* hamburger */
.navbar-toggler { border: 0; padding: 8px; box-shadow: none !important; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler .nt-bar { display: block; width: 24px; height: 2px; background: var(--steel-900); margin: 5px 0; border-radius: 2px; transition: .25s; }
.navbar-toggler[aria-expanded="true"] .nt-bar:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .nt-bar:nth-child(2){ opacity: 0; }
.navbar-toggler[aria-expanded="true"] .nt-bar:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991.98px){
  .header-cta .header-phone,
  .header-cta .cu-ds-nn-b { display: none !important; }
  .site-header .navbar-collapse {
    background: #fff; margin: 0 -12px; padding: 14px 22px 26px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .site-header .navbar-nav .nav-link { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .site-header .navbar-nav .nav-link.active::after { display: none; }
  .site-header .navbar-nav .nav-link.active { background: var(--teal-050); border-radius: 8px; }
}

/* ============================================================ hero (Bootstrap carousel) */
.hero .carousel-item {
  height: clamp(520px, 78vh, 760px);
  background-size: cover; background-position: center;
  position: relative;
}
.hero .carousel-item > .container {
  position: relative; z-index: 2;
  height: 100%; display: flex; align-items: center;
}
.hero .carousel-item::before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(9,26,38,.92) 0%, rgba(9,26,38,.72) 42%, rgba(9,26,38,.30) 100%);
}
.hero .carousel-item::after { content:""; position:absolute; inset:0; background: var(--grill); opacity: .5; mix-blend-mode: overlay; }
.hero__inner { position: relative; z-index: 2; max-width: 680px; color: #fff; padding-block: 40px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display);
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  background: rgba(18,163,134,.18); border: 1px solid rgba(34,187,156,.4);
  color: #7EE3CC; padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero__badge svg { width: 15px; height: 15px; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.06; margin-bottom: 18px; }
.hero h1 .accent { color: var(--teal-400); }
.hero__sub { font-size: 1.16rem; color: #C7D6DF; max-width: 54ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .carousel-indicators { margin-bottom: 22px; z-index: 3; }
.hero .carousel-indicators [data-bs-target] {
  width: 11px; height: 11px; border-radius: 50%; border: 0; opacity: 1;
  background: rgba(255,255,255,.4); transition: .25s; margin-inline: 5px;
}
.hero .carousel-indicators .active { background: var(--teal-400); width: 30px; border-radius: 6px; }

.hero__strip { background: var(--steel-800); }
.hero__strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero__strip-item { display: flex; align-items: center; gap: 14px; padding: 22px 18px; color: #DBE7EE; border-left: 1px solid rgba(255,255,255,.08); }
.hero__strip-item:first-child { border-left: 0; }
.hero__strip-item svg { width: 30px; height: 30px; color: var(--teal-400); flex: none; }
.hero__strip-item b { display:block; font-family: var(--font-display); color: #fff; font-size: 1rem; }
.hero__strip-item small { font-size: .82rem; opacity: .78; }
@media (max-width: 860px){ .hero__strip .container { grid-template-columns: repeat(2,1fr); } .hero__strip-item:nth-child(3){ border-left:0; } }
@media (max-width: 480px){ .hero__strip .container { grid-template-columns: 1fr; } .hero__strip-item { border-left:0; border-top: 1px solid rgba(255,255,255,.08);} .hero__strip-item:first-child{border-top:0;} }

/* ============================================================ category split */
.cat {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 380px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-md);
  background-size: cover; background-position: center; isolation: isolate;
}
.cat::before { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(9,26,38,.94) 8%, rgba(9,26,38,.35) 62%, rgba(9,26,38,.1) 100%); z-index:-1; }
.cat__body { padding: 30px 30px 32px; width: 100%; }
.cat__tag { font-family: var(--font-display); font-size: .76rem; font-weight:600; letter-spacing:.14em; text-transform: uppercase; color: var(--teal-400); }
.cat h3 { color:#fff; font-size: 1.7rem; margin: 8px 0 10px; }
.cat p { color: #C6D6DF; margin-bottom: 18px; }
.cat__chips { display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 22px; }
.cat__chips span { font-size:.8rem; background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); padding:5px 11px; border-radius:999px; }
.cat__link { display:inline-flex; align-items:center; gap:8px; font-family:var(--font-display); font-weight:600; color:#fff; }
.cat__link svg { width:18px; height:18px; transition: transform .2s ease; color: var(--teal-400); }
.cat:hover .cat__link svg { transform: translateX(5px); }

/* ============================================================ features / why us */
.feat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 26px; height: 100%; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.feat__ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-050); color: var(--teal-600); margin-bottom: 18px; }
.feat__ic svg { width: 26px; height: 26px; }
.feat h3 { font-size: 1.16rem; margin-bottom: 8px; }
.feat p { color: var(--muted); margin: 0; font-size: .97rem; }
.section--steel .feat { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.section--steel .feat h3 { color: #fff; }
.section--steel .feat p { color: #A9BDC9; }

/* ============================================================ type cards */
.type-card { background: var(--white); border:1px solid var(--line); border-radius: var(--r-md); padding: 26px; height: 100%; transition: .2s; }
.type-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.type-card__ic { width:50px; height:50px; border-radius: 13px; background: var(--teal-050); color: var(--teal-600); display:grid; place-items:center; margin-bottom: 16px; }
.type-card__ic svg { width: 25px; height: 25px; }
.type-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.type-card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ============================================================ stats / counters */
.stat { text-align: center; padding: 12px; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem, 4vw, 3rem); color: var(--white); line-height: 1; }
.stat__num .plus { color: var(--teal-400); }
.stat__label { color: #A9BDC9; font-size: .95rem; margin-top: 8px; }

/* ============================================================ process */
.step { position: relative; padding: 28px 22px; height: 100%; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); }
.step__n {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: #fff;
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--steel-800); margin-bottom: 16px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ============================================================ areas */
.areas { display:flex; flex-wrap:wrap; gap: 14px; }
.area-pill {
  display:inline-flex; align-items:center; gap:9px; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px; padding: 12px 20px;
  font-family: var(--font-display); font-weight: 600; color: var(--steel-800); font-size: .98rem;
}
.area-pill svg { width: 17px; height: 17px; color: var(--teal-600); }

/* ============================================================ gallery */
.gallery__item {
  aspect-ratio: 1/1; border-radius: var(--r-sm); overflow: hidden; cursor: pointer;
  background: var(--paper-2); background-size: cover; background-position: center; position: relative;
}
.gallery__item::after {
  content:""; position:absolute; inset:0; background: rgba(9,26,38,.0);
  transition: background .25s ease;
}
.gallery__item:hover::after { background: rgba(9,26,38,.35); }
.gallery__item .zoom { position:absolute; inset:0; display:grid; place-items:center; opacity:0; transition:.25s; z-index:2; }
.gallery__item .zoom svg { width: 34px; height: 34px; color: #fff; }
.gallery__item:hover .zoom { opacity: 1; }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(6,18,26,.92); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center; }
.lightbox__close { top: 22px; right: 22px; width: 46px; height: 46px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lightbox__nav.prev { left: 22px; } .lightbox__nav.next { right: 22px; }
.lightbox__close svg, .lightbox__nav svg { width: 22px; height: 22px; }
.lightbox button:hover { background: rgba(255,255,255,.25); }

/* ============================================================ testimonials */
.tst { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 26px; height: 100%; }
.tst__stars { display:flex; gap: 3px; color: var(--amber); margin-bottom: 14px; }
.tst__stars svg { width: 18px; height: 18px; }
.tst p { color: var(--ink); font-size: 1rem; }
.tst__who { display:flex; align-items:center; gap: 12px; margin-top: 18px; }
.tst__av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--steel-700),var(--teal-500)); color:#fff; display:grid; place-items:center; font-family:var(--font-display); font-weight:700; }
.tst__who b { font-family: var(--font-display); font-size: .98rem; color: var(--steel-900); display:block; }
.tst__who small { color: var(--muted); }

/* ============================================================ FAQ (Bootstrap accordion) */
.faq { max-width: 820px; margin-inline: auto; }
.faq .accordion-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm) !important; margin-bottom: 14px; overflow: hidden; }
.faq .accordion-button {
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--steel-900);
  padding: 20px 22px; background: var(--white); box-shadow: none;
}
.faq .accordion-button:not(.collapsed) { color: var(--steel-900); background: var(--white); box-shadow: none; }
.faq .accordion-button:focus { box-shadow: 0 0 0 3px rgba(18,163,134,.15); }
.faq .accordion-button::after {
  width: 20px; height: 20px; background-size: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E8E76' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}
.faq .accordion-button:not(.collapsed)::after { transform: rotate(45deg); }
.faq .accordion-body { padding: 0 22px 20px; color: var(--muted); }

/* ============================================================ CTA band */
.ctaband { background: linear-gradient(120deg, var(--steel-900), var(--steel-700)); color:#fff; border-radius: var(--r-lg); padding: 52px; position: relative; overflow: hidden; }
.ctaband::after { content:""; position:absolute; inset:0; background: var(--grill); opacity:.5; }
.ctaband__in { position: relative; z-index:1; display:flex; align-items:center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.ctaband h2 { color:#fff; font-size: clamp(1.6rem,3vw,2.3rem); margin-bottom: 8px; }
.ctaband p { color:#B9CDD8; margin: 0; }
.ctaband__btns { display:flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 620px){ .ctaband { padding: 36px 26px; } }

/* ============================================================ contact / form */
.info-block { display:flex; gap: 16px; margin-bottom: 24px; }
.info-block__ic { width: 50px; height: 50px; border-radius: 13px; background: var(--teal-050); color: var(--teal-600); display:grid; place-items:center; flex:none; }
.info-block__ic svg { width: 22px; height: 22px; }
.info-block h4 { font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 3px; }
.info-block p { margin: 0; color: var(--muted); }
.info-block a { color: var(--steel-800); font-weight: 600; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.form-card .form-label { font-family: var(--font-display); font-weight: 500; font-size: .88rem; margin-bottom: 7px; color: var(--steel-800); }
.form-card .form-control, .form-card .form-select {
  padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--paper);
}
.form-card textarea.form-control { min-height: 96px; resize: vertical; }
.form-card .form-control:focus, .form-card .form-select:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(18,163,134,.15); background:#fff; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 12px; text-align: center; }

.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--r-md); margin-top: 30px; filter: grayscale(.15); }

/* ============================================================ page hero (inner pages) */
.pagehero {   
	color:#fff; position: relative; overflow: hidden; padding-block: 74px 66px; }
	.pagehero1{
		 background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url("banner1.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
	}
	.pagehero2{
		 background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url("banner2.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
	}
.pagehero::after { content:""; position:absolute; inset:0; background: var(--grill); opacity:.5; }
.pagehero__in { position: relative; z-index:1; max-width: 760px; }
.pagehero h1 { color:#fff; font-size: clamp(2rem,4.4vw,3.1rem); margin-bottom: 14px; }
.pagehero p { color:#B9CDD8; font-size: 1.12rem; max-width: 60ch; margin: 0; }
.crumbs { font-family: var(--font-display); font-size: .84rem; color: #8AA3B2; margin-bottom: 18px; }
.crumbs a:hover { color: var(--teal-400); }
.crumbs span { color: var(--teal-400); }

/* content prose (inner pages) */
.prose h2 { font-size: clamp(1.5rem,2.6vw,2rem); margin: 8px 0 16px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.prose p { color: var(--ink); }
.prose ul.ticks { list-style: none; padding: 0; margin: 16px 0; }
.prose ul.ticks li { position: relative; padding-left: 30px; margin-bottom: 11px; color: var(--ink); }
.prose ul.ticks li::before {
  content:""; position:absolute; left:0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E8E76' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.split .media { aspect-ratio: 4/3; border-radius: var(--r-md); background: var(--paper-2); background-size: cover; background-position: center; box-shadow: var(--shadow-md); position: relative; overflow:hidden; }
.split .media::after { content:""; position:absolute; inset:0; background: var(--grill); opacity:.4; }

/* ============================================================ marquee (rAF) */
.marquee { overflow: hidden; background: var(--white); border-block: 1px solid var(--line); }
.marquee__track { display: flex; gap: 56px; padding: 22px 0; width: max-content; will-change: transform; }
.marquee__item { display:inline-flex; align-items:center; gap: 10px; font-family: var(--font-display); font-weight: 600; color: var(--steel-700); white-space: nowrap; font-size: 1.02rem; }
.marquee__item svg { width: 20px; height: 20px; color: var(--teal-500); }

/* ============================================================ footer */
.site-footer { background: var(--steel-900); color: #A9BDC9; padding-block: 66px 0; position: relative; }
.footer-grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.site-footer .brand__name { color:#fff; }
.site-footer .brand__tag { color: #7E97A6; }
.footer-about { margin: 18px 0; max-width: 34ch; font-size: .95rem; }
.footer-social { display:flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display:grid; place-items:center; transition: .2s; }
.footer-social a:hover { background: var(--teal-500); }
.footer-social svg { width: 18px; height: 18px; color:#fff; }
.footer-col h4 { color:#fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a:hover { color: var(--teal-400); }
.footer-contact li { display:flex; gap: 11px; margin-bottom: 15px; align-items: flex-start; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--teal-400); flex:none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding-block: 22px; font-size: .88rem; display:flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================ floating actions */
.floaters { position: fixed; bottom: 22px; z-index: 1090; }
.floaters.left { left: 20px; }
.floaters.right { right: 20px; }
.floaters a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color:#fff; box-shadow: var(--shadow-md); position: relative; }
.fab-wa { background: #25D366; }
.fab-call { background: var(--teal-500); }
.floaters a svg { width: 27px; height: 27px; }
.floaters a::before {
  content:""; position:absolute; inset:0; border-radius:50%; z-index:-1;
  animation: fab-pulse 2s ease-out infinite;
}
.fab-wa::before { background: #25D366; }
.fab-call::before { background: var(--teal-500); }
@keyframes fab-pulse { 0%{ transform: scale(1); opacity:.6;} 70%{ transform: scale(1.7); opacity:0;} 100%{ opacity:0;} }
@media (max-width: 480px){ .floaters a { width: 52px; height: 52px; } }

/* ============================================================ scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* accessibility */
:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 2px; border-radius: 4px; }
