/* ============================================================
   IOWA ANESTHESIA SERVICES (IAS)
   "Precision Plains" — Bricolage Grotesque / Outfit
   Deep Ocean Teal · Warm Sienna · Cream
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,800&family=Outfit:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --teal:         #0A5470;
  --teal-mid:     #0F7A97;
  --teal-light:   #1A9CBD;
  --teal-pale:    #E6F5F9;
  --sienna:       #C05A35;
  --sienna-light: #D4744F;
  --cream:        #FAFAF7;
  --light:        #EEF6F8;
  --white:        #FFFFFF;
  --ink:          #131C22;
  --mid:          #2A3A46;
  --muted:        #5E7585;
  --border:       rgba(10, 84, 112, 0.12);
  --rule:         rgba(10, 84, 112, 0.07);

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --nav-h:    68px;
  --max-w:    1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 2px 12px rgba(10, 84, 112, 0.07);
  --shadow-md: 0 8px 32px rgba(10, 84, 112, 0.12);
  --shadow-lg: 0 24px 64px rgba(10, 84, 112, 0.18);
  --shadow-card: 0 32px 80px rgba(10, 84, 112, 0.32);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--teal-light); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal-mid); }

::selection { background: var(--teal); color: var(--white); }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .partners__track { animation-play-state: paused; }
}

/* ── Global typography ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ── Tag ────────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-mid);
  background: var(--teal-pale);
  border: 1px solid rgba(10, 84, 112, 0.16);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.tag--center {
  display: block;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tag--light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.85);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 1.875rem;
  border-radius: 8px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn--sienna {
  background: var(--sienna);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(192, 90, 53, 0.32);
}
.btn--sienna:hover {
  background: var(--sienna-light);
  box-shadow: 0 8px 28px rgba(192, 90, 53, 0.42);
  transform: translateY(-2px);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(10, 84, 112, 0.28);
}
.btn--teal:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 84, 112, 0.36);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--sienna);
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.btn--white-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav--scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(10, 84, 112, 0.08);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-abbr {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
}
.nav__logo-pipe {
  color: rgba(10, 84, 112, 0.2);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  user-select: none;
}
.nav__logo-full {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--mid);
  padding: 0.5rem 0.9rem;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.nav__link:hover,
.nav__link.active {
  color: var(--teal);
  background: var(--teal-pale);
}
.nav__cta {
  background: var(--sienna) !important;
  color: var(--white) !important;
  font-weight: 500;
  padding: 0.5rem 1.125rem !important;
  margin-left: 0.5rem;
  border-radius: 7px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav__cta:hover {
  background: var(--sienna-light) !important;
  transform: translateY(-1px);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* Overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(19, 28, 34, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Drawer */
.nav__drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 85vw);
  height: 100%;
  background: var(--white);
  z-index: 300;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: -4px 0 40px rgba(10, 84, 112, 0.15);
}
.nav__drawer.open {
  transform: translateX(0);
}
.nav__drawer-close {
  align-self: flex-end;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  padding: 0.5rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav__drawer-close:hover {
  color: var(--ink);
  background: var(--teal-pale);
}
.nav__drawer-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s, padding-left 0.2s;
  letter-spacing: -0.01em;
}
.nav__drawer-link:hover {
  color: var(--teal);
  padding-left: 0.5rem;
}
.nav__drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  background: var(--sienna);
  color: var(--white);
  padding: 1rem;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
}
.nav__drawer-cta:hover {
  background: var(--sienna-light);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  padding-top: calc(var(--nav-h) + 4.5rem);
  padding-bottom: 4.5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(10, 84, 112, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient color glow */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 75% 30%, rgba(10, 84, 112, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(192, 90, 53, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* Content */
.hero__content {
  position: relative;
  padding-left: 1.875rem;
}
.hero__line {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  background: linear-gradient(to bottom, var(--teal), var(--teal-mid), var(--teal-light));
  border-radius: 10px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 1.25rem;
  max-width: none;
  line-height: 1;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.625rem;
}
.hero__heading-line {
  display: block;
}
.hero__heading-line--accent {
  color: var(--teal);
}

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.hero__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__deco--circle {
  width: 360px;
  height: 360px;
  background: var(--teal-pale);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hero__deco--ring {
  width: 440px;
  height: 440px;
  border: 1px solid rgba(10, 84, 112, 0.12);
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero__card-wrap {
  position: relative;
  z-index: 2;
}

.hero__card {
  background: var(--teal);
  border-radius: 22px;
  padding: 2.5rem 2.75rem;
  transform: rotate(7deg);
  box-shadow: var(--shadow-card);
  color: var(--white);
  min-width: 270px;
  max-width: 320px;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.hero__card:hover {
  transform: rotate(4deg) translateY(-4px);
  box-shadow: 0 40px 90px rgba(10, 84, 112, 0.38);
}
.hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(255,255,255,0.14) 0%, transparent 55%);
  pointer-events: none;
}

.hero__card-num {
  font-family: var(--font-display);
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 0.375rem;
  max-width: none;
}
.hero__card-label {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  margin-bottom: 1.5rem;
  max-width: none;
}
.hero__card-rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 1.25rem;
}
.hero__card-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.625rem;
  line-height: 1;
  max-width: none;
}
.hero__card-badge:last-child { margin-bottom: 0; }
.hero__card-badge svg { flex-shrink: 0; color: rgba(255, 255, 255, 0.65); }

/* Chips */
.hero__chips {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}
.chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.25rem 0.5rem 0.875rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.chip:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
}
.chip__num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.025em;
  line-height: 1;
}
.chip__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.2;
}

/* ============================================================
   PARTNERS STRIP
   ============================================================ */
.partners {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.375rem 0;
  overflow: hidden;
}
.partners__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.partners__label {
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  max-width: none;
  line-height: 1;
}
.partners__overflow {
  overflow: hidden;
  flex: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.partners__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.partners__name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.partners__name:hover { opacity: 1; }
.partners__sep {
  color: var(--teal-light);
  font-size: 1.125rem;
  opacity: 0.5;
  line-height: 1;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT / MISSION
   ============================================================ */
.about {
  padding: 7rem 0 5.5rem;
  background: var(--cream);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: start;
  margin-bottom: 4.5rem;
}

.about__left .tag { margin-bottom: 1rem; }
.about__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.about__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 1.25rem;
}
.about__left .btn {
  margin-top: 0.875rem;
}

.about__right {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  padding-top: 0.75rem;
}
.about__feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.about__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-pale);
  border: 1px solid rgba(10, 84, 112, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: background 0.2s, color 0.2s;
}
.about__feature:hover .about__feature-icon {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.about__feature-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 0.45rem;
}
.about__feature-text {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--muted);
  max-width: none;
}

.about__rule {
  border: none;
  border-top: 1px solid var(--border);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 6.5rem 0;
  background: var(--light);
}
.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
}
.services__sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.875rem;
  border-top: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-top-color 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--teal-light);
}
.service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--teal-pale);
  border: 1px solid rgba(10, 84, 112, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1.25rem;
  transition: background 0.25s, color 0.25s;
}
.service-card:hover .service-card__icon {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.service-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 0.625rem;
}
.service-card__desc {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--muted);
  max-width: none;
}

/* ============================================================
   WHY ASI
   ============================================================ */
.why {
  padding: 7rem 0;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(192, 90, 53, 0.18) 0%, transparent 55%),
    radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 28px 28px;
  pointer-events: none;
}

.why__header {
  text-align: center;
  margin-bottom: 4rem;
}
.why__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  max-width: none;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}
.why__grid::before {
  content: '';
  position: absolute;
  top: 0; left: 33.33%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.why__grid::after {
  content: '';
  position: absolute;
  top: 0; left: 66.66%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.why__item {
  padding-right: 1rem;
}
.why__num {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--sienna-light);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1.125rem;
  opacity: 0.9;
  max-width: none;
}
.why__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 0.875rem;
}
.why__text {
  font-size: 0.9375rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.62);
  max-width: none;
}

/* ============================================================
   IMPACT NUMBERS
   ============================================================ */
.impact {
  padding: 6.5rem 0;
  background: var(--cream);
}
.impact__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.impact__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
}

.impact__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.impact__stat {
  flex: 1;
  text-align: center;
  padding: 3.25rem 2rem;
  transition: background 0.25s;
}
.impact__stat:hover {
  background: var(--teal-pale);
}
.impact__num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.5vw, 4.25rem);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 0.625rem;
  max-width: none;
  transition: color 0.2s;
}
.impact__stat:hover .impact__num {
  color: var(--teal-mid);
}
.impact__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: none;
  line-height: 1.4;
}
.impact__divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin: 2rem 0;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-preview {
  padding: 6.5rem 0;
  background: var(--light);
}
.blog-preview__header {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.blog-preview__header-left .tag {
  margin-bottom: 0.625rem;
}
.blog-preview__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.blog-preview__all {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--teal-light);
  transition: color 0.2s, border-color 0.2s;
}
.blog-preview__all:hover {
  color: var(--teal-mid);
  border-color: var(--teal-mid);
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card__img {
  height: 205px;
  position: relative;
  overflow: hidden;
}
.blog-card__img--1 {
  background: linear-gradient(140deg, #0A5470 0%, #1A9CBD 55%, #B8DDE8 100%);
}
.blog-card__img--2 {
  background: linear-gradient(140deg, #1A2E3A 0%, #0F7A97 50%, #A5D5E0 100%);
}
.blog-card__img--3 {
  background: linear-gradient(140deg, #8A3220 0%, #C05A35 45%, #0A5470 100%);
}
.blog-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 30, 40, 0.3) 100%);
}

.blog-card__body {
  padding: 1.5rem 1.625rem;
}
.blog-card__cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-mid);
  background: var(--teal-pale);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.42;
  letter-spacing: -0.015em;
  margin-bottom: 0.875rem;
}
.blog-card__date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--muted);
  max-width: none;
  line-height: 1;
}
.blog-card__date svg { opacity: 0.5; flex-shrink: 0; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--sienna);
  position: relative;
  overflow: hidden;
  padding: 7.5rem 2rem 6rem;
  clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 100%);
  margin-top: -2.5rem;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(255,255,255,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 85% 25%, rgba(0,0,0,0.12) 0%, transparent 50%),
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 28px 28px;
  pointer-events: none;
}
.cta-strip__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.cta-strip__content .tag {
  margin: 0 auto 1.25rem;
}
.cta-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  max-width: none;
}
.cta-strip__sub {
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
  margin: 0 auto 2.75rem;
}
.cta-strip__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 5.5rem 0 0;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Brand col */
.footer__col--brand {}
.footer__logo {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1.25rem;
}
.footer__logo-abbr {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-light);
  letter-spacing: -0.04em;
  line-height: 1;
}
.footer__logo-full {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.footer__desc {
  font-size: 0.9rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.45);
  max-width: 30ch;
  margin-bottom: 1.625rem;
}
.footer__socials {
  display: flex;
  gap: 0.625rem;
}
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: background 0.2s, color 0.2s;
}
.footer__social:hover {
  background: var(--teal-mid);
  color: var(--white);
}

/* Links cols */
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.375rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
  line-height: 1;
}
.footer__link:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Contact col */
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: none;
}
.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.5;
}
.footer__contact-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer__contact-item a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Newsletter */
.footer__newsletter-label {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  max-width: none;
}
.footer__newsletter-form {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
.footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white);
  min-width: 0;
}
.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.footer__newsletter-btn {
  background: var(--teal-mid);
  color: var(--white);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.footer__newsletter-btn:hover {
  background: var(--teal-light);
}

/* Bottom bar */
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.625rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__copy {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.28);
  max-width: none;
}
.footer__bottom-link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.2s;
}
.footer__bottom-link:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .hero__visual {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
  .hero__content {
    order: 1;
  }
  .hero__visual {
    order: 2;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why__grid::before,
  .why__grid::after { display: none; }
  .why__item {
    padding-right: 0;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .why__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__logo-full { display: none; }
  .nav__logo-pipe { display: none; }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 2.5rem);
    padding-bottom: 3.5rem;
  }
  .hero__heading {
    font-size: clamp(2.25rem, 9vw, 3.5rem);
  }
  .hero__chips {
    gap: 0.625rem;
    padding-top: 1.75rem;
  }
  .chip {
    padding: 0.45rem 1rem 0.45rem 0.75rem;
  }
  .chip__num { font-size: 1rem; }
  .chip__label { font-size: 0.75rem; }

  .partners__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .blog-preview__grid {
    grid-template-columns: 1fr;
  }
  .blog-preview__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-preview__all { margin-left: 0; }

  .impact__row {
    flex-direction: column;
    border-radius: 16px;
  }
  .impact__divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
  }
  .impact__stat {
    padding: 2.25rem 2rem;
  }

  .cta-strip {
    clip-path: polygon(0 3%, 100% 0%, 100% 100%, 0% 100%);
    padding: 5.5rem 2rem 4.5rem;
    margin-top: -1.5rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }
  .footer__col--brand { grid-column: auto; }
  .footer__desc { max-width: none; }
  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.5rem 2rem;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__card {
    min-width: 220px;
    transform: rotate(5deg);
    padding: 2rem 2rem;
  }
  .hero__card-num { font-size: 4rem; }
  .hero__deco--circle { width: 260px; height: 260px; }
  .hero__deco--ring { width: 320px; height: 320px; }

  .cta-strip__actions {
    flex-direction: column;
  }
  .cta-strip__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about__inner { gap: 2.5rem; }
  .why { padding: 5rem 0; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Page header (shared with blog) */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(10, 84, 112, 0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 70% 70% at 80% 30%, rgba(10, 84, 112, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.page-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 1rem;
  max-width: none;
}
.page-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 16ch;
}
.page-hero__heading span {
  color: var(--teal);
}
.page-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 52ch;
}

/* Contact info strip */
.contact-info-strip {
  background: var(--teal);
  padding: 2.5rem 0;
}
.contact-info-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}
.contact-info-item__label {
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
  max-width: none;
}
.contact-info-item__value {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: none;
}
.contact-info-item__value a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}
.contact-info-item__value a:hover {
  color: var(--white);
}

/* Contact form section */
.contact-form-section {
  padding: 5.5rem 0 6rem;
  background: var(--light);
}
.contact-form-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

/* Left side info */
.contact-form-aside .tag { margin-bottom: 1rem; }
.contact-form-aside__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.contact-form-aside__text {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 2.5rem;
}
.contact-form-aside__list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.contact-form-aside__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.contact-form-aside__item-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--teal-pale);
  border: 1px solid rgba(10, 84, 112, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-top: 1px;
}
.contact-form-aside__item-label {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.contact-form-aside__item-value {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: none;
  line-height: 1.5;
}
.contact-form-aside__item-value a {
  color: var(--teal-mid);
  transition: color 0.2s;
}
.contact-form-aside__item-value a:hover {
  color: var(--teal);
}

/* The form card */
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.contact-form-card__sub {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: none;
  line-height: 1.6;
}

/* Form fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group--full {
  grid-column: 1 / -1;
}
.form-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.02em;
}
.form-label span {
  color: var(--sienna);
  margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(94, 117, 133, 0.5);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(10, 84, 112, 0.1);
  background: var(--white);
}
.form-select {
  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='%235E7585' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--sienna);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(192, 90, 53, 0.28);
}
.form-submit:hover {
  background: var(--sienna-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 90, 53, 0.36);
}
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  max-width: none;
  line-height: 1.5;
}
.form-note svg {
  display: inline;
  vertical-align: middle;
  margin-right: 4px;
  opacity: 0.5;
}
.form-input--file {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}
.form-input--file::-webkit-file-upload-button {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--teal-mid);
  border-radius: 4px;
  background: var(--teal-pale);
  color: var(--teal);
  cursor: pointer;
  margin-right: 0.75rem;
}
.form-input-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* Footer contact label */
.footer__contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-right: 3px;
}

/* Form type selector */
.form-type-selector {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.form-type-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.5rem;
}
.form-type-select {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-pale);
  border: 2px solid rgba(10, 84, 112, 0.2);
  border-radius: 9px;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-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='%230A5470' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  transition: border-color 0.2s, box-shadow 0.2s;
  letter-spacing: -0.01em;
}
.form-type-select:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(10, 84, 112, 0.1);
}

/* Form panels */
.form-panel { display: none; }
.form-panel.active { display: block; }

/* Billing note inside form */
.billing-note {
  background: var(--teal-pale);
  border: 1px solid rgba(10, 84, 112, 0.15);
  border-radius: 10px;
  padding: 1rem 1.125rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.billing-note__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--mid);
  max-width: none;
  line-height: 1;
}
.billing-note__item svg { flex-shrink: 0; color: var(--teal-mid); opacity: 0.8; }
.billing-note__item a { color: var(--teal); font-weight: 500; transition: color 0.2s; }
.billing-note__item a:hover { color: var(--teal-mid); }
.billing-note__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Contact page responsive ── */
@media (max-width: 1024px) {
  .contact-info-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .contact-form-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-form-aside__text { max-width: none; }
}
@media (max-width: 768px) {
  .contact-info-strip__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .contact-form-card { padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */

.blog-listing {
  padding: 5.5rem 0 7rem;
  background: var(--cream);
}
.blog-listing__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.blog-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.625rem;
}

/* Listing card */
.listing-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 84, 112, 0.07);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.listing-card__img {
  height: 175px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.listing-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 30, 40, 0.25) 100%);
}

/* Cycling gradient image patterns (7 variants) */
.listing-card__img--a { background: linear-gradient(135deg, #0A5470 0%, #1A9CBD 60%, #B8DDE8 100%); }
.listing-card__img--b { background: linear-gradient(135deg, #152A34 0%, #0F7A97 55%, #9DCFDC 100%); }
.listing-card__img--c { background: linear-gradient(135deg, #8A3220 0%, #C05A35 50%, #E8A88A 100%); }
.listing-card__img--d { background: linear-gradient(135deg, #1A3040 0%, #0A5470 45%, #6DC0D5 100%); }
.listing-card__img--e { background: linear-gradient(135deg, #0A5470 0%, #D4744F 70%, #F2B89A 100%); }
.listing-card__img--f { background: linear-gradient(135deg, #0C3548 0%, #1A9CBD 50%, #E6F5F9 100%); }
.listing-card__img--g { background: linear-gradient(135deg, #6E2410 0%, #C05A35 40%, #1A9CBD 100%); }

.listing-card__body {
  padding: 1.375rem 1.5rem 1.625rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.listing-card__date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.775rem;
  color: var(--muted);
  margin-bottom: 0.625rem;
  max-width: none;
  line-height: 1;
}
.listing-card__date svg { opacity: 0.45; flex-shrink: 0; }
.listing-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.42;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
  flex: 1;
}
.listing-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.listing-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 1rem;
  transition: gap 0.2s, color 0.2s;
}
.listing-card__read-more::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.listing-card__read-more:hover {
  gap: 0.6rem;
  color: var(--teal-mid);
}

/* Blog listing page responsive */
@media (max-width: 1024px) {
  .blog-listing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-listing__grid { grid-template-columns: 1fr; }
  .page-hero__heading { font-size: clamp(2rem, 8vw, 3rem); }
}

/* ============================================================
   BLOG ARTICLE PAGE
   ============================================================ */

.article-header {
  margin-top: var(--nav-h);
  height: 360px;
  position: relative;
  overflow: hidden;
}
.article-header__gradient {
  position: absolute;
  inset: 0;
}
.article-header__gradient--a { background: linear-gradient(140deg, #0A5470 0%, #1A9CBD 60%, #B8DDE8 100%); }
.article-header__gradient--b { background: linear-gradient(140deg, #152A34 0%, #0F7A97 55%, #9DCFDC 100%); }
.article-header__gradient--c { background: linear-gradient(140deg, #8A3220 0%, #C05A35 50%, #E8A88A 100%); }
.article-header__gradient--d { background: linear-gradient(140deg, #1A3040 0%, #0A5470 45%, #6DC0D5 100%); }
.article-header__gradient--e { background: linear-gradient(140deg, #0A5470 0%, #D4744F 70%, #F2B89A 100%); }
.article-header__gradient--f { background: linear-gradient(140deg, #0C3548 0%, #1A9CBD 50%, #E6F5F9 100%); }
.article-header__gradient--g { background: linear-gradient(140deg, #6E2410 0%, #C05A35 40%, #1A9CBD 100%); }

.article-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,30,0.15) 0%, rgba(10,20,30,0.72) 100%);
}
.article-header__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.article-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 2.75rem;
  width: 100%;
}
.article-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  transition: color 0.2s;
  line-height: 1;
}
.article-header__back:hover { color: var(--white); }
.article-header__date {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  max-width: none;
  line-height: 1;
}
.article-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 900px;
}

/* Article body */
.article-body {
  background: var(--cream);
  padding: 4rem 0;
}
.article-body__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}
.article-body__inner > p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 1.625rem;
  max-width: none;
}
.article-body__inner h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 2.75rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--teal);
  line-height: 1.2;
}
.article-body__inner h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 2rem 0 0.75rem;
}
.article-body__inner ul,
.article-body__inner ol {
  margin: 0 0 1.5rem 1.5rem;
}
.article-body__inner li {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 0.5rem;
  max-width: none;
}
.article-body__inner strong {
  font-weight: 600;
  color: var(--ink);
}

/* References */
.article-references {
  background: var(--light);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.article-references__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}
.article-references__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border);
}
.article-references ol {
  margin-left: 1.25rem;
}
.article-references li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 0.75rem;
  max-width: none;
}
.article-references a {
  color: var(--teal-mid);
  text-decoration: underline;
  text-decoration-color: rgba(10,84,112,0.3);
  transition: color 0.2s;
  word-break: break-all;
}
.article-references a:hover { color: var(--teal); }

/* Article prev/next navigation */
.article-nav {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.article-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
}
.article-nav__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 48%;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.article-nav__link:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
}
.article-nav__link--next {
  text-align: right;
  align-items: flex-end;
  margin-left: auto;
}
.article-nav__direction {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-mid);
  line-height: 1;
}
.article-nav__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 768px) {
  .article-header { height: 280px; }
  .article-header__title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .article-nav__inner { flex-direction: column; }
  .article-nav__link { max-width: none; }
  .article-nav__link--next { align-items: flex-start; text-align: left; }
}
