/* ==========================================================================
   TLC Care — styles.css
   Palette (from brand logo):
     navy   #024950  — headings, primary buttons (deep teal)
     teal   #04828E  — brand accent (graphics, borders)
     teal-deep #036169 — accent text (AA on cream)
     coral  #FE7565  — hearts / tiny accents only
     coral-deep  #C23929 — coral text on light backgrounds (AA on cream)
     coral-light #F99286 — coral text on dark backgrounds (AA on navy-deep)
     coral-tint  #FDE0DD — pale coral fill for badges/chips
     orange #F2A03D  — tiny accents only
     cream  #FAF6EF  — page base
     mist   #E4F1EF  — soft teal tint for bands
   Type: Inter — single family. Headings: Semibold 600. Body: Regular 400.
   ========================================================================== */

/* Smooth cross-page transitions in supporting browsers (progressive
   enhancement — no-op elsewhere). Kept short and restrained. */
@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.32s;
  animation-timing-function: ease;
}

:root {
  --navy: #024950;
  --navy-deep: #013237;
  --teal: #04828E;
  --teal-deep: #036169;
  --coral: #FE7565;
  --coral-deep: #C23929;
  --coral-light: #F99286;
  --coral-tint: #FDE0DD;
  --orange: #F2A03D;
  --pink: #F04070;
  --pink-deep: #F03870;
  --cream: #FAF6EF;
  --mist: #E4F1EF;
  --sage-tint: #EAF1E4;
  --pink-tint: #FCEAEF;
  --grey-tint: #F2F1EE;
  --white: #FFFFFF;
  --ink: #2A3342;
  --ink-soft: #55617A;
  --line: #E3DED2;

  --font-display: "Inter", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-card: 0 10px 30px rgba(2, 73, 80, 0.10);
}

/* ---------- Reset & base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.75em;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.35rem); }
h3 { font-size: 1.15rem; letter-spacing: 0; }

p { margin: 0 0 1.3em; }

a { color: var(--teal-deep); transition: color 0.15s ease; }

a:hover { color: var(--coral-deep); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.9rem;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 3.5rem;
}

.section-intro {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 44px;
}

.btn:hover {
  transform: translateY(-1px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.08s;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 8px 20px rgba(2, 73, 80, 0.22);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover {
  background: var(--cream);
  box-shadow: 0 8px 20px rgba(2, 73, 80, 0.14);
}

.btn-block {
  display: block;
  width: 100%;
}

.link-btn {
  background: none;
  border: none;
  padding: 0.5rem 0;
  font: inherit;
  font-weight: 600;
  color: var(--teal-deep);
  cursor: pointer;
  text-decoration: underline;
  min-height: 44px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.65rem 0;
  /* the nav row carries more items than body content — let it breathe wider */
  width: min(1360px, 100% - 2.5rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-mark-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-mark-badge img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-word {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--teal);
  white-space: nowrap;
}

.brand-word em {
  font-style: normal;
  font-weight: 500;
  color: var(--pink-deep);
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.15rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.site-nav a:hover {
  border-bottom-color: var(--teal);
}

/* Services dropdown */

.has-submenu {
  position: relative;
  display: flex;
  align-items: center;
}

.submenu-toggle {
  background: none;
  border: none;
  padding: 0.4rem 0.2rem;
  cursor: pointer;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
}

.submenu-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.has-submenu.is-open > .submenu-toggle svg {
  transform: rotate(180deg);
}

/* ".site-nav .submenu" (0-2-0) must outweigh ".site-nav ul" (0-1-1),
   otherwise the flex rule above keeps the submenu permanently visible */
.site-nav .submenu {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  display: none;
}

.has-submenu.is-open > .submenu {
  display: block;
}

.submenu a {
  display: block;
  white-space: nowrap;
  border-bottom: none;
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.submenu a:hover {
  background: var(--mist);
  border-bottom: none;
}

@media (min-width: 1025px) {
  /* identical box behaviour for every top-level item so baselines align */
  .site-nav > ul > li {
    display: flex;
    align-items: center;
  }

  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 17rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    z-index: 60;
  }

  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu {
    display: block;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone svg {
  width: 20px;
  height: 20px;
  color: var(--teal-deep);
}

.header-cta {
  padding: 0.7rem 1.3rem;
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(70rem 40rem at 110% -20%, rgba(4, 130, 142, 0.12), transparent 60%),
    var(--mist);
  padding: 2.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 30rem) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.hero-copy .eyebrow { margin-top: 0.4rem; }

.hero-sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 32rem;
}

.hero-contact {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-contact a { font-weight: 700; }

/* Care form card */

.care-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem 2rem 1.4rem;
  margin-top: 1.5rem;
  scroll-margin-top: 6.5rem;
}

.form-step {
  border: none;
  margin: 0;
  padding: 0;
  display: none;
}

.form-step.is-active { display: block; }

.form-step legend {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  padding: 0;
  margin-bottom: 1rem;
}

.step-count {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.35rem;
}

.choice-list {
  display: grid;
  gap: 0.6rem;
}

.choice {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1.1rem;
  font: inherit;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.choice svg {
  width: 22px;
  height: 22px;
  color: var(--teal-deep);
  flex-shrink: 0;
}

.choice:hover {
  border-color: var(--teal);
  background: #F0F8F7;
}

.form-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 0.9rem;
}

.field {
  display: block;
  margin-bottom: 1rem;
}

.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
}

.field input:focus {
  border-color: var(--teal);
}

.captcha-field input {
  width: 100px;
}

.field textarea {
  width: 100%;
  min-height: 110px;
  padding: 0.7rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  resize: vertical;
}

.field textarea:focus {
  border-color: var(--teal);
}

.btn-step-next { margin-top: 0.3rem; }

.form-consent {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0.8rem 0 0;
}

.form-error {
  font-size: 0.88rem;
  font-weight: 600;
  color: #A62330;
  margin: 0.8rem 0 0;
}

.form-footer {
  margin-top: 0.4rem;
}

.form-success {
  text-align: center;
  padding: 1rem 0.5rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

.success-mark {
  width: 56px;
  height: 56px;
  color: var(--teal);
  margin: 0 auto 0.8rem;
}

/* Hero media */

.hero-media {
  position: relative;
}

.hero-slideshow {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  box-shadow: var(--shadow-card);
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slideshow .slide.is-active { opacity: 1; }

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.slideshow-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--teal-deep);
  background: transparent;
  cursor: pointer;
}

.slideshow-dots button[aria-selected="true"] {
  background: var(--teal-deep);
}

.hero-careers-link {
  display: block;
  text-align: center;
  margin-top: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- Why TLC ---------- */

.why {
  padding: 7.5rem 0;
  background: var(--grey-tint);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 3.5rem;
  align-items: center;
}

.why-media {
  position: relative;
}

.why-media::before {
  content: "";
  position: absolute;
  inset: -0.7rem;
  background: radial-gradient(60% 60% at 78% 12%, rgba(4, 130, 142, 0.16), transparent 70%);
  z-index: 0;
}

.why-media img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  width: 100%;
}

.why-badge {
  position: absolute;
  left: -0.8rem;
  bottom: 1.5rem;
  z-index: 2;
  max-width: 17rem;
  margin: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-card);
}

.why-badge-heart {
  width: 22px;
  height: 22px;
  color: var(--pink-deep);
  margin-bottom: 0.5rem;
}

.why-badge blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.4;
}

.why-stat-chip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--white);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}

.why-stat-chip svg {
  width: 18px;
  height: 18px;
  color: var(--teal-deep);
  flex-shrink: 0;
}

.why-copy p { color: var(--ink-soft); }

.why-copy p.lede {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
}

.why-points {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 1.8rem;
  display: grid;
  gap: 1.1rem;
}

.why-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.why-points li svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--teal-deep);
  margin-top: -0.05em;
}

.why-points--grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.4rem;
}

/* ---------- Services ---------- */

.services {
  padding: 7.5rem 0;
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.2rem;
  row-gap: 0.15rem;
  padding: 2rem 2.1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-icon {
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--mist);
  display: grid;
  place-items: center;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal-deep);
}

.service-card h3 {
  margin: 0.2rem 0 0.2rem;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.services-cta {
  margin-top: 2.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.services-cta a { white-space: nowrap; }

/* ---------- AI-assisted monitoring ---------- */

.monitoring {
  padding: 7.5rem 0;
  background: var(--pink-tint);
}

.new-chip {
  display: inline-block;
  background: var(--coral-tint);
  color: var(--coral-deep);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.monitoring-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.monitoring-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--teal-deep);
}

.monitoring-copy > p:not(.eyebrow):not(.monitoring-tagline) {
  color: var(--ink-soft);
}

.monitoring-actions {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}

.monitoring-more {
  font-weight: 700;
  white-space: nowrap;
}

.monitoring-media {
  margin: 0;
}

.monitoring-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.monitoring .monitoring-media {
  position: relative;
}

.monitoring-chip {
  position: absolute;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  max-width: 11.5rem;
}

.monitoring-chip svg {
  width: 20px;
  height: 20px;
  color: var(--teal-deep);
  flex-shrink: 0;
}

.monitoring-chip--top {
  top: 1rem;
  left: 1rem;
}

.monitoring-chip--bottom {
  bottom: 1rem;
  right: 1rem;
}

/* What we monitor chips */

.monitor-subhead {
  margin: 2.8rem 0 1.2rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
}

.monitor-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.monitor-chips li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
}

.monitor-chips h4 {
  margin: 0 0 0.25rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
}

.monitor-chips p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Homepage — "what we monitor" bento grid */

.monitor-bento {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.monitor-bento li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.monitor-bento li:first-child {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--navy);
  border-color: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 2.3rem 2.4rem;
}

.monitor-bento li:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(75% 75% at 85% 0%, rgba(4, 130, 142, 0.4), transparent 62%);
}

.monitor-bento li:first-child h4,
.monitor-bento li:first-child p {
  position: relative;
  z-index: 1;
}

.monitor-bento li:first-child h4 {
  color: var(--white);
  font-size: 1.15rem;
}

.monitor-bento li:first-child p {
  color: #C9D9EC;
}

.monitor-bento h4 {
  margin: 0 0 0.3rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.monitor-bento p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- AI monitoring detail page ---------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.subpage-hero {
  background:
    radial-gradient(70rem 40rem at 110% -20%, rgba(4, 130, 142, 0.12), transparent 60%),
    var(--mist);
  padding: 4rem 0 4.5rem;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.subpage-hero-sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.flow {
  padding: 7.5rem 0;
  background: var(--white);
}

.flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.5rem;
  align-items: start;
}

.flow-media {
  display: grid;
  gap: 1.4rem;
  position: sticky;
  top: 6rem;
}

.flow-media figure {
  margin: 0;
}

.flow-media img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.flow-steps {
  list-style: none;
  counter-reset: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}

.flow-steps > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2.1rem 2.2rem;
}

.flow-steps h3 {
  margin: 0.3rem 0 0.5rem;
  font-size: 1.15rem;
}

.flow-steps p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  margin-bottom: 0.8rem;
}

.flow-steps p:last-child { margin-bottom: 0; }

.pill-list {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list li {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.pill-list--lg li {
  padding: 0.55rem 1.15rem;
  font-size: 0.95rem;
  background: var(--cream);
}

.monitor-detail {
  padding: 7.5rem 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 2.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.detail-card h3 { margin-bottom: 0.5rem; }

.detail-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.detail-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 1rem;
}

.detail-card ul li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy);
}

.detail-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45em;
  height: 0.45em;
  border-radius: 50%;
  background: var(--teal);
}

.devices {
  padding: 7.5rem 0;
  background: var(--white);
}

.devices-photo {
  margin: 0;
}

.devices-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.benefits {
  padding: 7.5rem 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.benefit-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2.3rem 2.3rem;
}

.benefit-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.benefit-col > p {
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.benefit-col .why-points {
  margin-bottom: 0;
}

.designed-for {
  padding: 7.5rem 0;
  background: var(--white);
}

.assurance {
  padding: 7.5rem 0;
  background: var(--mist);
}

.assurance .benefit-col {
  background: var(--white);
}

/* ---------- Privacy policy page ---------- */

.policy {
  padding: 5rem 0 7.5rem;
}

.policy-body {
  max-width: 46rem;
}

.policy-body > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.policy-body h2 {
  font-size: 1.35rem;
  margin: 2.6rem 0 0.7rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.policy-body ul {
  margin: 0 0 1.1em;
  padding-left: 1.3rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.45rem;
}

.policy-body ul li::marker {
  color: var(--teal);
}

.policy-contact {
  background: var(--mist);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  margin-top: 1.2rem;
}

.policy-contact p {
  margin: 0 0 0.8rem;
  color: var(--ink);
}

.policy-contact p:last-child { margin-bottom: 0; }

/* ---------- Sitemap page ---------- */

.sitemap {
  padding: 5rem 0 7.5rem;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.sitemap-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2.3rem 2.4rem;
}

.sitemap-card h2 {
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.sitemap-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.sitemap-card a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
}

.sitemap-card a svg {
  width: 14px;
  height: 14px;
  color: var(--teal-deep);
  flex-shrink: 0;
}

/* ---------- Careers page ---------- */

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.split-grid figure {
  margin: 0;
}

.split-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.split-copy p { color: var(--ink-soft); }

p.closing-line {
  font-weight: 700;
  color: var(--navy);
}

.mission {
  padding: 7.5rem 0;
  background: var(--mist);
}

.mission blockquote {
  margin: 0;
  max-width: 46rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.4;
  color: var(--navy);
}

.story-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 58rem;
}

/* ---------- Careers page — hero diptych ---------- */

.hero-diptych {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
}

.hero-diptych figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 3 / 4;
}

.hero-diptych .diptych-b {
  margin-top: 2.2rem;
}

.hero-diptych img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Careers page — role marquee ---------- */

.role-marquee-wrap {
  overflow: hidden;
  background: var(--mist);
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.role-marquee {
  display: flex;
  width: max-content;
  animation: careers-marquee 34s linear infinite;
}

.role-marquee-set {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding-right: 2.2rem;
}

.role-marquee-set span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy);
  white-space: nowrap;
}

.role-marquee-set b {
  color: var(--teal);
  font-weight: 400;
}

@keyframes careers-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ---------- Careers page — bento reasons grid ---------- */

.reason-bento {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
  gap: 1.1rem;
}

.reason-bento li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reason-bento li:first-child {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--navy);
  border-color: var(--navy);
  position: relative;
  overflow: hidden;
  justify-content: flex-end;
  padding: 2.1rem 2.2rem;
}

.reason-bento li:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(75% 75% at 85% 0%, rgba(4, 130, 142, 0.4), transparent 62%);
}

.reason-bento li:first-child h4,
.reason-bento li:first-child p {
  position: relative;
  z-index: 1;
}

.reason-bento li:first-child h4 {
  color: var(--white);
  font-size: 1.3rem;
}

.reason-bento li:first-child p {
  color: #C9D9EC;
}

.reason-bento h4 {
  margin: 0 0 0.4rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.reason-bento p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Careers page — numbered role cards ---------- */

.role-card {
  position: relative;
  overflow: hidden;
}

.role-card .ghost-num {
  position: absolute;
  top: -0.5rem;
  right: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4rem;
  color: var(--mist);
  z-index: 0;
  line-height: 1;
  user-select: none;
}

.role-card h3,
.role-card p {
  position: relative;
  z-index: 1;
}

/* ---------- Careers page — quality cloud + editorial photo ---------- */

.takes-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 3.2rem;
  align-items: center;
}

.quality-cloud {
  list-style: none;
  margin: 1.3rem 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.quality-cloud li {
  background: var(--mist);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
}

.editorial-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
}

.editorial-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
}

.editorial-badge {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: -1.3rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.editorial-badge svg {
  width: 26px;
  height: 26px;
  color: var(--teal-deep);
  flex-shrink: 0;
}

.editorial-badge span {
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

/* ---------- Careers page — training banner + rail ---------- */

.training-banner {
  margin: 0 0 2.2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.training-banner img {
  width: 100%;
  aspect-ratio: 21 / 7;
  object-fit: cover;
  display: block;
}

.training-rail {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0 0 0.7rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.training-rail li {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 190px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.2rem;
}

.training-rail .rail-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.training-rail h4 {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.3;
}

.training-note {
  color: var(--ink-soft);
  max-width: 42rem;
}

/* ---------- Careers page — mission photo frame ---------- */

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3.5rem;
  align-items: center;
}

.mission-photo-frame {
  margin: 0;
  max-width: 320px;
}

.mission-photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 46px rgba(2, 73, 80, 0.25);
  transform: rotate(-3deg);
  border: 8px solid var(--white);
  display: block;
}

/* ---------- Careers page — recruitment timeline ---------- */

.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: var(--line);
}

.timeline li {
  position: relative;
}

.timeline-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--teal);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.timeline h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.timeline p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- Careers page — testimonial spotlight ---------- */

.story-card--spotlight {
  padding: 2rem 1.9rem;
}

.story-card--spotlight blockquote p {
  font-size: 1.15rem;
}

.story-card--spotlight .story-photo {
  width: 72px;
  height: 72px;
}

/* ---------- About Us page ---------- */

.ecosystem {
  padding: 7.5rem 0;
  background: var(--white);
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.vm-card {
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: 2rem 2.1rem;
}

.vm-card .eyebrow { margin-bottom: 0.6rem; }

.vm-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--navy);
}

.values {
  padding: 7.5rem 0;
  background: var(--mist);
}

.values .service-card {
  background: var(--white);
}

.pillars {
  padding: 7.5rem 0;
  background: var(--white);
}

.pillars .section-head {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pillars .section-head .eyebrow { text-align: center; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.pillar-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.pillar-media {
  position: relative;
  margin: 0;
}

.pillar-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.pillar-accent {
  height: 4px;
}

.pillar-card:nth-child(1) .pillar-accent { background: var(--coral); }
.pillar-card:nth-child(2) .pillar-accent { background: var(--teal); }
.pillar-card:nth-child(3) .pillar-accent { background: var(--orange); }

.pillar-icon {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 1.3rem;
  position: relative;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal-deep);
}

.pillar-card h3 {
  margin: 1rem 1.3rem 0.4rem;
}

.pillar-card p {
  margin: 0 1.3rem 1.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.future-note {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.1rem;
}

/* ---------- Application form page ---------- */

.apply-section {
  padding: 5rem 0 7.5rem;
}

.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 3rem;
  align-items: start;
}

.apply-aside {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1.5rem;
}

.apply-art {
  margin: 0;
}

.apply-art img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.apply-quote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--navy);
}

.apply-help {
  background: var(--mist);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.9rem;
}

.apply-help h2 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.apply-help p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.apply-help p:last-child { margin-bottom: 0; }

.apply-help a {
  font-weight: 700;
  white-space: nowrap;
}

.apply-card {
  max-width: 46rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.6rem 2.8rem;
}

.apply-card fieldset {
  border: none;
  margin: 0 0 1.6rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
}

.apply-card fieldset:first-of-type {
  border-top: none;
  padding-top: 0;
}

.apply-card legend {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

.apply-card legend + * {
  clear: both;
}

.req::after {
  content: " *";
  color: #C0392B;
  font-weight: 700;
}

.field select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
}

.field select:focus {
  border-color: var(--teal);
}

.field-row {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.8rem;
}

.field-row--phone {
  grid-template-columns: 5.5rem 1fr;
}

.phone-prefix {
  display: grid;
  place-items: center;
  min-height: 48px;
  background: var(--mist);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--navy);
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #C0392B;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #C0392B;
}

.file-drop {
  display: block;
  border: 2px dashed var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  padding: 1.5rem 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.file-drop:hover,
.file-drop:focus-within {
  border-color: var(--teal);
}

.file-drop input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-drop .file-cta {
  font-weight: 700;
  color: var(--teal-deep);
  text-decoration: underline;
}

.file-drop .file-hint {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.file-drop .file-chosen {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.apply-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.apply-success {
  text-align: center;
  padding: 2.5rem 1rem;
}

.apply-success h2 {
  font-size: 1.6rem;
}

@media (max-width: 1024px) {
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* image first, then the form; contact card follows the form */
  .apply-aside {
    position: static;
    order: -1;
  }

  .apply-quote {
    display: none;
  }
}

@media (max-width: 640px) {
  .apply-card { padding: 1.5rem 1.2rem; }
  .field-row { grid-template-columns: 1fr; }
  .field-row--phone { grid-template-columns: 5.5rem 1fr; }
}

/* ---------- How it works ---------- */

.how {
  padding: 7.5rem 0;
  background: var(--cream);
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.steps li {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.1rem 1.8rem 1.8rem;
  border: 1px solid var(--line);
  counter-increment: step;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.steps li:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: var(--shadow-card);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  top: -0.7rem;
  right: 0.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4rem;
  color: var(--mist);
  z-index: 0;
  line-height: 1;
  user-select: none;
}

.step-num {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.steps h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.4rem;
}

.steps p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

/* ---------- Testimonials ---------- */

.stories {
  padding: 7.5rem 0;
  background: var(--navy);
}

.section-head--light h2 { color: var(--white); }
.section-head--light .eyebrow { color: var(--coral-light); }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.story-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.2rem 2.1rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.story-card::before {
  content: "\201C";
  position: absolute;
  top: -1.4rem;
  right: 1.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.5rem;
  font-weight: 700;
  color: var(--coral-tint);
  line-height: 1;
  user-select: none;
}

.story-card blockquote {
  position: relative;
  margin: 0;
  flex-grow: 1;
}

.story-card blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--navy);
}

.story-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.story-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--mist);
  box-shadow: 0 2px 6px rgba(2, 73, 80, 0.15);
}

.story-name {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.story-meta {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Resources ---------- */

.resources {
  padding: 7.5rem 0;
  background: var(--grey-tint);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.resource-card {
  display: flex;
  flex-direction: column;
  padding: 2.1rem 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.resource-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

.resource-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.resource-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  flex-grow: 1;
}

.resource-link {
  font-weight: 700;
  color: var(--teal-deep);
  font-size: 0.95rem;
}

.resource-card--accent {
  background: var(--mist);
  border-color: var(--teal);
}

/* ---------- FAQ ---------- */

.faq {
  padding: 7.5rem 0;
  background: var(--sage-tint);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3.5rem;
  align-items: start;
}

.faq-intro p { color: var(--ink-soft); }

.faq-intro .btn { margin-top: 0.6rem; }

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  min-height: 44px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--teal-deep);
  border-bottom: 2.5px solid var(--teal-deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 1.4rem 1.2rem;
  color: var(--ink-soft);
}

/* ---------- Careers ---------- */

.careers {
  padding: 7.5rem 0;
  background:
    radial-gradient(60rem 32rem at -10% 120%, rgba(4, 130, 142, 0.14), transparent 60%),
    var(--mist);
}

.careers-banner {
  margin: 0 0 2.6rem;
}

.careers-banner img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.careers-cols {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: start;
}

.careers-cols h2 { margin-bottom: 0; }

.careers-cols p { color: var(--ink-soft); }

/* ---------- Final CTA ---------- */

.final-cta {
  background: var(--teal-deep);
  padding: 5.5rem 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 0.4rem;
}

.final-cta p {
  color: #D7ECEC;
  margin: 0;
  max-width: 36rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: #C4CDDD;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand--light .brand-word {
  color: var(--white);
}

.brand--light .brand-word em {
  color: var(--pink-deep);
}

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.82rem;
  line-height: 1.65;
  max-width: 30rem;
  color: #C4CDDD;
}

.footer-col h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: #C4CDDD;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-col a.footer-contact-link:hover {
  text-decoration: none;
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--pink-deep);
}

.footer-col ul.footer-social {
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.footer-col a.footer-social-link:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.4rem;
  font-size: 0.85rem;
}

.footer-legal p { margin: 0; }

.footer-legal a { color: #C4CDDD; }

/* ---------- WhatsApp FAB ---------- */

.whatsapp-fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1FAF5A;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(22, 41, 74, 0.3);
  transition: transform 0.15s ease;
}

.whatsapp-fab:hover { transform: scale(1.06); }

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

/* ---------- Chatbot widget ---------- */

.chatbot-toggle {
  position: fixed;
  right: 1.2rem;
  bottom: 5.4rem;
  z-index: 61;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(2, 73, 80, 0.35);
  transition: transform 0.15s ease;
}

.chatbot-toggle:hover { transform: scale(1.06); }

.chatbot-toggle svg {
  width: 26px;
  height: 26px;
  position: absolute;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.chatbot-icon-close { opacity: 0; transform: scale(0.6); }

.chatbot-toggle[aria-expanded="true"] .chatbot-icon-chat { opacity: 0; transform: scale(0.6); }
.chatbot-toggle[aria-expanded="true"] .chatbot-icon-close { opacity: 1; transform: scale(1); }

.chatbot-panel {
  position: fixed;
  right: 1.2rem;
  bottom: 9.4rem;
  z-index: 61;
  width: min(360px, calc(100vw - 2.4rem));
  height: min(560px, calc(100vh - 11rem));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(2, 73, 80, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
}

.chatbot-panel[hidden] { display: none; }

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--navy);
  color: var(--white);
  flex-shrink: 0;
}

.chatbot-header-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.chatbot-avatar img { width: 24px; height: 24px; object-fit: contain; }

.chatbot-header-brand strong {
  display: block;
  font-size: 0.92rem;
}

.chatbot-header-brand span {
  display: block;
  font-size: 0.75rem;
  color: var(--coral-light);
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.15s ease;
}

.chatbot-close:hover { background: rgba(255, 255, 255, 0.14); }

.chatbot-close svg { width: 18px; height: 18px; }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--cream);
}

.chatbot-msg {
  max-width: 82%;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.45;
}

.chatbot-msg a { color: inherit; text-decoration: underline; font-weight: 600; }

.chatbot-msg--bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

.chatbot-msg--user {
  align-self: flex-end;
  background: var(--navy);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chatbot-msg--user a { color: var(--coral-light); }

.chatbot-typing {
  align-self: flex-start;
  display: flex;
  gap: 0.3rem;
  padding: 0.85rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  border-bottom-left-radius: 4px;
}

.chatbot-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-soft);
  animation: chatbot-bounce 1.2s infinite ease-in-out;
}

.chatbot-typing span:nth-child(2) { animation-delay: 0.15s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chatbot-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.8rem 1.1rem;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
  max-height: 6.6rem;
  overflow-y: auto;
}

.chatbot-chip {
  background: var(--mist);
  color: var(--navy);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.chatbot-chip:hover {
  background: var(--white);
  border-color: var(--teal);
}

.chatbot-form {
  display: flex;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

.chatbot-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font: inherit;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--cream);
}

.chatbot-form input:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.chatbot-form button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.15s ease;
}

.chatbot-form button:hover { background: var(--teal-deep); }

.chatbot-form button svg { width: 18px; height: 18px; }

/* ---------- Back to top ---------- */

.back-to-top {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 59;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(2, 73, 80, 0.3);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.15s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover { background: var(--teal-deep); }

.back-to-top svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 480px) {
  .back-to-top { width: 44px; height: 44px; left: 1rem; bottom: 1rem; }
}

@media (max-width: 480px) {
  .chatbot-panel {
    right: 0.6rem;
    left: 0.6rem;
    width: auto;
    bottom: 5.4rem;
    height: min(65vh, 480px);
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1407px) {
  .header-phone span { display: none; }
  .site-nav ul { gap: 0.9rem; }
  .site-nav a { font-size: 0.88rem; }
  .header-cta { padding: 0.65rem 1.1rem; font-size: 0.88rem; }
}

/* nav + CTA + phone can't all fit here — the hero form CTA is one scroll away */
@media (max-width: 1280px) and (min-width: 1025px) {
  .header-cta { display: none; }
}

@media (max-width: 1024px) {
  /* collapse to the hamburger menu */
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    display: none;
    padding: 0.8rem 1.25rem 1.2rem;
  }

  .site-nav.is-open { display: block; }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }

  .has-submenu {
    flex-wrap: wrap;
  }

  .has-submenu > a {
    flex: 1;
  }

  .submenu-toggle {
    width: 44px;
    height: 44px;
    justify-content: center;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .submenu-toggle svg {
    width: 18px;
    height: 18px;
  }

  .submenu {
    width: 100%;
    padding: 0.2rem 0 0.4rem 0.9rem;
  }

  .submenu a {
    font-size: 0.98rem;
    border-bottom: none;
    white-space: normal;
  }

  .monitor-chips { grid-template-columns: repeat(2, 1fr); }
  .service-grid { gap: 1rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .reason-bento { grid-template-columns: repeat(2, 1fr); }
  .reason-bento li:first-child { grid-column: span 2; grid-row: span 1; }

  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
  .timeline::before { display: none; }

  .takes-grid,
  .mission-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .mission-photo-frame { margin: 0 auto; order: -1; }
  .editorial-photo { order: -1; max-width: 26rem; margin: 0 auto; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 4.6rem; }

  .header-inner { gap: 0.8rem; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-mark-badge { width: 34px; height: 34px; }
  .brand-mark-badge img { width: 24px; height: 24px; }
  .brand-word { font-size: 1.3rem; }
  .header-cta { display: none; }

  .hero { padding-top: 1.8rem; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-media { order: -1; }

  .hero-slideshow { aspect-ratio: 16 / 10; }

  /* On mobile the media block sits above the headline — keep the careers
     link out of that position and let the Careers section carry it */
  .hero-careers-link { display: none; }

  .why, .services, .how, .stories, .resources, .faq, .careers {
    padding: 3.5rem 0;
  }

  .why-grid,
  .careers-cols,
  .faq-grid,
  .monitoring-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .sitemap-grid { grid-template-columns: 1fr; }

  .monitor-bento { grid-template-columns: repeat(2, 1fr); }
  .monitor-bento li:first-child { grid-column: span 2; grid-row: span 1; }

  .monitoring { padding: 3.5rem 0; }

  .monitor-chips { grid-template-columns: 1fr; }

  /* AI monitoring detail page */
  .subpage-hero { padding: 2.5rem 0 3rem; }

  .subpage-hero-grid,
  .detail-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .flow, .monitor-detail, .devices, .benefits, .designed-for, .assurance, .ecosystem, .values, .pillars {
    padding: 3.5rem 0;
  }

  .vm-grid { grid-template-columns: 1fr; }

  .pillar-grid { grid-template-columns: 1fr; }

  /* Careers page redesign */
  .hero-diptych { order: -1; }

  .role-marquee-set span { font-size: 1rem; }

  .reason-bento { grid-template-columns: 1fr; }
  .reason-bento li:first-child { grid-column: span 1; grid-row: span 1; }

  .timeline { grid-template-columns: repeat(2, 1fr); }

  .training-banner img { aspect-ratio: 16 / 9; }

  .story-grid--two { grid-template-columns: 1fr; }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps--six { grid-template-columns: 1fr; }

  .story-grid--two { grid-template-columns: 1fr; }

  .mission { padding: 3.5rem 0; }

  .flow-media {
    position: static;
    grid-template-columns: 1fr;
  }

  .flow-steps > li {
    grid-template-columns: 1fr;
    padding: 1.4rem 1.3rem;
  }

  .detail-card ul { grid-template-columns: 1fr; }

  .why-media img { aspect-ratio: 16 / 11; }

  .why-badge {
    position: static;
    max-width: none;
    margin-top: -1.2rem;
    margin-inline: 1rem;
  }

  .service-grid { grid-template-columns: 1fr; }

  .story-grid { grid-template-columns: 1fr; }

  .careers-banner img { aspect-ratio: 16 / 10; }

  .final-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 1.8rem); }

  .steps { grid-template-columns: 1fr; }

  .monitor-bento { grid-template-columns: 1fr; }
  .monitor-bento li:first-child { grid-column: span 1; grid-row: span 1; }

  .why-points--grid { grid-template-columns: 1fr; }

  .resource-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }

  .care-form-card { padding: 1.2rem 1.1rem 0.9rem; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- Scroll reveal (shared utility) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Floating hero graphics (shared utility) ---------- */

@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float {
  animation: gentle-float 5s ease-in-out infinite;
}

.float--slow {
  animation-duration: 6.5s;
}

.float--delay {
  animation-delay: 1.2s;
}

/* ---------- About Us page redesign ---------- */

.about-hero-media {
  position: relative;
}

.about-hero-badge {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.about-hero-badge svg {
  width: 26px;
  height: 26px;
  color: var(--teal-deep);
  flex-shrink: 0;
}

.about-hero-badge span {
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
}

.about-copy p.lede {
  font-size: 1.14rem;
  font-weight: 500;
  color: var(--navy);
}

.about-copy p {
  color: var(--ink-soft);
}

/* Bridging the distance */

.bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.75fr);
  gap: 3.5rem;
  align-items: center;
}

.bridge-photo {
  position: relative;
  margin: 0;
  max-width: 340px;
  margin-inline: auto;
}

.bridge-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.bridge-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(2, 73, 80, 0.85);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  backdrop-filter: blur(3px);
}

/* Integrated care ecosystem — heading */

.eco-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3.2rem;
  align-items: end;
  margin-bottom: 2.6rem;
}

.eco-head h2 { margin-bottom: 0; }

.eco-head .section-intro { margin: 0; }

/* Connected Care Ecosystem — hero card + animated connector grid */

.eco-web-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.eco-web-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral-tint);
  display: grid;
  place-items: center;
}

.eco-web-badge svg {
  width: 22px;
  height: 22px;
  color: var(--coral-deep);
}

.eco-web-title {
  margin: 0 0 0.35rem;
  font-size: 1.3rem;
}

.eco-web-sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 40rem;
}

.eco-hero {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: linear-gradient(135deg, var(--navy), var(--teal-deep));
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.4rem;
  box-shadow: var(--shadow-card);
}

.eco-hero-icon {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
}

.eco-hero-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.eco-hero-text .eco-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 0.5rem;
}

.eco-hero-text h4 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--white);
}

.eco-hero-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  max-width: 34rem;
}

.eco-trunk {
  width: 2px;
  height: 2.2rem;
  margin: 0 auto;
  position: relative;
  background-image: repeating-linear-gradient(180deg, var(--teal) 0 6px, transparent 6px 14px);
  background-size: 2px 40px;
  animation: eco-flow-y 1.1s linear infinite;
}

.eco-trunk::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--mist);
}

.eco-branch {
  height: 2px;
  width: 100%;
  margin-bottom: 1.8rem;
  background-image: repeating-linear-gradient(90deg, var(--teal) 0 6px, transparent 6px 14px);
  background-size: 40px 2px;
  animation: eco-flow-x 1.1s linear infinite;
  opacity: 0.65;
}

@keyframes eco-flow-y {
  to { background-position: 0 -40px; }
}

@keyframes eco-flow-x {
  to { background-position: 40px 0; }
}

.eco-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem 1rem;
}

.eco-grid li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.1rem 1.2rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.eco-grid li::before {
  content: "";
  position: absolute;
  top: -1.8rem;
  left: 50%;
  width: 2px;
  height: 1.8rem;
  background: var(--teal);
  opacity: 0.45;
  transform: translateX(-50%);
}

.eco-grid li::after {
  content: "";
  position: absolute;
  top: -1.8rem;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  transform: translate(-50%, -50%);
}

.eco-grid li:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: var(--shadow-card);
}

.eco-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--mist);
  display: grid;
  place-items: center;
}

.eco-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal-deep);
}

.eco-item-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.eco-item-text span {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.eco-web-note {
  margin: 1.8rem 0 0;
  color: var(--ink-soft);
}

/* Technology that cares */

.tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3.2rem;
  align-items: center;
}

.tech-photo {
  position: relative;
  margin: 0;
}

.tech-photo::before {
  content: "";
  position: absolute;
  inset: -0.7rem;
  background: radial-gradient(60% 60% at 30% 20%, rgba(4, 130, 142, 0.16), transparent 70%);
  z-index: 0;
}

.tech-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transform: rotate(-1.1deg);
  transition: transform 0.4s ease;
}

.tech-photo:hover img {
  transform: rotate(0deg) scale(1.02);
}

.tech-chip-row {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tech-chip-row li {
  background: var(--mist);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

/* Vision & mission cards */

.vm-card {
  position: relative;
  overflow: hidden;
}

.vm-quote-mark {
  position: absolute;
  top: -1.2rem;
  right: 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.5rem;
  font-weight: 700;
  color: rgba(2, 73, 80, 0.08);
  line-height: 1;
  user-select: none;
}

.vm-card--dark {
  background: var(--navy);
}

.vm-card--dark .eyebrow { color: #8FD4D6; }
.vm-card--dark blockquote { color: var(--white); }
.vm-card--dark .vm-quote-mark { color: rgba(255, 255, 255, 0.08); }

/* Core values — numbered cards */

.core-values .service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.core-values .service-card {
  position: relative;
  overflow: hidden;
  padding-top: 1.9rem;
  transition: border-color 0.2s ease, transform 0.25s ease;
}

.core-values .service-card:hover {
  transform: translateY(-3px);
}

.core-values .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.core-values .service-card:nth-child(1)::before { background: var(--navy); }
.core-values .service-card:nth-child(2)::before { background: var(--teal); }
.core-values .service-card:nth-child(3)::before { background: var(--coral); }
.core-values .service-card:nth-child(4)::before { background: var(--orange); }
.core-values .service-card:nth-child(5)::before { background: var(--teal); }
.core-values .service-card:nth-child(6)::before { background: var(--navy); }

.value-num {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--line);
  line-height: 1;
}

/* Pillars — staggered rhythm */

.pillar-media { overflow: hidden; }

.pillar-media img { transition: transform 0.5s ease; }

.pillar-card:hover .pillar-media img { transform: scale(1.06); }

.pillar-grid > :nth-child(2) { transform: translateY(-1.2rem); }

/* Looking ahead — banner + editorial columns */

.ahead-banner { margin: 0 0 2.6rem; }

.ahead-banner img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.ahead-cols {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.ahead-cols h2 { margin-bottom: 0; }
.ahead-cols p { color: var(--ink-soft); }

@media (max-width: 860px) {
  .bridge-grid { grid-template-columns: 1fr; gap: 2rem; }
  .bridge-photo { max-width: 260px; }

  .eco-head { grid-template-columns: 1fr; gap: 1rem; align-items: start; }

  .eco-hero { flex-direction: column; text-align: center; padding: 1.8rem; gap: 1rem; }

  .eco-hero-text p { max-width: none; }

  .eco-grid { grid-template-columns: repeat(2, 1fr); }

  .tech-grid { grid-template-columns: 1fr; gap: 2rem; }

  .core-values .service-grid { grid-template-columns: 1fr; }

  .pillar-grid > :nth-child(2) { transform: none; }

  .ahead-banner img { aspect-ratio: 16 / 10; }
  .ahead-cols { grid-template-columns: 1fr; gap: 1.4rem; }
}

@media (max-width: 480px) {
  .eco-grid { grid-template-columns: 1fr; }
}

/* ---------- Why Us page ---------- */

.whyus-hero-media {
  position: relative;
}

.whyus-hero-badge {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.whyus-hero-badge svg {
  width: 26px;
  height: 26px;
  color: var(--teal-deep);
  flex-shrink: 0;
}

.whyus-hero-badge span {
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
}

.whyus-intro {
  padding: 7.5rem 0;
  background: var(--white);
}

.whyus-intro-inner {
  max-width: 46rem;
}

.whyus-intro p.lede {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}

.whyus-intro p { color: var(--ink-soft); }

.whyus-split {
  padding: 7.5rem 0;
}

.whyus-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 3.5rem;
  align-items: center;
}

.whyus-split-grid--text-first {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.whyus-photo {
  position: relative;
  margin: 0;
}

.whyus-photo::before {
  content: "";
  position: absolute;
  inset: -0.7rem;
  background: radial-gradient(60% 60% at 75% 15%, rgba(4, 130, 142, 0.16), transparent 70%);
  z-index: 0;
}

.whyus-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.whyus-split h2 { margin-bottom: 0.9rem; }

.whyus-split-copy p { color: var(--ink-soft); }

.training-grid {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.training-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.35;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.training-grid li:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
}

.training-grid li svg {
  width: 18px;
  height: 18px;
  color: var(--teal-deep);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.whyus-banner {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.whyus-banner img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}

.whyus-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 73, 80, 0.9) 0%, rgba(2, 73, 80, 0.5) 55%, transparent 100%);
}

.whyus-banner-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  max-width: 27rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.6rem;
}

.whyus-banner-text .eyebrow { color: var(--coral-light); }
.whyus-banner-text h2 { color: var(--white); margin-bottom: 0.7rem; }
.whyus-banner-text p { color: #D7ECEC; margin: 0; }

.whyus-duo {
  padding: 7.5rem 0;
  background: var(--mist);
}

.whyus-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.whyus-duo-card .eyebrow { margin-bottom: 0.5rem; }

.whyus-duo-card h2 {
  font-size: 1.3rem;
}

.whyus-duo-card p {
  color: var(--ink-soft);
  margin: 0;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.promise-card {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2.3rem 2.1rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.promise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.promise-card:nth-child(1)::before { background: var(--navy); }
.promise-card:nth-child(2)::before { background: var(--teal); }
.promise-card:nth-child(3)::before { background: var(--coral); }
.promise-card:nth-child(4)::before { background: var(--orange); }

.promise-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--mist);
  display: grid;
  place-items: center;
}

.promise-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal-deep);
}

.promise-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.promise-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 860px) {
  .whyus-split-grid,
  .whyus-split-grid--text-first {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whyus-photo { max-width: 320px; margin-inline: auto; }

  .training-grid { grid-template-columns: repeat(2, 1fr); }

  .whyus-duo-grid { grid-template-columns: 1fr; gap: 1.6rem; }

  .promise-grid { grid-template-columns: repeat(2, 1fr); }

  .whyus-banner-text {
    position: static;
    max-width: none;
    background: var(--navy);
    padding: 2rem 1.5rem;
  }

  .whyus-banner::before { display: none; }
  .whyus-banner img { aspect-ratio: 16 / 10; }
}

@media (max-width: 480px) {
  .training-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact Us page ---------- */

.contact-oval-wrap {
  position: relative;
  margin: 0;
  min-height: 440px;
  border-radius: var(--radius-lg);
  background: var(--navy-deep);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-oval {
  width: 115%;
  max-width: 620px;
  aspect-ratio: 2.5 / 1;
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(-22deg);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06);
}

.contact-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .contact-oval-wrap { min-height: 340px; }
  .contact-oval { width: 145%; }
}

.contact-main {
  padding: 7.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 3.5rem;
  align-items: start;
}

.contact-copy p { color: var(--ink-soft); }

.contact-info-grid {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 1.4rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mist);
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
}

.contact-info-icon svg {
  width: 21px;
  height: 21px;
  color: var(--teal-deep);
}

.contact-info-grid h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.contact-info-grid p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.contact-info-grid a {
  display: block;
}

.contact-info-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.contact-info-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mist);
  display: grid;
  place-items: center;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.contact-info-social a:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.contact-info-social svg {
  width: 22px;
  height: 22px;
  color: var(--teal-deep);
}

.contact-info-social a:hover svg { color: var(--white); }

.contact-form-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.visit-office {
  padding: 0 0 3rem;
}

.visit-office-card {
  position: relative;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}

.visit-office-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 60%;
  padding: 2.2rem 2.4rem 2.2rem 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-office-copy .eyebrow { margin-bottom: 0.6rem; }

.visit-office-copy h3 {
  margin: 0 0 0.7rem;
  font-size: 1.4rem;
  color: var(--navy);
}

.visit-office-copy p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 30rem;
  line-height: 1.6;
}

.visit-office-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 35%;
}

.visit-office-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
  display: block;
}

.visit-office-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, var(--white) 8%, rgba(255, 255, 255, 0) 75%);
}

.visit-office-glass {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 1.2rem 1.05rem;
  box-shadow: var(--shadow-card);
  max-width: 17%;
}

.visit-office-glass-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

.visit-office-glass-title svg {
  width: 20px;
  height: 20px;
  color: var(--coral-deep);
  flex-shrink: 0;
}

.visit-office-glass-line {
  margin: 0 0 0.35rem;
  font-size: 0.73rem;
  color: var(--ink);
  white-space: nowrap;
}

.visit-office-glass-line:last-child { margin-bottom: 0; }

.visit-office-glass-line span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.1rem;
}

@media (max-width: 860px) {
  .visit-office-card { height: 320px; }
  .visit-office-copy { max-width: 46%; padding: 1.8rem 1.6rem 1.8rem 2rem; }
  .visit-office-copy h3 { font-size: 1.2rem; }
  .visit-office-media { width: 52%; }
  .visit-office-glass { max-width: 21%; padding: 1.1rem 0.8rem; right: 2%; }
  .visit-office-glass-line { font-size: 0.66rem; }
}

@media (max-width: 640px) {
  .visit-office-card {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .visit-office-copy {
    order: -1;
    height: auto;
    max-width: none;
    padding: 1.8rem 1.6rem 1.4rem;
  }

  .visit-office-media {
    position: relative;
    width: 100%;
    height: 200px;
  }

  .visit-office-fade {
    background: linear-gradient(to top, var(--white) 0%, rgba(255, 255, 255, 0) 55%);
  }

  .visit-office-glass {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    max-width: none;
    margin: -2.5rem 1rem 1.2rem;
  }
}

.contact-map {
  position: relative;
  margin: 0;
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-map-link {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.contact-map-link svg {
  width: 18px;
  height: 18px;
  color: var(--teal-deep);
  flex-shrink: 0;
}

.contact-map-link:hover { background: var(--mist); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .contact-map iframe { height: 320px; }
}

@media (max-width: 480px) {
  .contact-map-link { left: 1rem; right: 1rem; justify-content: center; top: 1rem; bottom: auto; }
}

@media (max-width: 480px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 0.55rem;
  color: var(--line);
}

.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--teal-deep);
  text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
}

/* ---------- Top bar ---------- */

.topbar {
  background: var(--navy-deep);
  color: var(--mist);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.82rem;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--mist);
  text-decoration: none;
  white-space: nowrap;
}

.topbar-contact a:hover { color: var(--coral-light); }

.topbar-contact svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--pink-deep);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  transition: background-color 0.15s ease;
}

.topbar-social a:hover { background: var(--coral); }

.topbar-social svg {
  width: 13px;
  height: 13px;
  color: var(--white);
}

@media (max-width: 700px) {
  .topbar-inner { flex-direction: column; gap: 0.4rem; padding: 0.5rem 0; }
  .topbar-contact { justify-content: center; }
  .topbar-contact a.topbar-email { display: none; }
}
