/* ==============================================
   HALCYON HEALTH — Main Stylesheet
   Premium Telehealth Mental Health Practice
   ============================================== */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #152A44;
  --gold: #B8962B;
  --gold-logo: #F0C828;
  --gold-text: #6B5A1F;
  --gold-muted: color-mix(in oklch, #B8962B 35%, white);
  --teal: #0EBAC5;
  --teal-text: #0C7D84;
  --white: #FFFFFF;
  --cloud: #ECEEF1;
  --charcoal: #1A1A2E;
  --slate: #5A6068;
  --grey: #6B6E75;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --gutter: clamp(16px, 4vw, 48px);
  --section-v: clamp(64px, 8vw, 96px);
  --r-card: 8px;
  --r-btn: 4px;
  --r-pill: 100px;
  --shadow-card: 0 1px 3px rgba(21,42,68,0.04);
  --shadow-hover: 0 12px 32px rgba(21,42,68,0.10);
  --shadow-float: 0 24px 48px rgba(21,42,68,0.14);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* ---------- Reading Progress Bar ---------- */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-logo));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10000;
  animation: reading-progress linear;
  animation-timeline: scroll(root);
}

@keyframes reading-progress {
  to { transform: scaleX(1); }
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-btn);
  font-weight: 600;
  font-size: 14px;
  z-index: 10001;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 8px;
}

/* ---------- Focus Visible ---------- */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: 680px;
}

.section {
  padding: var(--section-v) 0;
}

.section--white {
  background: var(--white);
}

.section--cloud {
  background: var(--cloud);
}

/* ---------- Typography ---------- */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 12px;
}

.section-label--muted {
  color: var(--gold-muted);
}

.section-label--white {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  background: rgba(255,255,255,0.12);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  display: inline-block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title--white {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-body {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Gold Separator ---------- */
.gold-separator {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-btn);
  transition: all 0.3s var(--ease-expo);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: #1d3a5c;
  border-color: #1d3a5c;
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: #a3841f;
  border-color: #a3841f;
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ---------- Grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ==============================================
   NAVIGATION
   ============================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(21,42,68,0.06);
  transition: box-shadow 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  transition: height 0.3s var(--ease-expo);
}

/* Shrunk state */
.site-header.is-scrolled .nav__inner {
  height: 56px;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(21,42,68,0.08);
}

/* Logo */
.nav__logo picture {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 48px;
  width: auto;
  transition: height 0.3s var(--ease-expo);
}

.site-header.is-scrolled .nav__logo img {
  height: 40px;
}

/* Desktop nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-expo);
}

.nav__link:hover,
.nav__link.active {
  color: var(--navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__chevron {
  transition: transform 0.2s;
}

/* Nav CTA */
.nav__cta {
  padding: 10px 24px;
  font-size: 13px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease-expo);
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__hamburger.is-active .nav__hamburger-line {
  background: var(--white);
}

.nav.is-drawer-open {
  background: var(--navy);
}

.nav.is-drawer-open .nav__logo img {
  filter: brightness(0) invert(1);
}

/* Mega Dropdown */
.nav__dropdown {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-float);
  padding: 32px;
  min-width: 640px;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 100;
}

.nav__dropdown:hover .mega-dropdown,
.nav__dropdown:focus-within .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown:hover .nav__chevron {
  transform: rotate(180deg);
}

.mega-dropdown__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mega-dropdown__heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cloud);
}

.mega-dropdown__heading a {
  color: inherit;
  text-decoration: none;
}

.mega-dropdown__heading a:hover {
  color: var(--teal);
  text-decoration: underline;
}

/* Offset anchor scroll to clear sticky nav */
[id] {
  scroll-margin-top: 100px;
}

.mega-dropdown__subheading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 16px 0 8px;
  padding-top: 12px;
  border-top: 1px solid var(--cloud);
}

.mega-dropdown__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-dropdown__col a {
  font-size: 13px;
  color: var(--slate);
  transition: color 0.2s;
  padding: 4px 0;
}

.mega-dropdown__col a:hover {
  color: var(--teal-text);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--navy);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-expo);
  padding-top: 72px;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__inner {
  display: flex;
  flex-direction: column;
  padding: 32px var(--gutter);
  gap: 0;
}

.mobile-drawer__link {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
}

.mobile-drawer__link:hover {
  color: var(--teal);
}

.mobile-drawer__group {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0 4px;
}

.mobile-drawer__label {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.mobile-drawer__sub {
  list-style: none;
  padding: 4px 0 8px 16px;
  margin: 0;
}

.mobile-drawer__sub .mobile-drawer__link {
  font-size: 15px;
  font-weight: 400;
  padding: 10px 0;
  border-bottom: none;
  color: rgba(255,255,255,0.65);
}

.mobile-drawer__sub .mobile-drawer__link:hover {
  color: var(--teal);
}

.mobile-drawer__cta {
  margin-top: 28px;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
}

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2f4a 0%, #0d1f33 100%);
  background-image: url('/assets/images/heroes/hero-homepage.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left,
    rgba(21,42,68,0.92) 0%,
    rgba(21,42,68,0.78) 30%,
    rgba(21,42,68,0.35) 55%,
    rgba(21,42,68,0.08) 75%,
    transparent 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-left: auto;
  width: 45%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px;
  background: linear-gradient(to left,
    rgba(21,42,68,0.85) 0%,
    rgba(21,42,68,0.70) 60%,
    transparent 100%
  );
}

/* Full-screen splash overlay */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #152A44;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity, transform;
}

/* Gate screen: logo mark + enter button */
.splash__gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  animation: splashFadeIn 1s ease-out both;
}

.splash__logo {
  width: clamp(260px, 50vw, 420px);
  height: auto;
  opacity: 0.95;
}

.splash__enter {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 40px;
  padding: 14px 36px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.splash__enter:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.03);
}

.splash__gate.is-hidden {
  display: none;
}

/* Logo animation video (hidden until gate is clicked) */
.splash__video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.splash__video.is-playing {
  display: block;
}

.splash.is-hidden {
  display: none !important;
}

@keyframes splashFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 68px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Trust strip */
.hero__trust-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: rgba(21,42,68,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.hero__trust-item {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.hero__trust-check {
  color: var(--teal);
  margin-right: 6px;
}

@media (max-width: 768px) {
  .hero__trust-inner {
    gap: 16px 24px;
    justify-content: flex-start;
  }
}

/* ==============================================
   INTRODUCTION
   ============================================== */
.intro {
  text-align: center;
}

.intro__lead {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.9;
}

/* Scroll animation for intro */
.scroll-fade {
  animation: scrollFadeIn linear both;
  animation-timeline: view(block);
  animation-range: entry 0% entry 25%;
}

@keyframes scrollFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================================
   HOW IT WORKS
   ============================================== */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.steps--vertical {
  display: none;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.step__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step__number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
}

.step__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.step__desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 200px;
}

/* SVG connectors */
.step__connector--horizontal {
  width: 80px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 36px;
}

.step__connector--vertical {
  width: 20px;
  height: 60px;
  margin: 8px auto;
}

@media (max-width: 768px) {
  .steps {
    display: none;
  }
  .steps--vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


/* ==============================================
   FEATURE BOXES
   ============================================== */
.feature-box {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}

.feature-box:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.feature-box--teal {
  border-left: 3px solid var(--teal);
}

.feature-box--gold {
  border-left: 3px solid var(--gold);
}

.feature-box__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-box__text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

/* ==============================================
   ASSESSMENT CARDS
   ============================================== */
.card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card--gold {
  border-top: 4px solid var(--gold);
}

.card--teal {
  border-top: 4px solid var(--teal);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.card__text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

/* ==============================================
   SECTION DIVIDER / GOLD RULE
   ============================================== */
.section-divider {
  background: var(--white);
  padding: 0;
}

.gold-rule {
  border: none;
  border-top: 2px solid var(--gold);
  margin: 0;
}

/* ==============================================
   SERVICE OVERVIEW CARDS (Homepage)
   ============================================== */
.service-overview {
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-overview:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-overview__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
}

.service-overview__body {
  padding: 24px;
}

.service-overview__body .section-label {
  margin-bottom: 8px;
}

.service-overview__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-overview__desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-overview__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-text);
  display: inline-block;
}

.service-overview__link:hover {
  color: var(--navy);
}

/* ==============================================
   CALLOUT BAND (Pull-Quote)
   ============================================== */
.callout-band {
  background: var(--cloud);
  border-radius: 12px;
  padding: 48px 32px;
  margin-top: 48px;
  text-align: center;
}

.callout-band__text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy);
  max-width: 640px;
  margin: 0 auto;
}

.callout-band__link-wrap {
  text-align: center;
  margin-top: 24px;
}

.callout-band__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-text);
}

.callout-band__link:hover {
  color: var(--navy);
}

/* Scroll card animation */
.scroll-card {
  animation: scrollCardIn linear both;
  animation-timeline: view(block);
  animation-range: entry 0% entry 25%;
}

@keyframes scrollCardIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================================
   TEAM CARDS
   ============================================== */
.team-card {
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.team-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.team-card picture {
  display: block;
  width: 100%;
}

.team-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  background: var(--cloud);
  border-radius: var(--r-card) var(--r-card) 0 0;
  object-fit: cover;
  object-position: center top;
}

/* Placeholder state for team images without a src or broken images */
img.team-card__image[src=""],
img.team-card__image:not([src]) {
  border: 2px dashed var(--gold);
}

.team-card__info {
  padding: 24px;
}

.team-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.team-card__role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  background: var(--cloud);
  color: var(--slate);
  margin-bottom: 12px;
}

.team-card__role--navy {
  background: var(--navy);
  color: var(--white);
}

.team-card__qualifications {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 12px;
}

.team-card__excerpt {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}

.team-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-text);
  transition: color 0.2s;
}

.team-card__link:hover {
  color: var(--teal);
}

.team__more {
  text-align: center;
  margin-top: 32px;
}

.team__more-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-text);
  transition: color 0.2s;
}

.team__more-link:hover {
  color: var(--teal);
}

/* ==============================================
   WHY HALCYON
   ============================================== */
.why-halcyon__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .why-halcyon__grid {
    grid-template-columns: 1fr;
  }
}

.why-halcyon__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-halcyon__image {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--r-card);
}

/* Pull quote */
.why-halcyon__quote {
  position: sticky;
  top: 120px;
}

.pull-quote {
  background: var(--navy);
  border-radius: var(--r-card);
  padding: 40px 32px;
}

.pull-quote__text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pull-quote__cite {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  font-style: normal;
}

/* ==============================================
   FAQ ACCORDION
   ============================================== */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq__item[open] {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.faq__question {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease-expo);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 24px 20px;
  overflow: hidden;
}

.faq__answer p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
}

/* ==============================================
   HERO -- SPOTLIGHT (taller sub-hero for service pages)
   ============================================== */
.hero--sub {
  min-height: 60vh;
}

.hero--spotlight {
  min-height: 75vh;
}

.hero--spotlight .hero__content {
  min-height: 75vh;
}

/* ==============================================
   TIMELINE (vertical numbered steps)
   ============================================== */
.timeline {
  position: relative;
  padding-left: 48px;
  max-width: 720px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--teal), var(--gold));
  border-radius: 2px;
}

.timeline__step {
  position: relative;
  padding-bottom: 40px;
}

.timeline__step:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -48px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  z-index: 1;
}

.timeline__marker--navy  { background: var(--navy); }
.timeline__marker--teal  { background: var(--teal); }
.timeline__marker--gold  { background: var(--gold); }

.timeline__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline__body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
}

@media (max-width: 600px) {
  .timeline {
    padding-left: 40px;
  }
  .timeline::before {
    left: 15px;
  }
  .timeline__marker {
    left: -40px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* ==============================================
   NOTE PANEL
   ============================================== */
.note-panel {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}

.note-panel p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin: 0;
}

/* ==============================================
   PILL ROW -- CENTRED
   ============================================== */
.pill-row--centred {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ==============================================
   CTA SECTION
   ============================================== */
.cta-section {
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184,150,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px var(--gutter);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer__brand picture {
  display: block;
}

.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.footer__legal-mini {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Crisis panel */
.footer__crisis {
  border-left: 3px solid #e54040;
  padding: 16px 20px;
  background: rgba(229,64,64,0.08);
  border-radius: 0 var(--r-card) var(--r-card) 0;
}

.footer__crisis-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e54040;
  margin-bottom: 8px;
}

.footer__crisis p {
  font-size: 14px;
  margin-bottom: 4px;
}

.footer__crisis a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
}

.footer__crisis a:hover {
  text-decoration-color: var(--white);
}

/* Footer columns */
.footer__heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--white);
}

/* Footer bar */
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--gutter);
}

.footer__disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ==============================================
   CUSTOM CURSOR
   ============================================== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.custom-cursor__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  position: absolute;
  top: -3px;
  left: -3px;
  transition: transform 0.1s;
}

.custom-cursor__ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  position: absolute;
  top: -18px;
  left: -18px;
  transition: transform 0.15s var(--ease-expo), opacity 0.15s;
  opacity: 0.6;
}

.custom-cursor.is-hovering .custom-cursor__ring {
  transform: scale(1.5);
  opacity: 1;
}

/* Hide custom cursor on touch/mobile */
@media (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

/* Hide default cursor on desktop when custom cursor active */
@media (pointer: fine) {
  body.has-custom-cursor {
    cursor: none;
  }
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor label {
    cursor: none;
  }
}

/* ==============================================
   PREFERS REDUCED MOTION
   ============================================== */
@media (prefers-reduced-motion: reduce) {
  .reading-progress {
    animation: none;
    transform: scaleX(var(--scroll-progress, 0));
  }

  .scroll-fade,
  .scroll-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero__title,
  .hero__subtitle,
  .hero__buttons,
  .hero__trust-strip {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==============================================
   SUB-PAGE HERO (60vh)
   ============================================== */
.hero--sub {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero--sub .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--sub .hero__overlay--light {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,42,68,0.80) 0%, rgba(21,42,68,0.45) 60%, rgba(21,42,68,0.20) 100%);
  z-index: 1;
}
.hero--sub .hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 60vh;
  padding: 120px 0 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.hero--sub .hero__text-wrap {
  max-width: 640px;
}
.hero--sub .hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 1;
}
.hero--sub .hero__subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  line-height: 1.85;
  max-width: 480px;
  opacity: 1;
}
.hero--spotlight {
  min-height: 80vh;
}
.hero--spotlight .hero__content {
  min-height: 80vh;
}

/* ==============================================
   ABOUT PAGE
   ============================================== */
.about-story__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-card);
}
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ==============================================
   TEAM PROFILES
   ============================================== */
.team-profile__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.team-profile__grid--reverse {
  grid-template-columns: 1fr 300px;
}
.team-profile__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-card);
}
.team-profile__placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-card);
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.team-profile__placeholder-mark {
  width: 60px;
  height: auto;
  opacity: 0.25;
}
.team-profile__placeholder-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-profile__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-profile__role {
  font-size: 14px;
  color: var(--teal-text);
  font-weight: 600;
  margin-bottom: 16px;
}
.team-profile__excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate);
  margin-top: 16px;
}
.team-profile__details { margin-top: 14px; }
.team-profile__toggle {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-text);
  cursor: pointer;
  list-style: none;
}
.team-profile__toggle::-webkit-details-marker { display: none; }
.team-profile__full-bio {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate);
}

/* ==============================================
   SERVICE CARDS
   ============================================== */
.card--teal, .card--gold {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card--teal { border-top: 3px solid var(--teal); }
.card--gold { border-top: 3px solid var(--gold); }
.card--teal:hover, .card--gold:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.card__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
}
.card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-text);
  margin-top: 14px;
  display: inline-block;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card-expand__hidden { display: none; margin-top: 24px; }
.card-expand__hidden.is-visible {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-expand__toggle {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-text);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 1px solid var(--teal);
  padding: 0;
}

/* ==============================================
   PULL QUOTE & BANDS
   ============================================== */
.band--navy {
  background: var(--navy);
  padding: 72px 24px;
  text-align: center;
}
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy);
  max-width: 640px;
  margin: 0 auto;
}
.pull-quote--white {
  color: var(--white);
  max-width: 700px;
}

/* ==============================================
   CORPORATE BAND / NOTE PANEL / PILLS
   ============================================== */
.corporate-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.corporate-band__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.corporate-band__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
}
.note-panel {
  background: var(--cloud);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 32px;
}
.note-panel__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill--teal {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  background: var(--teal);
  color: var(--navy);
}

/* ==============================================
   TIMELINE
   ============================================== */
.timeline {
  position: relative;
  padding-left: 80px;
  margin-top: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--teal), var(--gold), var(--navy));
}
.timeline__step {
  position: relative;
  margin-bottom: 48px;
}
.timeline__step:last-child { margin-bottom: 0; }
.timeline__marker {
  position: absolute;
  left: -58px;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.timeline__marker--navy { background: var(--navy); }
.timeline__marker--teal { background: var(--teal); color: var(--navy); }
.timeline__marker--gold { background: var(--gold); color: var(--navy); }
.timeline__title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate);
}

/* ==============================================
   SPRAVATO PANEL
   ============================================== */
.spravato-panel {
  background: var(--white);
  border-radius: var(--r-card);
  border-left: 4px solid var(--navy);
  padding: 28px;
  box-shadow: var(--shadow-hover);
}
.spravato-panel__row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cloud);
}
.spravato-panel__row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.spravato-panel__key {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  width: 120px;
  flex-shrink: 0;
}
.spravato-panel__val {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}

/* ==============================================
   SECTION DIVIDER / CONTACT
   ============================================== */
.gold-rule {
  border: none;
  height: 1px;
  background: rgba(184, 150, 43, 0.3);
}
.section-divider { padding: 48px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 48px;
  align-items: start;
}
.form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__field { margin-bottom: 20px; }
.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form__input, .form__select {
  display: block;
  width: 100%;
  height: 48px;
  border: 1px solid #c8ccd2;
  border-radius: 5px;
  padding: 0 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,186,197,0.12);
}
.form__textarea {
  display: block;
  width: 100%;
  min-height: 120px;
  border: 1px solid #c8ccd2;
  border-radius: 5px;
  padding: 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  resize: vertical;
}
.form__submit { width: 100%; }

.form__file {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  border: 1px dashed #c8ccd2;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.form__file:hover,
.form__file:focus {
  border-color: var(--teal);
}

.form__label-hint {
  font-weight: 400;
  font-size: 13px;
  color: var(--slate);
}

/* ---------- HubSpot Embedded Form ---------- */
.hs-form-frame {
  max-width: 600px;
  margin: 0 auto;
}

.hs-form-frame input,
.hs-form-frame textarea {
  font-family: var(--font-body) !important;
  border: 1px solid var(--cloud) !important;
  border-radius: var(--r-btn) !important;
  padding: 12px 16px !important;
}

.hs-form-frame select {
  font-family: var(--font-body) !important;
  border: 1px solid var(--cloud) !important;
  border-radius: var(--r-btn) !important;
  padding: 12px 16px !important;
}

.hs-form-frame label {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--charcoal) !important;
}

.hs-form-frame input[type="submit"] {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  padding: 14px 32px !important;
  border: none !important;
  border-radius: var(--r-btn) !important;
  cursor: pointer !important;
  width: auto !important;
  transition: background 0.3s ease !important;
}

.hs-form-frame input[type="submit"]:hover {
  background: var(--teal) !important;
}

.form-consent {
  font-size: 12px;
  color: var(--grey);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 600px;
}

.form-consent a {
  color: var(--teal-text);
  text-decoration: underline;
}

/* Thank You page */
.thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-v) var(--gutter);
}

.thank-you__inner {
  max-width: 560px;
}

.thank-you__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you__icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--white);
  fill: none;
}

.thank-you__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 16px;
}

.thank-you__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 32px;
}

.thank-you__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--teal);
}

.thank-you__back:hover {
  text-decoration: underline;
}

.contact-panel {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}
.contact-panel__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.contact-panel__item {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 6px;
  line-height: 1.6;
}
.contact-panel__item a { color: var(--teal-text); }
.contact-panel__legal {
  font-size: 12px;
  color: var(--grey);
  margin-top: 16px;
  line-height: 1.6;
}
.contact-panel__note {
  font-size: 13px;
  color: var(--slate);
  margin-top: 12px;
  font-style: italic;
}
.contact-panel--crisis { border-left: 3px solid #d63031; }
.contact-panel__crisis-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #d63031;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==============================================
   RESPONSIVE — TABLET (768px)
   ============================================== */
@media (max-width: 768px) {
  .hero__bg {
    background-position: 20% center;
  }
  .hero__overlay {
    background: linear-gradient(to top,
      rgba(21,42,68,0.92) 0%,
      rgba(21,42,68,0.75) 45%,
      rgba(21,42,68,0.30) 70%,
      rgba(21,42,68,0.08) 100%
    );
  }
  .hero__content {
    width: 100%;
    padding: 40px var(--gutter);
    background: none;
    justify-content: flex-end;
    padding-bottom: 100px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: clamp(24px, 5vw, 36px);
  }

  .why-halcyon__features {
    grid-template-columns: 1fr;
  }

  .hero--sub .hero__content {
    min-height: 50vh;
    padding: 100px var(--gutter) 60px;
  }
  .grid-2-col, .grid-2, .contact-grid {
    grid-template-columns: 1fr;
  }
  .team-profile__grid, .team-profile__grid--reverse {
    grid-template-columns: 1fr;
  }
  .card-expand__hidden.is-visible {
    grid-template-columns: 1fr;
  }
  .corporate-band {
    flex-direction: column;
    text-align: center;
  }
  .form__row--2col {
    grid-template-columns: 1fr;
  }
  .timeline {
    padding-left: 60px;
  }
  .timeline__marker {
    left: -48px;
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .timeline::before {
    left: 16px;
  }
}

/* ==============================================
   RESPONSIVE — MOBILE (480px)
   ============================================== */
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(32px, 8vw, 44px);
  }

  .hero__trust-inner {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .feature-box {
    padding: 20px;
  }

  .team-card__image {
    aspect-ratio: 4 / 3;
  }

  .pull-quote {
    padding: 28px 24px;
  }

  .cta-section__buttons {
    flex-direction: column;
  }

  .cta-section__buttons .btn {
    width: 100%;
  }

  .footer__inner {
    padding: 40px var(--gutter);
  }

  .mega-dropdown {
    display: none;
  }
}
