:root {
  --navy: #071e55;
  --navy-2: #102c68;
  --royal: #2512d8;
  --blue: #7fa2f6;
  --ink: #14203f;
  --muted: #65708a;
  --silver: #eef1f6;
  --line: #d8deea;
  --white: #ffffff;
  --green: #2f8a6a;
  --coral: #b85443;
  --shadow: 0 22px 60px rgba(7, 30, 85, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 222, 234, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 850;
  color: var(--navy);
}

.brand-mark {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(3, 8px);
  align-items: end;
  gap: 4px;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 9px 8px;
  border: 2px solid rgba(7, 30, 85, 0.35);
  border-radius: 50%;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 8px;
  width: 28px;
  height: 13px;
  border-right: 4px solid var(--royal);
  border-bottom: 4px solid var(--royal);
  transform: rotate(-28deg);
}

.brand-mark span {
  display: block;
  width: 8px;
  background: linear-gradient(180deg, var(--blue), var(--royal));
  border-radius: 2px 2px 0 0;
}

.brand-mark span:nth-child(1) {
  height: 16px;
}

.brand-mark span:nth-child(2) {
  height: 25px;
}

.brand-mark span:nth-child(3) {
  height: 32px;
}

.brand-text {
  overflow-wrap: anywhere;
}

.nav {
  display: flex;
  gap: 24px;
  color: #37415f;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav a,
.header-cta,
.button,
.contact-links a,
.intro-actions a {
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.nav a:hover,
.contact-links a:hover,
.intro-actions a:hover {
  color: var(--royal);
}

.header-cta,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 850;
  text-align: center;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--royal);
}

.button.secondary {
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--white);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 78px) 64px;
  background:
    linear-gradient(115deg, rgba(238, 241, 246, 0.92) 0%, rgba(255, 255, 255, 0.98) 44%, rgba(127, 162, 246, 0.18) 100%),
    var(--white);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--royal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.75rem, 8vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.18rem;
}

.hero-lede {
  max-width: 680px;
  color: #3e4967;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 750;
}

.hero-visual {
  min-width: 0;
  border: 12px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--silver);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: min(720px, 72vh);
  object-fit: cover;
  object-position: center top;
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 78px);
}

.intro-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  color: var(--white);
  background: var(--navy);
}

.intro-band h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--white);
}

.intro-actions {
  display: grid;
  gap: 10px;
  font-weight: 850;
}

.intro-actions a {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(7, 30, 85, 0.06);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card p,
.split-copy p,
.contact p,
.booking-copy p,
.footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background: var(--silver);
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list div {
  padding: 20px;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.05rem;
}

.benefit-list span {
  color: var(--muted);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.audience-grid span {
  padding: 18px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8f9fc);
  font-weight: 850;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 78px);
  background: var(--navy);
}

.booking-copy {
  position: sticky;
  top: 118px;
  color: var(--white);
}

.booking-copy h2,
.booking-copy p {
  color: var(--white);
}

.booking-copy p {
  opacity: 0.82;
}

.calendar-wrap {
  min-width: 0;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.calendar-note {
  margin: 10px 8px 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.calendar-note a {
  color: var(--royal);
  font-weight: 850;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.contact-links {
  display: grid;
  gap: 12px;
  min-width: min(100%, 360px);
}

.contact-links a {
  padding: 16px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 850;
}

.footer {
  display: grid;
  gap: 12px;
  padding: 36px clamp(20px, 5vw, 78px);
  color: rgba(255, 255, 255, 0.82);
  background: #06143c;
}

.footer .brand {
  color: var(--white);
}

.footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.small-print {
  max-width: 760px;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .split,
  .booking-section,
  .intro-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .booking-copy {
    position: static;
  }

  .service-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
    padding: 14px 16px;
  }

  .brand-text {
    font-size: 0.94rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 42px 16px 38px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .section,
  .booking-section {
    padding: 48px 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    border-width: 8px;
  }

  .calendly-inline-widget {
    height: 720px !important;
  }
}
