:root {
  --navy-950: #06101f;
  --navy-900: #08182d;
  --navy-850: #0b213d;
  --navy-800: #0d2d54;
  --blue: #00a9e8;
  --gold: #c6a15b;
  --gold-soft: #f0d799;
  --white: #ffffff;
  --text: #f7fbff;
  --muted: #b7c5d6;
  --muted-2: #8798ad;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --font-sans: "Montserrat", Arial, sans-serif;
  --font-serif: "Libre Baskerville", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 169, 232, 0.16), transparent 30%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 42%, #071322);
  font-family: var(--font-sans);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

:where(a, button, input, textarea):focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 10px clamp(20px, 5vw, 74px);
  background: rgba(6, 16, 31, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(6, 16, 31, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: clamp(61px, 5.4vw, 85px);
}

.brand-wordmark {
  display: grid;
  gap: 3px;
  color: var(--blue);
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.45vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand-wordmark span:last-child {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.56em;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(198, 161, 91, 0.72);
  background: rgba(198, 161, 91, 0.14);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  padding: 148px clamp(22px, 6vw, 92px) 80px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 16, 31, 0.96), rgba(6, 16, 31, 0.76) 45%, rgba(6, 16, 31, 0.34)),
    linear-gradient(180deg, rgba(6, 16, 31, 0.25), rgba(6, 16, 31, 0.92));
}

.hero::after {
  position: absolute;
  right: -18vw;
  bottom: -22vw;
  z-index: -1;
  width: 58vw;
  height: 58vw;
  content: "";
  border: 1px solid rgba(198, 161, 91, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 169, 232, 0.14), transparent 64%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  width: min(100%, 1180px);
  min-height: calc(100vh - 190px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 790px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-kicker img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker .eyebrow {
  margin: 0;
  font-size: clamp(0.92rem, 1.6vw, 1.18rem);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.team-copy h2,
.service-feature-copy h2,
.cta-card h2 {
  font-family: var(--font-serif);
  line-height: 1.08;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(2.45rem, 4.8vw, 4.35rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #06101f;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-soft);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold);
  background: rgba(198, 161, 91, 0.12);
}

.hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 16, 31, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel p {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  border-left: 2px solid var(--gold);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 44px, 1180px);
  margin: -44px auto 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-band div {
  padding: 26px;
  background: rgba(8, 24, 45, 0.94);
}

.trust-band span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-band strong {
  display: block;
  color: var(--white);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
}

.section-pad {
  padding: clamp(76px, 11vw, 136px) clamp(22px, 6vw, 92px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(36px, 7vw, 90px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-heading h2,
.feature-copy h2,
.team-copy h2,
.service-feature-copy h2,
.cta-card h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
}

.intro-copy p,
.feature-copy > p,
.team-copy > p,
.service-feature-copy > p,
.section-heading > p,
.cta-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  width: min(100% - 44px, 1240px);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.feature-image,
.team-photo {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.feature-image img,
.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.feature-copy {
  padding: clamp(16px, 3vw, 22px) 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.service-grid article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 16, 31, 0.5);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 161, 91, 0.5);
  background: rgba(13, 45, 84, 0.72);
}

.service-grid h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1rem;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.services-hero .page-hero-media img {
  object-position: center 34%;
}

.about-hero .page-hero-media img {
  object-position: center 10%;
}

.carriers-hero .page-hero-media img {
  object-position: center 44%;
}

.services-overview {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.services-list article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.services-list h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.68rem);
  line-height: 1.18;
}

.services-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.services-intro-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 1180px);
  margin: 30px auto 0;
  padding: 24px;
  border: 1px solid rgba(198, 161, 91, 0.24);
  border-radius: 8px;
  background: rgba(6, 16, 31, 0.54);
}

.services-intro-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-detail-band {
  padding-top: clamp(56px, 8vw, 104px);
  padding-bottom: clamp(56px, 8vw, 104px);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.service-feature-reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
}

.service-feature-reverse .service-feature-image {
  order: 2;
}

.service-feature-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.service-feature-image img {
  width: 100%;
  height: clamp(420px, 46vw, 660px);
  object-fit: cover;
}

.service-feature-copy {
  padding: clamp(8px, 2vw, 18px) 0;
}

.service-feature-copy p {
  margin-bottom: 18px;
}

.service-feature-copy p:last-child {
  margin-bottom: 0;
}

.team-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
}

.section-link {
  margin-top: 28px;
}

.team-photo img {
  min-height: 460px;
}

.carriers-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.carrier-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(280px, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.carrier-intro-copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.carrier-intro-copy p {
  margin-bottom: 18px;
}

.carrier-intro-copy p:last-child {
  margin-bottom: 0;
}

.centered {
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

.carrier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.carrier-groups {
  display: grid;
  gap: 38px;
}

.carrier-group-heading {
  width: min(100%, 1120px);
  margin: 0 auto 18px;
}

.carrier-group-heading h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.carrier-group-heading p {
  margin: 0;
  color: var(--muted);
}

.carrier-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 218px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.carrier-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.carrier-grid img {
  align-self: center;
  max-width: 190px;
  max-height: 70px;
  min-height: 70px;
  object-fit: contain;
  margin-bottom: 18px;
}

.carrier-grid img[src$="download-1.jpg"],
.carrier-grid img[src$="aetna.png"],
.carrier-grid img[src$="download-4.png"],
.carrier-grid img[src$="Humana_400x400-01-e1587143481251.png"] {
  max-width: 250px;
  max-height: 100px;
  min-height: 100px;
}

.carrier-grid img[src$="download.png"] {
  max-width: 230px;
  max-height: 92px;
  min-height: 92px;
}

.carrier-grid img[src$="review-roundstone-official-white.png"] {
  width: 190px;
  height: 70px;
  box-sizing: border-box;
  padding: 13px 18px;
  background: var(--navy-900);
  border-radius: 4px;
}

.carrier-grid h3 {
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 0.96rem;
  line-height: 1.3;
}

.carrier-grid h3 span {
  display: block;
  margin-top: 4px;
  color: #66758a;
  font-size: 0.78rem;
  font-weight: 700;
}

.carrier-grid p {
  margin: 0;
  color: #4b5a6c;
  font-size: 0.86rem;
  line-height: 1.55;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.contact-page {
  min-height: calc(100vh - 112px);
  padding-top: 160px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 169, 232, 0.13), transparent 30%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
}

.contact-intro {
  width: min(100%, 1180px);
  margin: 0 auto 42px;
}

.contact-intro h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1.04;
}

.contact-intro p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.contact-form,
.contact-details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
}

.contact-side {
  display: grid;
  gap: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

.hidden-field {
  display: none;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full,
.contact-form .button {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--text);
  background: rgba(6, 16, 31, 0.72);
  font: inherit;
}

.form-row input {
  min-height: 48px;
  padding: 10px 14px;
}

.form-row textarea {
  min-height: 180px;
  resize: vertical;
  padding: 14px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.is-success {
  color: #9ad9b7;
}

.form-status.is-error {
  color: #ffb4a8;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(0, 169, 232, 0.45);
  border-color: rgba(0, 169, 232, 0.65);
}

.contact-details {
  display: grid;
  gap: 28px;
  padding: clamp(26px, 4vw, 42px);
}

.contact-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 16, 31, 0.55);
}

.contact-photo img {
  width: 100%;
  height: clamp(260px, 30vw, 380px);
  object-fit: cover;
  object-position: center 38%;
}

.contact-details h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.contact-details p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-details a {
  color: var(--muted);
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--gold-soft);
}

.cta-section {
  padding: 0 clamp(22px, 6vw, 92px) clamp(76px, 10vw, 132px);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid rgba(198, 161, 91, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(198, 161, 91, 0.16), rgba(0, 169, 232, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.cta-card div {
  max-width: 760px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(22px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid var(--line);
  background: rgba(2, 8, 16, 0.72);
  font-size: 0.84rem;
}

.site-footer img {
  width: 110px;
}

.site-footer p {
  margin: 0;
}

.placeholder-main {
  min-height: calc(100vh - 112px);
  padding: 160px clamp(22px, 6vw, 92px) 90px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 169, 232, 0.14), transparent 32%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
}

.placeholder-card {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.placeholder-card h1 {
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.08;
}

.placeholder-card p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 160px clamp(22px, 6vw, 92px) 86px;
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media {
  z-index: -3;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.05);
}

.page-hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 16, 31, 0.94), rgba(6, 16, 31, 0.72) 48%, rgba(6, 16, 31, 0.36)),
    linear-gradient(180deg, rgba(6, 16, 31, 0.1), rgba(6, 16, 31, 0.94));
}

.page-hero-content {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 1.06;
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.mission-section,
.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(280px, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.mission-copy,
.story-copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.story-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(6, 16, 31, 0.62);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: clamp(300px, 32vw, 420px);
  object-fit: cover;
  object-position: center 46%;
}

.team-page {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.team-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  min-height: 320px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.team-card-media {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-card-image {
  overflow: hidden;
  height: 260px;
  min-height: 260px;
  border-radius: 8px;
  background: rgba(6, 16, 31, 0.5);
}

.team-card-placeholder {
  display: grid;
  place-items: center;
  height: 260px;
  min-height: 260px;
  border: 1px solid rgba(198, 161, 91, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 169, 232, 0.16), rgba(198, 161, 91, 0.1)),
    rgba(6, 16, 31, 0.62);
}

.team-card-placeholder span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-card-image img.team-card-image-person {
  object-fit: cover;
}

.team-card-image img.team-card-image-joel {
  object-position: center 18%;
  transform: scale(1.18);
  transform-origin: center 18%;
}

.team-card-image img.team-card-image-kevin {
  object-fit: cover;
  object-position: center 30%;
}

.team-card-image img.team-card-image-kathy {
  object-fit: cover;
  object-position: center 42%;
}

.team-card-image img.team-card-image-jack {
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.78);
  transform-origin: center 18%;
}

.team-socials {
  display: grid;
  gap: 7px;
}

.team-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(198, 161, 91, 0.34);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.team-social::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 20px;
  border-radius: 5px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.team-social-facebook::before {
  content: "f";
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.team-social-x::before {
  content: "X";
  background: #000000;
  font-family: Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
}

.team-social-linkedin::before {
  content: "in";
  background: #0a66c2;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.team-social:hover,
.team-social:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(198, 161, 91, 0.75);
  background: rgba(198, 161, 91, 0.16);
}

.team-card-copy {
  align-self: center;
}

.team-role {
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.team-card-copy p:not(.team-role) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.62;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 110ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 940px) {
  .hero-inner,
  .intro-section,
  .feature-section,
  .team-section,
  .service-feature,
  .service-feature-reverse,
  .mission-section,
  .about-story,
  .carrier-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-feature-reverse .service-feature-image {
    order: 0;
  }

  .hero-inner {
    align-items: center;
    min-height: auto;
  }

  .hero-panel {
    max-width: 520px;
  }

  .trust-band,
  .services-list,
  .carrier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-image img,
  .team-photo img,
  .story-image img {
    min-height: 380px;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 10px 20px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(6, 16, 31, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 0;
  }

  .hero {
    min-height: 760px;
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 16, 31, 0.76), rgba(6, 16, 31, 0.96)),
      linear-gradient(90deg, rgba(6, 16, 31, 0.6), rgba(6, 16, 31, 0.42));
  }

  .trust-band,
  .service-grid,
  .services-list,
  .carrier-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 56px;
  }

  .brand-wordmark {
    font-size: 0.86rem;
  }

  .feature-section {
    width: min(100% - 28px, 1240px);
    padding: 16px;
  }

  .services-intro-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding-inline: 20px;
  }

  .page-hero {
    min-height: 560px;
    padding: 130px 20px 64px;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card-image,
  .team-card-placeholder {
    min-height: 320px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-right: 16px;
    padding-left: 16px;
  }

  .trust-band {
    width: min(100% - 28px, 1180px);
  }
}
