/* ============================================================
   BLUE HORIZON GROUP — STYLESHEET v1.0
   Libre Baskerville + Source Sans 3  |  bhorizon.com.au
   ============================================================ */

:root {
  --deep-ocean:   #0D2B4E;
  --horizon-blue: #1A4A7A;
  --mid-blue:     #2A6AAD;
  --pacific:      #2A9FD6;
  --sea-mist:     #AECDE8;
  --sky-blue:     #D6E9F5;
  --shoreline:    #F2F6FA;
  --anchor-grey:  #4A5568;
  --navy-dark:    #081d35;
  --white:        #FFFFFF;

  --ff-display: 'Libre Baskerville', Georgia, serif;
  --ff-body:    'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;

  --max-w:  1200px;
  --nav-h:  72px;
  --sec-v:  96px;
  --radius: 6px;
  --ease:   0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--anchor-grey);
  -webkit-font-smoothing: antialiased;
}
img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button{ cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
.hidden { display: none !important; }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: var(--sec-v) 0; }
.section--shore { background: var(--shoreline); }
.section--sky   { background: var(--sky-blue); }
.section--dark  { background: var(--deep-ocean); }

/* ── TYPOGRAPHY UTILITIES ── */
.eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pacific);
  margin-bottom: 14px;
}
.sec-head {
  max-width: 660px;
  margin: 0 auto 56px;
  text-align: center;
}
.sec-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--deep-ocean);
  line-height: 1.2;
  margin-bottom: 16px;
}
.sec-head p { font-size: 1rem; color: var(--anchor-grey); line-height: 1.7; }
.sec-head--dark h2 { color: var(--white); }
.sec-head--dark p  { color: var(--sea-mist); }
.sec-head--left    { margin-left: 0; text-align: left; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--pacific);
  color: var(--white);
  border: 2px solid var(--pacific);
}
.btn-primary:hover { background: var(--mid-blue); border-color: var(--mid-blue); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-ghost-sm {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  font-size: 0.5625rem;
  padding: 11px 24px;
}
.btn-ghost-sm:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: var(--deep-ocean);
  box-shadow: 0 2px 28px rgba(0,0,0,0.4);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__badge {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav__logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav__logo-words b {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav__logo-words small {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pacific);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--pacific);
  transition: width var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--white); }
.nav__cta {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--pacific);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background var(--ease);
}
.nav__cta:hover { background: var(--mid-blue); }

/* hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.nav__drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--deep-ocean);
  padding: 16px 32px 28px;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  z-index: 199;
}
.nav__drawer.open { display: flex; }
.nav__drawer .nav__link {
  padding: 14px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav__drawer .nav__cta {
  margin-top: 20px;
  text-align: center;
  display: block;
  padding: 14px;
  border-radius: var(--radius);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 20% 65%, rgba(42,159,214,0.13) 0%, transparent 52%),
    radial-gradient(ellipse at 78% 18%, rgba(26,74,122,0.28) 0%, transparent 48%),
    linear-gradient(162deg, #09192c 0%, var(--deep-ocean) 38%, var(--horizon-blue) 72%, #1c528e 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 64px) 32px 140px;
}
.hero__content { position: relative; z-index: 2; max-width: 880px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pacific);
  margin-bottom: 30px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--pacific);
  opacity: 0.55;
}
.hero__logo {
  display: block;
  margin: 0 auto 36px;
  max-width: 320px;
  filter: brightness(0) invert(1);
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero__lead {
  font-size: 1.0625rem;
  color: var(--sea-mist);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 52px;
}
.hero__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__scroll {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.35);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
  z-index: 2;
}
.hero__scroll svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.38; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 0.7; }
}

/* wave dividers */
.wave { position: absolute; bottom: -2px; left: 0; right: 0; line-height: 0; z-index: 1; }
.wave svg { display: block; width: 100%; }

/* ── PILLARS ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 60px;
}
.pillar__icon {
  width: 52px; height: 52px;
  background: var(--sky-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.pillar__icon svg {
  width: 22px; height: 22px;
  stroke: var(--horizon-blue);
  fill: none; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.pillar h3 {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 12px;
}
.pillar p { font-size: 0.9375rem; color: var(--anchor-grey); line-height: 1.7; }
.pillars--dark .pillar__icon { background: rgba(255,255,255,0.07); }
.pillars--dark .pillar__icon svg { stroke: var(--pacific); }
.pillars--dark .pillar h3 { color: var(--white); }
.pillars--dark .pillar p  { color: var(--sea-mist); }

/* ── COMPANY CARDS ── */
.companies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.company-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  box-shadow: 0 2px 20px rgba(13,43,78,0.08);
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
  border-top: 3px solid var(--pacific);
}
.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13,43,78,0.15);
}
.company-card__logo {
  height: 52px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
}
.company-card__quote {
  font-family: var(--ff-display);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--pacific);
  margin-bottom: 14px;
  line-height: 1.5;
}
.company-card__text {
  font-size: 0.9375rem;
  color: var(--anchor-grey);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pacific);
  margin-top: auto;
  transition: gap var(--ease), color var(--ease);
}
.card-link:hover { gap: 11px; color: var(--horizon-blue); }
.card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* ── SERVICES GRID ── */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(13,43,78,0.07);
  border-left: 3px solid var(--pacific);
}
.service-card .eyebrow { margin-bottom: 10px; }
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.9375rem; color: var(--anchor-grey); line-height: 1.7; }

/* ── ENTITY HERO ── */
.entity-hero {
  min-height: 75vh;
  background:
    radial-gradient(ellipse at 30% 55%, rgba(42,159,214,0.1) 0%, transparent 58%),
    linear-gradient(158deg, #09192c 0%, var(--deep-ocean) 44%, var(--horizon-blue) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 64px) 32px 130px;
}
.entity-hero__content { position: relative; z-index: 2; max-width: 760px; }
.entity-hero__logo {
  display: block;
  margin: 0 auto 36px;
  max-width: 340px;
  filter: brightness(0) invert(1);
}
.entity-hero__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--sea-mist);
  line-height: 1.45;
  margin-bottom: 20px;
}
.entity-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.entity-hero__text {
  font-size: 1rem;
  color: var(--sea-mist);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

/* ── INTRO BLOCK ── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro__text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--deep-ocean);
  line-height: 1.25;
  margin-bottom: 20px;
}
.intro__text p {
  font-size: 1rem;
  color: var(--anchor-grey);
  line-height: 1.7;
  margin-bottom: 14px;
}
.intro__text p:last-of-type { margin-bottom: 32px; }
.intro__visual {
  background: var(--sky-blue);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.intro__visual img { width: 100%; height: 100%; object-fit: cover; }
.intro__badge {
  width: 160px;
  opacity: 0.12;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--mid-blue) 0%, var(--horizon-blue) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-strip p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}

/* ── CONTACT ── */
.contact {
  background: var(--deep-ocean);
  padding: var(--sec-v) 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.contact__info h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 18px;
}
.contact__info p {
  font-size: 0.9375rem;
  color: var(--sea-mist);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact__details { display: flex; flex-direction: column; gap: 14px; }
.contact__detail {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.875rem; color: var(--sea-mist);
}
.contact__detail svg {
  width: 16px; height: 16px;
  stroke: var(--pacific); fill: none; stroke-width: 1.75;
  flex-shrink: 0; margin-top: 3px;
  stroke-linecap: round; stroke-linejoin: round;
}

/* form */
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sea-mist);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(174,205,232,0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(174,205,232,0.28); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232A9FD6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-group select option { background: var(--deep-ocean); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pacific);
  background: rgba(255,255,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form__footer { display: flex; align-items: center; gap: 20px; margin-top: 4px; flex-wrap: wrap; }
.form__note { font-size: 0.5625rem; color: rgba(174,205,232,0.38); line-height: 1.5; }
.form-success {
  display: none;
  padding: 32px;
  background: rgba(42,159,214,0.09);
  border: 1px solid rgba(42,159,214,0.22);
  border-radius: var(--radius);
  text-align: center;
  line-height: 1.6;
}
.form-success strong { display: block; color: var(--white); font-size: 1.0625rem; margin-bottom: 8px; }
.form-success span { color: var(--sea-mist); font-size: 0.9375rem; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  height: 44px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-bottom: 18px;
}
.footer__wordmark b {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer__wordmark small {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pacific);
}
.footer__tagline {
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(174,205,232,0.45);
  line-height: 1.65;
}
.footer__col-title {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pacific);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__link { font-size: 0.875rem; color: rgba(174,205,232,0.58); transition: color var(--ease); }
.footer__link:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__legal { font-size: 0.5625rem; font-weight: 300; color: rgba(174,205,232,0.28); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--navy-dark);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.breadcrumb__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(174,205,232,0.4);
}
.breadcrumb__inner a { color: var(--pacific); transition: color var(--ease); }
.breadcrumb__inner a:hover { color: var(--white); }
.breadcrumb__sep { color: rgba(174,205,232,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .companies   { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
  .intro       { grid-template-columns: 1fr; }
  .intro__visual { display: none; }
}
@media (max-width: 768px) {
  :root { --sec-v: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .pillars  { grid-template-columns: 1fr; gap: 36px; }
  .services { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; }
  .hero__btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .container, .nav__inner, .breadcrumb__inner { padding-left: 20px; padding-right: 20px; }
}

/* ── HERO ACCENT & BADGE ── */
.hero__accent { color: var(--pacific); }
.hero__badge {
  display: block;
  width: 120px; height: 120px;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ── ABOUT / OWNED ── */
.about__owned {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--mid-blue);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── CAPABILITIES GRID ── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cap-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  box-shadow: 0 2px 20px rgba(13,43,78,0.08);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
  border-top: 3px solid var(--pacific);
  text-align: left;
}
.cap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13,43,78,0.15);
}
.cap-card__icon {
  width: 80px; height: 80px;
  margin-bottom: 24px;
  object-fit: contain;
}
.cap-card h3 {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 14px;
}
.cap-card p {
  font-size: 0.9375rem;
  color: var(--anchor-grey);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
}

/* ── PULL QUOTE ── */
.pull-quote {
  background: var(--deep-ocean);
  padding: 72px 0;
  text-align: center;
}
.pull-quote__text {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--sea-mist);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto;
}
.pull-quote__text strong {
  color: var(--white);
  font-style: normal;
}

/* ── CONTACT TABS ── */
.contact-tabs {
  display: flex;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(174,205,232,0.15);
}
.contact-tab {
  padding: 12px 20px 14px;
  font-family: var(--ff-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(174,205,232,0.45);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--ease), border-color var(--ease);
  background: none;
  white-space: nowrap;
}
.contact-tab.active {
  color: var(--white);
  border-bottom-color: var(--pacific);
}
.contact-tab:hover { color: rgba(174,205,232,0.8); }
.contact-panel { display: none; }
.contact-panel.active { display: block; }

/* ── POLICY PAGE ── */
.policy-body {
  max-width: 760px;
  margin: 0 auto;
}
.policy-meta {
  font-size: 0.8125rem;
  color: var(--pacific);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.policy-body h2 {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-top: 44px;
  margin-bottom: 14px;
}
.policy-body p {
  font-size: 0.9375rem;
  color: var(--anchor-grey);
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.policy-body ul li {
  font-size: 0.9375rem;
  color: var(--anchor-grey);
  line-height: 1.8;
  margin-bottom: 6px;
}
.policy-body a {
  color: var(--pacific);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}
.policy-body a:hover { color: var(--horizon-blue); }
.policy-contact {
  background: var(--shoreline);
  border-radius: var(--radius);
  padding: 24px 28px;
  border-left: 3px solid var(--pacific);
  margin-top: 8px;
}
.policy-contact p { margin-bottom: 0; }

/* ── DISCIPLINES GRID ── */
.disciplines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.discipline-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(13,43,78,0.07);
  border-top: 3px solid var(--pacific);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.discipline-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.discipline-card__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--sky-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.discipline-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--horizon-blue);
  fill: none; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.discipline-card__head h3 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-ocean);
  line-height: 1.25;
}
.discipline-card p {
  font-size: 0.9rem;
  color: var(--anchor-grey);
  line-height: 1.7;
}
.discipline-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.discipline-card__tags li {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-blue);
  background: var(--sky-blue);
  border-radius: 40px;
  padding: 5px 12px;
}

/* ── PORTAL ── */
.portal-hero {
  background: linear-gradient(158deg, #09192c 0%, var(--deep-ocean) 50%, var(--horizon-blue) 100%);
  padding: calc(var(--nav-h) + 60px) 0 72px;
  text-align: center;
}
.portal-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.portal-hero p {
  font-size: 1rem;
  color: var(--sea-mist);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.portal-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
  padding: var(--sec-v) 0;
}
.portal-login {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: 0 4px 32px rgba(13,43,78,0.12);
  border-top: 3px solid var(--pacific);
}
.portal-login h2 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 6px;
}
.portal-login .portal-login__sub {
  font-size: 0.875rem;
  color: var(--anchor-grey);
  margin-bottom: 28px;
}
.portal-form { display: flex; flex-direction: column; gap: 16px; }
.portal-form .form-group label {
  color: var(--anchor-grey);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.portal-form .form-group input {
  background: var(--shoreline);
  border: 1px solid rgba(13,43,78,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--deep-ocean);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  width: 100%;
}
.portal-form .form-group input:focus {
  border-color: var(--pacific);
  background: var(--white);
}
.portal-form .form-group input::placeholder { color: rgba(74,85,104,0.4); }
.portal-login__forgot {
  text-align: right;
  font-size: 0.75rem;
  color: var(--pacific);
  margin-top: -8px;
  display: block;
  transition: color var(--ease);
}
.portal-login__forgot:hover { color: var(--horizon-blue); }
.portal-login__btn {
  width: 100%;
  padding: 14px;
  background: var(--pacific);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease);
  margin-top: 8px;
}
.portal-login__btn:hover { background: var(--mid-blue); }
.portal-login__divider {
  border: none;
  border-top: 1px solid rgba(13,43,78,0.1);
  margin: 24px 0 20px;
}
.portal-login__support {
  font-size: 0.8125rem;
  color: var(--anchor-grey);
  text-align: center;
  line-height: 1.6;
}
.portal-login__support a { color: var(--pacific); transition: color var(--ease); }
.portal-login__support a:hover { color: var(--horizon-blue); }
.portal-resources h2 {
  font-family: var(--ff-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 8px;
}
.portal-resources > p {
  font-size: 0.9375rem;
  color: var(--anchor-grey);
  margin-bottom: 32px;
  line-height: 1.7;
}
.resource-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.resource-tile {
  background: var(--shoreline);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(13,43,78,0.07);
  transition: background var(--ease), box-shadow var(--ease);
  cursor: default;
}
.resource-tile--link {
  cursor: pointer;
  text-decoration: none;
}
.resource-tile--link:hover {
  background: var(--sky-blue);
  box-shadow: 0 4px 16px rgba(13,43,78,0.1);
}
.resource-tile__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--sky-blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.resource-tile--link:hover .resource-tile__icon { background: var(--white); }
.resource-tile__icon svg {
  width: 18px; height: 18px;
  stroke: var(--horizon-blue);
  fill: none; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.resource-tile h3 {
  font-family: var(--ff-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--deep-ocean);
  margin-bottom: 4px;
}
.resource-tile p {
  font-size: 0.8125rem;
  color: var(--anchor-grey);
  line-height: 1.5;
}
.portal-notice {
  background: var(--sky-blue);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  border-left: 3px solid var(--pacific);
}
.portal-notice svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  stroke: var(--mid-blue);
  fill: none; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
  margin-top: 2px;
}
.portal-notice p { font-size: 0.8125rem; color: var(--horizon-blue); line-height: 1.6; }

/* ── RESPONSIVE: NEW COMPONENTS ── */
@media (max-width: 1024px) {
  .capabilities-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .disciplines { grid-template-columns: repeat(2, 1fr); }
  .portal-grid { grid-template-columns: 1fr; }
  .portal-login { max-width: 480px; }
}
@media (max-width: 768px) {
  .contact-tabs { flex-wrap: wrap; gap: 4px; border-bottom: none; }
  .contact-tab {
    border: 1px solid rgba(174,205,232,0.2);
    border-radius: var(--radius);
    margin-bottom: 0;
  }
  .contact-tab.active { border-color: var(--pacific); }
  .disciplines { grid-template-columns: 1fr; }
  .resource-tiles { grid-template-columns: 1fr; }
}
