/*!
Theme Name: accelmwp
Author: Accelerate Media
Author URI: https://www.acceleratemediainc.com
Description: Custom Theme by Accelerate Media
Text Domain: accelmwp
*/

/* ── CSS CUSTOM PROPERTIES ───────────────────────────── */
/* ============================================================
   TRILLIUM HEALTH — Design System Stylesheet
   Based on UI Kit r2
   ============================================================ */

/* ------------------------------------------------------------
   Google Fonts Import — Prata + Poppins
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Prata&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   ------------------------------------------------------------ */
:root {
  /* Colors */
  --color-dark-teal:       #2E7A8A;
  --color-light-teal:      #38A1B7;
  --color-adjusted-purple: #8B5EA1;
  --color-adjusted-pink:   #C73876;
  --color-adjusted-yellow: #F2BA40;
  --color-light-gray:      #F7F7F7;
  --color-dark-gray:       #505056;

  /* Typography — Font Families */
  --font-display: 'Prata', Georgia, serif;
  --font-body:    'Poppins', Helvetica, Arial, sans-serif;

  /* Typography — Sizes */
  --text-h1:         3rem;       /* 48px */
  --text-h2:         2.5rem;     /* 40px */
  --text-h3:         2rem;       /* 32px */
  --text-h4:         1.75rem;    /* 28px */
  --text-eyebrow:    1rem;       /* 16px */
  --text-lead:       1.5rem;     /* 24px */
  --text-body:       1rem;       /* 16px */
  --text-body-sm:    0.875rem;   /* 14px */
  --text-cta:        1.4375rem;  /* 23px */
  --text-footer-nav: 1.125rem;   /* 18px */

  /* Typography — Line Heights */
  --lh-h1: 1.2;
  --lh-h2: 38.4px;  /* per spec */

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  2rem;
  --space-xl:  4rem;

  /* Transitions */
  --transition-base: 0.2s ease;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-dark-gray);
  background-color: #ffffff;
}

/* ------------------------------------------------------------
   Typography — Headings
   ------------------------------------------------------------ */

/* H1 — Prata Regular 48px, light teal */
h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-h1);
  line-height: var(--lh-h1);
  color: var(--color-light-teal);
}

/* H2 — Prata Regular 40px, light teal */
h2,
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-h2);
  line-height: var(--lh-h2);
  color: var(--color-light-teal);
}

/* H3 — Prata Regular 32px, light teal */
h3,
.h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-h3);
  color: var(--color-light-teal);
}

/* H4 — Poppins Medium 28px, dark teal */
h4,
.h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-h4);
  color: var(--color-dark-teal);
}

/* Eyebrow — Poppins Bold 16px uppercase, adjusted purple */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-adjusted-purple);
}

/* Lead — Poppins Medium 24px, dark gray */
.lead {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-lead);
  color: var(--color-dark-gray);
}

/* Body — Poppins Light 16px, dark gray */
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-body);
  color: var(--color-dark-gray);
}

/* Body Small — Poppins Light 14px, dark gray */
.body-small,
small {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-body-sm);
  color: var(--color-dark-gray);
}

.site-main {
  font-size: 1.4em;
}

/* ------------------------------------------------------------
   Text Links
   ------------------------------------------------------------ */

/* In-context body link */
a {
  color: var(--color-dark-teal);
  text-decoration: underline;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-adjusted-pink);
}

/* Text CTA — 23pt, dark teal, underline, arrow */
.text-cta {
  font-family: var(--font-body);
  font-size: var(--text-cta);
  font-weight: 500;
  color: var(--color-dark-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color var(--transition-base);
}

.text-cta::after {
  content: ' >';
}

.text-cta:hover {
  color: var(--color-adjusted-pink);
}

/* Secondary nav item */
.nav-item-secondary {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-dark-teal);
  text-decoration: none;
  transition: color var(--transition-base);
}

.nav-item-secondary:hover {
  color: var(--color-adjusted-pink);
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */

/* Shared base */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-eyebrow); /* 16px */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base);
}

/* Primary button — dark teal fill */
.btn-primary {
  background-color: var(--color-dark-teal);
  color: #ffffff;
  border-color: var(--color-dark-teal);
}

.btn-primary:hover {
  background-color: var(--color-adjusted-pink);
  border-color: var(--color-adjusted-pink);
  color: #ffffff;
}

/* Secondary button — yellow fill */
.btn-secondary {
  background-color: var(--color-adjusted-yellow);
  color: var(--color-dark-gray);
  border-color: var(--color-adjusted-yellow);
}

.btn-secondary:hover {
  background-color: transparent;
  border-color: var(--color-adjusted-yellow);
  color: var(--color-dark-gray);
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  background-color: var(--color-dark-gray);
  color: #ffffff;
  padding: var(--space-xl) var(--space-lg);
}

/* Primary footer heading — Prata, adjusted yellow, 23pt */
.footer-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-cta);
  color: var(--color-adjusted-yellow);
  margin-bottom: var(--space-sm);
}

/* Secondary footer nav — Poppins Bold 18pt, white, uppercase */
.footer-nav-secondary {
  list-style: none;
}

.footer-nav-secondary a,
.footer-nav-secondary-item {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-footer-nav);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-nav-secondary a:hover,
.footer-nav-secondary-item:hover {
  color: var(--color-adjusted-yellow);
}

/* Tertiary footer nav — Poppins 18pt lowercase */
.footer-nav-tertiary {
  list-style: none;
}

.footer-nav-tertiary a,
.footer-nav-tertiary-item {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-footer-nav);
  color: #ffffff;
  text-decoration: none;
  text-transform: none;
  transition: color var(--transition-base);
}

.footer-nav-tertiary a:hover,
.footer-nav-tertiary-item:hover {
  color: var(--color-adjusted-yellow);
}

/* Patient Portal button (footer) — secondary style on dark bg */
.btn-patient-portal {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-eyebrow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-adjusted-yellow);
  background-color: transparent;
  border: 2px solid var(--color-adjusted-yellow);
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-base),
              color var(--transition-base);
}

.btn-patient-portal:hover {
  background-color: var(--color-adjusted-yellow);
  color: var(--color-dark-gray);
}

/* ------------------------------------------------------------
   Utility Classes
   ------------------------------------------------------------ */
.text-light-teal     { color: var(--color-light-teal); }
.text-dark-teal      { color: var(--color-dark-teal); }
.text-purple         { color: var(--color-adjusted-purple); }
.text-pink           { color: var(--color-adjusted-pink); }
.text-yellow         { color: var(--color-adjusted-yellow); }
.text-dark-gray      { color: var(--color-dark-gray); }
.text-white          { color: #ffffff; }

.bg-light-gray       { background-color: var(--color-light-gray); }
.bg-dark-gray        { background-color: var(--color-dark-gray); }
.bg-dark-teal        { background-color: var(--color-dark-teal); }
.bg-light-teal       { background-color: var(--color-light-teal); }


/* ── 1. ANNOUNCEMENT BAR ─────────────────────────────── */
.announcement-bar {
  background: var(--color-light-teal);
  color: #fff;
  font-size: 1.05rem;
  padding: .7rem 1rem;
}
.announcement-bar a {
  color: #fff;
  text-decoration: underline;
}
.announcement-bar a:hover { opacity: .85; }
.announcement-bar .bi-info-circle-fill {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ── 2. MIDDLE ROW ───────────────────────────────────── */
.header-middle {
  background: #fff;
  padding: .85rem 1rem 1.1rem;
  border-bottom: 1px solid #ddd;
}
.header-middle .logo img,
.header-middle .custom-logo {
  height: 84px;
  width: auto;
}

/* "Para Español?" link */
.espanol-link {
  font-size: 1rem;
  color: var(--text);
  text-decoration: underline;
  white-space: nowrap;
}
.espanol-link:hover { color: var(--color-light-teal); }

/* CTA buttons */
.btn-cta {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid #555;
  color: #444;
  background: #fff;
  padding: .5rem 1.1rem;
  border-radius: 0;
  white-space: nowrap;
}
.btn-cta:hover {
  background: #f0f0f0;
  color: #222;
  border-color: #444;
}
.btn-cta.donate {
  background: var(--color-dark-teal);
  border-color: var(--color-dark-teal);
  color: #fff;
}
.btn-cta.donate:hover {
  background: var(--color-light-teal);
  border-color: var(--color-light-teal);
  color: #fff;
}

/* ── 3. NAV BAR ──────────────────────────────────────── */
.main-nav {
  background: var(--nav-bg);
}
.main-nav .navbar-nav {
  width: 100%;
  justify-content: space-evenly;
}
.main-nav .nav-link {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text) !important;
  padding: 1rem .6rem;
  white-space: nowrap;
  position: relative;
}

/* Underline for non-dropdown items */
.main-nav .nav-item:not(.dropdown) > .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-light-teal);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav .nav-item:not(.dropdown):hover > .nav-link { color: var(--color-light-teal) !important; }
.main-nav .nav-item:not(.dropdown):hover > .nav-link::before { transform: scaleX(1); }

/* Dropdown items — filled background + white text */
.main-nav .nav-item.dropdown:hover > .nav-link {
  background: #2d8091;
  color: #fff !important;
}
.main-nav .nav-item.dropdown > .nav-link:focus,
.main-nav .nav-item.dropdown > .nav-link:active,
.main-nav .nav-item.dropdown > .nav-link:focus-visible {
  outline: none;
  box-shadow: none;
}

/* Remove Bootstrap default caret */
.main-nav .nav-link::after { display: none; }

/* ── ANIMATED DROPDOWN ───────────────────────────────── */
.main-nav .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s .22s;
  pointer-events: none;

  border: none;
  border-top: 3px solid var(--color-light-teal);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  min-width: 220px;
  padding: .5rem 0;
  margin-top: 0;
}
.main-nav .dropdown-menu.show,
.main-nav .nav-item:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s 0s;
  pointer-events: auto;
}
.main-nav .dropdown-item {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  padding: .55rem 1.25rem;
  letter-spacing: .01em;
}
.main-nav .dropdown-item:hover {
  background: #f0f8f9;
  color: var(--color-light-teal);
  padding-left: 1.5rem;
  transition: padding-left .15s ease;
}
.main-nav .dropdown-divider { margin: .35rem 0; }

/* Keep dropdown open on hover (desktop) */
@media (min-width: 768px) {
  .main-nav .nav-item:hover > .dropdown-menu { display: block; }
}

/* Mobile hamburger */
.main-nav .navbar-toggler { border-color: #999; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 767px) {
  .header-middle .logo img,
  .header-middle .custom-logo { height: 62px; }
  .btn-cta { font-size: .82rem; padding: .45rem .75rem; }
  .main-nav .dropdown-menu {
    visibility: visible; opacity: 1; transform: none;
    transition: none; pointer-events: auto;
    box-shadow: none; border-top: none;
    border-left: 3px solid var(--color-light-teal);
    margin-left: 1rem;
  }
}
@media (max-width: 575px) {
  .cta-buttons { flex-wrap: wrap; justify-content: flex-end !important; }
  .btn-cta { font-size: .78rem; padding: .4rem .6rem; }
}


/* ═══════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
 
/* ── Overall footer background ──────────────────── */
.trillium-footer {
  background: var(--color-dark-gray);
  color: var(--color-adjusted-yellow);
  font-family: 'Poppins', sans-serif;
}
 
/* ── Logo ────────────────────────────────────────── */
.footer-logo-img,
.trillium-footer .custom-logo {
  height: 70px;
  width: auto;
  /* Invert dark logo to white for the dark background */
  filter: brightness(0) invert(1);
}
 
/* ── Address block ───────────────────────────────── */
.footer-address {
  font-style: normal;
  font-size: .95rem;
  line-height: 1.6;
  color: #e0e0e0;
}
.footer-address p { margin-bottom: .6rem; }
.footer-address a {
  color: #e0e0e0;
  text-decoration: underline;
}
.footer-address a:hover { color: #fff; }
 
/* ── Footer links column ─────────────────────────── */
.footer-links { margin: 0; padding: 0; }
.footer-links li { margin-bottom: .65rem; }
.footer-links li a,
.footer-links a {
  color: #e0e0e0;
  text-decoration: underline;
  font-size: .95rem;
}
.footer-links li a:hover,
.footer-links a:hover { color: #fff; }
 
/* WP adds a wrapping <ul> with class menu — target it too */
.trillium-footer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
 
/* ── Social icons ────────────────────────────────── */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.social-icons a:hover {
  background: var(--color-adjusted-yellow);
  color: var(--color-dark-gray);
}
 
/* ── Accreditation badges ────────────────────────── */
.badge-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}
.badge-img--tall {
  height: 110px;
}
 
/* ── Disclaimer bar ──────────────────────────────── */
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-disclaimer p {
  font-size: .9rem;
  color: #e0e0e0;
  line-height: 1.7;
}
.footer-disclaimer a {
  color: #e0e0e0;
  text-decoration: underline;
}
.footer-disclaimer a:hover { color: #fff; }
 
/* ── Bottom bar ──────────────────────────────────── */
.footer-bottom {
  font-size: .85rem;
  color: #ccc;
}
.footer-bottom .credit-link {
  color: #ccc;
  text-decoration: underline;
}
.footer-bottom .credit-link:hover { color: #fff; }
 
/* ── Responsive ──────────────────────────────────── */
@media (max-width: 991px) {
  .social-icons { justify-content: flex-start !important; }
  .badges-grid .d-flex { justify-content: flex-start !important; }
}
@media (max-width: 575px) {
  .badge-img      { height: 70px; }
  .badge-img--tall { height: 85px; }
  .footer-logo-img,
  .trillium-footer .custom-logo { height: 54px; }
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE — Accelm Redesign
════════════════════════════════════════════════════ */
 


/* Shared utilities */
.th-section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-light-teal);
  margin-bottom: 1rem;
}
 
.th-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .7rem 1.6rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.th-btn--white  { background: #fff; color: var(--color-dark-teal); }
.th-btn--white:hover  { background: var(--color-light-teal); color: #fff; }
.th-btn--ghost  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.th-btn--ghost:hover  { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }
.th-btn--color-light-teal   { background: var(--color-light-teal); color: #fff; }
.th-btn--color-light-teal:hover   { background: var(--color-dark-teal); color: #fff; }
 
/* Scroll reveal */
.reveal-section { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal-section.is-visible { opacity: 1; transform: translateY(0); }
 
/* ── 1. HERO ─────────────────────────────────────── */
.th-hero {
  position: relative;
  width: 100%;
  height: clamp(480px, 72vh, 760px);
  overflow: hidden;
  background: #0d2b30;
}
.th-hero__media {
  position: absolute;
  inset: 0;
}
.th-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.th-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,43,48,.82) 0%,
    rgba(13,43,48,.55) 45%,
    rgba(13,43,48,.1) 100%
  );
}
.th-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  z-index: 2;
}
.th-hero__eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: .85rem;
}
.th-hero__heading {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 2rem;
  max-width: 16ch;
}
.th-hero__glass {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .7rem 1rem .7rem 1.5rem;
}
.th-hero__glass > span {
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.th-hero__glass-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
 
/* ── 2. INTRO ────────────────────────────────────── */
.th-intro {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #fff;
}
.th-intro__inner {
  max-width: 820px;
}
.th-intro__heading {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #0d2b30;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.th-intro__body {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  max-width: 65ch;
}
 
/* ── 3. BENTO SERVICES GRID ──────────────────────── */
.th-services {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: #f7f9f9;
}
.th-services__header {
  margin-bottom: 2.5rem;
}
.th-services__heading {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 600;
  color: #0d2b30;
  line-height: 1.15;
  margin: 0;
}
.th-services__heading em {
  font-style: italic;
  color: var(--color-light-teal);
}
 
.th-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.th-bento__card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: block;
  text-decoration: none;
  background: #ccc;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease var(--delay, 0ms), transform .5s ease var(--delay, 0ms), box-shadow .25s ease;
}
.th-bento__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.th-bento__card--wide { grid-column: span 2; }
.th-bento__card--tall { grid-row: span 2; }
.th-bento__card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.22); text-decoration: none; }
 
.th-bento__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.th-bento__card:hover .th-bento__img { transform: scale(1.06); }
 
.th-bento__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,35,40,.75) 0%,
    rgba(10,35,40,.1) 55%,
    transparent 100%
  );
  transition: opacity .3s;
}
.th-bento__card:hover .th-bento__overlay {
  background: linear-gradient(
    to top,
    rgba(42,128,145,.85) 0%,
    rgba(42,128,145,.3) 55%,
    transparent 100%
  );
}
.th-bento__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.th-bento__title {
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.th-bento__arrow {
  color: rgba(255,255,255,.6);
  font-size: 1.2rem;
  transition: transform .2s, color .2s;
}
.th-bento__card:hover .th-bento__arrow {
  transform: translateX(4px);
  color: #fff;
}
 
/* ── 4. CEO WELCOME ──────────────────────────────── */
.th-ceo {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #fff;
  overflow: hidden;
}
.th-ceo__bg-label {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 800;
  font-style: italic;
  color: rgba(58,158,172,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.th-ceo__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.th-ceo__photo-col { position: relative; }
.th-ceo__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  display: block;
}
.th-ceo__photo-caption {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.th-ceo__photo-caption strong {
  font-size: .95rem;
  color: #0d2b30;
}
.th-ceo__photo-caption span {
  font-size: .85rem;
  color: #888;
}
.th-ceo__heading {
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-light-teal);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
.th-ceo__body p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.th-ceo__text-col .th-btn { margin-top: .8rem; }
 
/* ── 5. STATS STRIP ──────────────────────────────── */
.th-stats {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: var(--color-dark-teal);
}
.th-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.th-stats__item {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.th-stats__number {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1;
}
.th-stats__number sup { font-size: 50%; vertical-align: super; }
.th-stats__label {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}
 
/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 991px) {
  .th-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .th-ceo__grid { grid-template-columns: 1fr; }
  .th-ceo__photo { aspect-ratio: 16/9; object-position: center 20%; max-height: 380px; }
  .th-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .th-hero { height: clamp(380px, 70vw, 500px); }
  .th-hero__glass { border-radius: 16px; padding: 1rem 1.2rem; }
  .th-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .th-bento__card--wide { grid-column: span 2; }
  .th-bento__card--tall { grid-row: span 1; }
  .th-ceo__bg-label { display: none; }
}
@media (max-width: 575px) {
  .th-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 8px; }
  .th-stats__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

