/* About section styles from uploaded About ZIP */
:root {
  --navy: #062f56;
  --navy-deep: #03284d;
  --teal: #078c8b;
  --teal-dark: #057878;
  --ink: #202b3f;
  --muted: #4f5a70;
  --card-border: rgba(6, 47, 86, 0.095);
  --soft: #f4fbfc;
  --soft-strong: #e7f6f7;
  --shadow: 0 20px 46px rgba(7, 44, 76, 0.105);
  --shadow-light: 0 12px 32px rgba(7, 44, 76, 0.08);
  --heading-font: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body-font: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: var(--body-font);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.page-shell {
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 12%, rgba(7, 140, 139, 0.035), transparent 22rem),
    radial-gradient(circle at 86% 20%, rgba(7, 140, 139, 0.035), transparent 22rem),
    #fff;
}

.about-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}

.about-container {
  width: min(calc(100% - clamp(24px, 7.2vw, 140px)), 1310px);
  margin-inline: auto;
}

.about-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(488px, 0.88fr);
  column-gap: clamp(48px, 5.3vw, 78px);
  align-items: start;
  padding-top: 68px;
  padding-bottom: 34px;
}

.section-kicker {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 24px;
  color: var(--teal);
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.105em;
}

.section-kicker::after {
  content: "";
  width: 45px;
  height: 3px;
  border-radius: 100px;
  background: var(--teal);
}

.about-copy h1 {
  margin: 0;
  max-width: 770px;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: clamp(4rem, 5vw, 5.92rem);
  line-height: 0.965;
  font-weight: 700;
  letter-spacing: -0.048em;
}

.about-copy h1 span {
  color: var(--teal);
}

.title-rule {
  display: block;
  width: 74px;
  height: 3px;
  margin: 31px 0 29px;
  border-radius: 100px;
  background: var(--teal);
}

.about-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.about-copy p + p {
  margin-top: 33px;
}

.about-section--no-title .about-copy {
  align-self: center;
  padding-top: 0;
}

.about-section--no-title .section-kicker {
  margin-bottom: 30px;
}

.about-section--no-title .about-copy p {
  max-width: 680px;
}

.about-section--no-title .about-copy p:first-of-type {
  font-size: 20px;
  line-height: 1.64;
}

.about-section--no-title .about-visual {
  padding-top: 0;
}

.about-section--no-title .service-grid {
  margin-top: 0;
}

.about-section--no-title .about-main {
  align-items: center;
  padding-top: 72px;
  padding-bottom: 48px;
}

.about-visual {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(100%, 526px);
  padding-top: 50px;
}

.about-visual::before {
  content: "";
  position: absolute;
  left: -76px;
  bottom: 37px;
  width: 126px;
  height: 180px;
  border-left: 1.5px solid rgba(7, 140, 139, 0.36);
  border-bottom: 1.5px solid rgba(7, 140, 139, 0.36);
  border-top-left-radius: 95px;
  border-bottom-left-radius: 105px;
  transform: rotate(-2deg);
  pointer-events: none;
}

.about-visual::after {
  content: "";
  position: absolute;
  left: -81px;
  bottom: 204px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(7, 140, 139, 0.08);
  pointer-events: none;
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 22px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  min-height: 142px;
  padding: 24px 22px 30px 20px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-light);
  backdrop-filter: blur(12px);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover,
.value-card:hover,
.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(7, 44, 76, 0.13);
  border-color: rgba(7, 140, 139, 0.18);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(145deg, #edf8f9 0%, #e1f1f2 100%);
  box-shadow: inset 0 0 0 1px rgba(7, 140, 139, 0.04);
}

.icon-circle img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.service-card h2,
.value-card h2,
.impact-card p {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.service-card h2 {
  padding-left: 17px;
  font-size: 23px;
  line-height: 1.17;
}

.small-rule {
  display: block;
  width: 46px;
  height: 3px;
  border-radius: 100px;
  background: var(--teal);
}

.service-card .small-rule {
  position: absolute;
  left: 113px;
  bottom: 28px;
}

.impact-card {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 109px;
  margin-top: 24px;
  padding: 18px 29px;
  border: 1px solid rgba(7, 140, 139, 0.10);
  border-radius: 13px;
  background: linear-gradient(90deg, #e7f6f7 0%, #f3fbfb 50%, #e8f6f7 100%);
  box-shadow: 0 18px 38px rgba(7, 44, 76, 0.09);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.icon-circle-white {
  width: 74px;
  height: 74px;
  flex-basis: 74px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(7, 140, 139, 0.08), 0 10px 24px rgba(7, 44, 76, 0.06);
}

.impact-divider {
  width: 1.5px;
  height: 57px;
  margin: 0 25px;
  background: rgba(7, 140, 139, 0.52);
}

.impact-card p {
  font-size: 24px;
  line-height: 1.18;
}

.impact-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
}

.impact-dot-left {
  left: -73px;
  top: -111px;
}

.impact-dot-right {
  right: -4px;
  top: 53px;
}

.values-band {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 28px 0 132px;
  background:
    radial-gradient(circle at 8% 18%, rgba(7, 140, 139, 0.10), transparent 21rem),
    radial-gradient(circle at 91% 32%, rgba(7, 140, 139, 0.075), transparent 20rem),
    linear-gradient(180deg, #f6fcfd 0%, #f8fdfe 100%);
}

.values-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 29px;
}

.value-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: start;
  min-height: 214px;
  padding: 35px 36px 31px 17px;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 19px 48px rgba(7, 44, 76, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.value-icon {
  width: 97px;
  height: 97px;
  flex-basis: 97px;
}

.value-icon img {
  width: 48px;
  height: 48px;
}

.value-content {
  padding: 3px 0 0 35px;
}

.value-card h2 {
  font-size: 28px;
  line-height: 1;
}

.value-card p {
  max-width: 285px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.value-card .small-rule {
  width: 74px;
  margin-top: 26px;
}

.shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.shape-arc-top {
  top: -163px;
  right: -102px;
  width: 358px;
  height: 396px;
  border: 1px solid rgba(7, 140, 139, 0.14);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}

.shape-arc-top::before,
.shape-arc-top::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(7, 140, 139, 0.12);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.shape-arc-top::before {
  inset: 43px 45px -44px -48px;
}

.shape-arc-top::after {
  inset: 86px 89px -88px -93px;
}

.shape-dots-left,
.shape-dots-mid,
.shape-dots-top,
.shape-dots-right {
  opacity: 0.72;
  background-image: radial-gradient(circle, rgba(7, 140, 139, 0.28) 1.9px, transparent 2.1px);
  background-size: 18px 18px;
}

.shape-dots-left {
  left: 15px;
  bottom: 150px;
  width: 91px;
  height: 120px;
}

.shape-dots-mid {
  left: calc(50% + 3px);
  top: 470px;
  width: 75px;
  height: 81px;
}

.shape-dots-top {
  right: 155px;
  top: 139px;
  width: 95px;
  height: 80px;
}

.shape-dots-right {
  right: 61px;
  bottom: 177px;
  width: 96px;
  height: 116px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(14px);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

@media (max-width: 1280px) {
  .about-main {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
    column-gap: 48px;
  }

  .about-copy h1 {
    font-size: clamp(3.55rem, 5.2vw, 5.35rem);
  }

  .about-copy p {
    font-size: 17px;
  }

  .service-card {
    padding-right: 18px;
  }
}

@media (max-width: 1060px) {
  .about-container {
    width: min(calc(100% - 44px), 900px);
  }

  .about-main {
    grid-template-columns: 1fr;
    row-gap: 38px;
    padding-top: 58px;
  }

  .about-section--no-title .about-copy {
    align-self: start;
  }

  .about-copy h1,
  .about-copy p {
    max-width: 100%;
  }

  .about-visual {
    justify-self: center;
    max-width: 620px;
    padding-top: 0;
  }

  .about-visual::before,
  .about-visual::after,
  .impact-dot-left {
    display: none;
  }


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

  .value-card {
    min-height: 190px;
  }

  .value-card p {
    max-width: 100%;
  }

  .shape-dots-mid {
    display: none;
  }
}

@media (max-width: 720px) {
  .about-container {
    width: min(calc(100% - 32px), 560px);
  }

  .about-main {
    padding-top: 42px;
    padding-bottom: 25px;
  }

  .section-kicker {
    font-size: 14px;
    gap: 11px;
    margin-bottom: 20px;
  }

  .section-kicker::after {
    width: 38px;
    height: 2px;
  }

  .about-copy h1 {
    font-size: clamp(2.85rem, 12vw, 4.15rem);
    line-height: 1.01;
    letter-spacing: -0.04em;
  }

  .title-rule {
    width: 60px;
    height: 2.5px;
    margin: 22px 0 22px;
  }

  .about-copy p {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .about-section--no-title .about-main {
    padding-top: 38px;
    padding-bottom: 25px;
  }

  .about-section--no-title .section-kicker {
    margin-bottom: 24px;
  }

  .about-section--no-title .about-copy p:first-of-type {
    font-size: 15.8px;
    line-height: 1.64;
  }

  .about-copy p + p {
    margin-top: 22px;
  }


  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .service-card {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 154px;
    padding: 20px 14px 27px;
    text-align: center;
  }

  .service-card h2 {
    padding-left: 0;
    margin-top: 13px;
    font-size: 18px;
    line-height: 1.14;
  }

  .service-card .small-rule {
    left: 50%;
    bottom: 19px;
    width: 41px;
    height: 2.5px;
    transform: translateX(-50%);
  }

  .icon-circle {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .icon-circle img {
    width: 36px;
    height: 36px;
  }

  .impact-card {
    min-height: 102px;
    padding: 18px;
  }

  .impact-card .icon-circle-white {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .impact-divider {
    height: 50px;
    margin-inline: 18px;
  }

  .impact-card p {
    font-size: 20px;
  }

  .values-band {
    padding: 26px 0 72px;
  }

  .value-card {
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: auto;
    padding: 25px 20px 24px 16px;
  }

  .value-icon {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }

  .value-content {
    padding-left: 23px;
  }

  .value-card h2 {
    font-size: 25px;
  }

  .value-card p {
    margin-top: 14px;
    font-size: 14px;
  }

  .value-card .small-rule {
    width: 64px;
    margin-top: 20px;
  }

  .shape-arc-top {
    right: -190px;
    opacity: 0.62;
  }

  .shape-dots-top,
  .shape-dots-right,
  .shape-dots-left {
    opacity: 0.42;
  }
}

@media (max-width: 480px) {
  .about-container {
    width: min(calc(100% - 24px), 420px);
  }

  .about-section--no-title .about-copy p:first-of-type {
    font-size: 15px;
  }

  .about-copy h1 {
    font-size: clamp(2.42rem, 13vw, 3.35rem);
  }

  .service-grid {
    gap: 12px;
  }

  .service-card {
    min-height: 136px;
    padding: 18px 10px 25px;
  }

  .service-card h2 {
    font-size: 15.5px;
    letter-spacing: -0.025em;
  }

  .service-card .small-rule {
    bottom: 17px;
  }

  .icon-circle {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .icon-circle img {
    width: 32px;
    height: 32px;
  }


  .impact-card {
    padding: 16px;
  }

  .impact-card .icon-circle-white {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .impact-card p {
    font-size: 17.5px;
  }

  .impact-divider {
    height: 46px;
    margin-inline: 13px;
  }

  .value-card {
    grid-template-columns: 66px minmax(0, 1fr);
    padding: 22px 17px 22px 14px;
  }

  .value-icon {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .value-content {
    padding-left: 18px;
  }

  .value-card h2 {
    font-size: 22px;
  }

  .value-card p {
    font-size: 13.2px;
    line-height: 1.55;
  }
}

@media (max-width: 360px) {
  .about-container {
    width: min(calc(100% - 20px), 340px);
  }

  .about-copy h1 {
    font-size: 2.24rem;
  }

  .service-grid {
    gap: 10px;
  }

  .service-card h2 {
    font-size: 14px;
  }


  .impact-card p {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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


/* Contact and footer styles from uploaded CTA FOOTER ZIP */
:root{
  --navy:#072d58;
  --navy-deep:#002b58;
  --navy-dark:#001f42;
  --teal:#08aeb3;
  --teal-2:#14c1c3;
  --ink:#0b315d;
  --muted:#53657c;
  --line:#dbe5ef;
  --soft:#f7fbff;
  --white:#ffffff;
  --shadow:0 24px 62px rgba(5,34,70,.12);
  --shadow-soft:0 14px 36px rgba(5,34,70,.10);
  --heading:'Playfair Display', Georgia, serif;
  --body:'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:var(--body);
  font-size:16px;
  line-height:1.65;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
svg{display:block;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.page-shell{position:relative;isolation:isolate}
.contact-hero{
  position:relative;
  min-height:670px;
  padding:43px 0 28px;
  background:
    radial-gradient(circle at 9% 17%, rgba(8,174,179,.06), transparent 25%),
    radial-gradient(circle at 74% 26%, rgba(4,55,98,.045), transparent 22%),
    linear-gradient(106deg,#fff 0%,#fbfdff 49%,#f6fbff 100%);
  overflow:hidden;
}
.contact-wrap{
  width:min(1248px, calc(100% - 96px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(460px, 510px) minmax(520px, 586px);
  justify-content:space-between;
  gap:76px;
  align-items:center;
  position:relative;
  z-index:2;
}
.contact-copy{padding-top:0;max-width:520px}
.eyebrow{
  margin:0 0 8px;
  color:var(--teal);
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:800;
  font-size:17px;
}
.small-line,.title-line{
  display:block;
  width:35px;
  height:2px;
  background:var(--teal);
  border-radius:999px;
}
.small-line{margin-bottom:16px}.title-line{margin:16px 0 12px}
.contact-copy h1{
  margin:0;
  color:var(--navy);
  font-family:var(--heading);
  font-size:49px;
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:800;
}
.contact-copy h1 span{color:var(--teal)}
.lead{
  margin:0 0 21px;
  max-width:505px;
  color:#334b6d;
  font-size:15px;
  line-height:1.8;
  font-weight:500;
}
.contact-pills{display:grid;gap:10px;width:100%;max-width:480px}
.info-pill{
  min-height:52px;
  display:flex;
  align-items:center;
  gap:18px;
  padding:10px 16px 10px 13px;
  background:#fff;
  border:1px solid #e5edf5;
  border-radius:10px;
  box-shadow:0 10px 24px rgba(2,38,77,.08);
  color:var(--navy);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:16px;
}
.info-pill strong{font-weight:700;line-height:1.45}
.info-pill i{
  display:inline-block;
  width:4px;height:4px;
  background:var(--teal);
  border-radius:50%;
  margin:0 7px 3px;
}
.pill-icon{
  flex:0 0 auto;
  width:31px;height:31px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:var(--teal);
  background:#e9fbfb;
}
.pill-icon svg{width:18px;height:18px;stroke-width:2.2}
.cta-row{display:grid;grid-template-columns:1fr .86fr;gap:26px;margin-top:17px;max-width:480px}
.btn{
  min-height:55px;
  border-radius:9px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  font-weight:800;
  font-size:16px;
  line-height:1;
  border:1.5px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn svg{width:26px;height:26px;stroke-width:2.1}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,#062d5e,#003b79);
  box-shadow:0 15px 30px rgba(0,42,87,.28);
}
.btn-ghost{
  color:#058f96;
  background:#fff;
  border-color:var(--teal);
  box-shadow:0 10px 22px rgba(6,56,101,.06);
}
.form-card{
  min-height:587px;
  padding:40px 45px 30px;
  background:rgba(255,255,255,.94);
  border:1px solid #dde8f2;
  border-radius:17px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
  overflow:hidden;
}
.form-card h2{
  margin:0 0 10px;
  color:var(--navy);
  font-family:var(--heading);
  font-size:39px;
  line-height:1.13;
  letter-spacing:-.04em;
}
.contact-form{margin-top:24px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px 20px}
.field{
  position:relative;
  display:block;
  color:#7c8da5;
}
.field input,.field select,.field textarea{
  width:100%;
  border:1px solid #d9e4ee;
  background:#fff;
  color:#163b68;
  border-radius:8px;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.75);
}
.field input,.field select{height:53px;padding:0 48px 0 15px}
.field textarea{height:91px;resize:none;padding:16px 48px 14px 15px;display:block;line-height:1.5}
.field select{
  appearance:none;
  color:#566985;
}
.field input::placeholder,.field textarea::placeholder{color:#536684;opacity:1}
.field svg{
  pointer-events:none;
  position:absolute;
  right:16px;
  top:50%;
  width:21px;
  height:21px;
  transform:translateY(-50%);
  stroke-width:1.85;
  color:#7d8ea8;
}
.field textarea + svg{top:25px;transform:none}
.select-field{margin-top:22px}.textarea-field{margin-top:22px}.select-field svg{color:#0b315d}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:rgba(8,174,179,.72);
  box-shadow:0 0 0 4px rgba(8,174,179,.11);
}
.submit-btn{
  width:100%;
  height:52px;
  margin-top:24px;
  color:#fff;
  border:0;
  border-radius:7px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  font-weight:800;
  font-size:16px;
  background:linear-gradient(135deg,#003b79 0%,#001f45 100%);
  box-shadow:0 14px 25px rgba(0,39,83,.23);
  transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.submit-btn:hover{transform:translateY(-2px);box-shadow:0 18px 34px rgba(0,39,83,.28)}
.submit-btn svg{width:24px;height:24px;stroke-width:2.15}
.safe-note{
  margin:18px 0 0;
  display:flex;
  align-items:center;
  gap:8px;
  color:#52647d;
  font-size:12px;
  font-weight:500;
}
.safe-note svg{width:14px;height:14px;color:var(--teal);stroke-width:2.4}.form-alert{margin:10px 0 0;font-size:13px;font-weight:700;color:#058f96;min-height:18px}.field.is-invalid input,.field.is-invalid select,.field.is-invalid textarea{border-color:#d95656;box-shadow:0 0 0 4px rgba(217,86,86,.11)}
.decor{position:absolute;pointer-events:none;z-index:1}.decor-dots{width:90px;height:90px;opacity:.45;background-image:radial-gradient(circle, #08aeb3 1.5px, transparent 2px);background-size:15px 15px}.decor-dots-left{left:0;bottom:148px}.decor-dots-right{right:57px;top:49px}.orbit-one{width:720px;height:720px;border:1.5px solid rgba(8,174,179,.35);border-radius:50%;left:50%;top:-180px;transform:translateX(-50%)}.orbit-dot{left:48.5%;top:89px;width:14px;height:14px;border:4px solid rgba(8,174,179,.45);border-radius:50%;background:#fff}.globe-lines{right:-85px;bottom:72px;width:300px;height:260px;border-radius:50%;opacity:.24;background:repeating-radial-gradient(ellipse at center, transparent 0 25px, rgba(4,54,91,.42) 26px 27px, transparent 28px 44px),repeating-linear-gradient(19deg, transparent 0 33px, rgba(4,54,91,.42) 34px 35px, transparent 36px 66px);transform:rotate(-10deg)}
.site-footer{
  position:relative;
  color:#edf8ff;
  background:
    radial-gradient(circle at 11% 12%, rgba(8,174,179,.18), transparent 28%),
    linear-gradient(135deg,#001d3d 0%, #043867 45%, #001f42 100%);
  overflow:hidden;
}
.footer-wrap{
  position:relative;
  z-index:2;
  width:min(1266px, calc(100% - 96px));
  margin:0 auto;
  padding:42px 0 35px;
  display:grid;
  grid-template-columns:345px 210px 250px 300px;
  gap:54px;
  align-items:start;
}
.footer-brand{padding-right:42px;border-right:1px solid rgba(205,228,244,.35)}
.brand-head{display:flex;align-items:center;gap:20px;margin-bottom:18px}.brand-head img{width:112px;height:auto;flex:0 0 auto}.brand-head h2{margin:0;color:#fff;font-family:Georgia, 'Times New Roman', serif;font-size:21px;line-height:1.25;text-transform:uppercase;letter-spacing:.025em;font-weight:800}.footer-brand p{margin:0;max-width:288px;color:#fff;font-size:16px;line-height:1.82;font-weight:500}.socials{display:flex;gap:15px;margin-top:20px}.socials a{width:39px;height:39px;border:1px solid rgba(255,255,255,.55);border-radius:50%;display:grid;place-items:center;color:#fff;transition:background .25s ease,border-color .25s ease,transform .25s ease}.socials a:hover{transform:translateY(-2px);background:rgba(8,174,179,.18);border-color:var(--teal)}.socials svg{width:18px;height:18px;fill:currentColor;stroke:none}.footer-col h3{margin:7px 0 26px;color:var(--teal-2);font-size:16px;text-transform:uppercase;letter-spacing:.1em;font-weight:800}.footer-col h3::after{content:"";display:block;width:43px;height:2px;background:var(--teal-2);border-radius:999px;margin-top:10px}.footer-col ul{list-style:none;margin:0;padding:0;display:grid;gap:13px}.footer-col a,.static-contact{display:flex;align-items:flex-start;gap:14px;color:#fff;font-size:16px;line-height:1.55;font-weight:500;transition:color .2s ease, transform .2s ease}.footer-col a:hover{color:#9df4f5;transform:translateX(3px)}.footer-col a span{color:var(--teal-2);font-size:30px;line-height:.72;font-weight:800}.footer-contact ul{gap:22px}.footer-contact svg{width:25px;height:25px;flex:0 0 auto;color:var(--teal-2);stroke-width:2}.footer-bottom{position:relative;z-index:2;border-top:1px solid rgba(212,232,247,.3);width:100%;min-height:65px;padding:0 max(48px, calc((100vw - 1266px) / 2));display:flex;align-items:center;justify-content:space-between;gap:28px}.footer-bottom p{margin:0;color:#e9f5fb;font-size:14px}.footer-bottom div{display:flex;align-items:center;gap:31px}.footer-bottom a{font-size:15px;color:#fff}.footer-bottom a:hover{color:#8cf4f4}.footer-bottom span{height:18px;width:1px;background:rgba(255,255,255,.62)}.footer-dots{position:absolute;z-index:1;right:42px;top:23px;width:85px;height:80px;opacity:.35;background-image:radial-gradient(circle, #6fdce0 1.5px, transparent 2px);background-size:15px 15px}.footer-wave{position:absolute;right:-98px;bottom:-82px;width:330px;height:280px;border-radius:50%;opacity:.3;background:repeating-radial-gradient(ellipse at center, transparent 0 22px, rgba(94,208,220,.42) 23px 24px, transparent 25px 41px),repeating-linear-gradient(-28deg, transparent 0 27px, rgba(94,208,220,.38) 28px 29px, transparent 30px 55px);transform:rotate(4deg)}
.reveal-up{animation:revealUp .75s ease both}.form-card.reveal-up{animation-delay:.08s}@keyframes revealUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
@media (max-width:1180px){
  .contact-wrap{width:min(960px, calc(100% - 56px));grid-template-columns:1fr;gap:36px;padding-bottom:20px}.contact-copy{max-width:100%}.contact-pills,.cta-row{max-width:560px}.form-card{max-width:650px;width:100%;justify-self:center}.orbit-one{left:85%;top:-215px}.orbit-dot{left:auto;right:230px}.footer-wrap{grid-template-columns:1.2fr 1fr 1fr;gap:40px}.footer-brand{grid-column:1/-1;border-right:0;border-bottom:1px solid rgba(205,228,244,.28);padding:0 0 30px}.footer-brand p{max-width:620px}}
@media (max-width:760px){
  body{font-size:15px}.contact-hero{padding:34px 0 36px;min-height:auto}.contact-wrap{width:calc(100% - 34px);gap:28px}.eyebrow{font-size:14px}.contact-copy h1{font-size:38px;line-height:1.12}.lead{font-size:14px;line-height:1.75}.contact-pills{gap:10px}.info-pill{font-size:14px;gap:13px;padding:10px 12px}.cta-row{grid-template-columns:1fr 1fr;gap:12px}.btn{min-height:50px;font-size:13px;gap:9px}.btn svg{width:20px;height:20px}.form-card{min-height:0;padding:30px 18px 24px;border-radius:15px}.form-card h2{font-size:32px}.contact-form{margin-top:22px}.form-grid{grid-template-columns:1fr;gap:14px}.select-field,.textarea-field{margin-top:14px}.field input,.field select{height:52px}.field textarea{height:105px}.submit-btn{height:52px}.safe-note{align-items:flex-start;font-size:11px;line-height:1.55}.decor-dots-left{bottom:300px}.decor-dots-right{right:10px;top:30px}.orbit-one{width:560px;height:560px;left:100%;top:-175px}.orbit-dot{display:none}.globe-lines{opacity:.12;right:-150px}.footer-wrap{width:calc(100% - 34px);grid-template-columns:1fr;gap:30px;padding:36px 0 30px}.brand-head{gap:14px}.brand-head img{width:96px}.brand-head h2{font-size:18px}.footer-brand{padding-bottom:26px}.footer-brand p{font-size:14px;line-height:1.75}.footer-col h3{margin:0 0 18px}.footer-col ul{gap:10px}.footer-col a,.static-contact{font-size:14px}.footer-bottom{padding:17px;width:100%;min-height:0;flex-direction:column;align-items:flex-start;gap:14px}.footer-bottom div{gap:18px}.footer-dots{right:12px}.footer-wave{opacity:.18}}
@media (max-width:410px){
  .contact-copy h1{font-size:34px}.cta-row{grid-template-columns:1fr}.form-card h2{font-size:29px}.brand-head{align-items:flex-start}.brand-head img{width:88px}.brand-head h2{font-size:17px}}
@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important;scroll-behavior:auto!important}}


/* Landing/header/hero styles from uploaded Landing ZIP */
:root {
  --navy: #062a49;
  --navy-2: #092f50;
  --teal: #22aaa5;
  --teal-2: #44c4bd;
  --ink: #102f4d;
  --body: #2d3f55;
  --paper: #fffdf7;
  --paper-soft: #fbf8ef;
  --line: rgba(34, 170, 165, 0.25);
  --shadow: 0 18px 44px rgba(6, 42, 73, 0.16);
  --container: 1448px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--body);
  background:
    radial-gradient(circle at 44% 43%, rgba(32, 181, 173, 0.07), transparent 24%),
    linear-gradient(180deg, #fffefa 0%, #fbf7ef 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 253, 247, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(34, 170, 165, 0.08);
}

.header-shell {
  width: min(100%, var(--container));
  min-height: 102px;
  margin: 0 auto;
  padding: 14px 54px 10px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(432px, 29.8vw);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 1.95vw, 30px);
  margin: 0 10px 0 auto;
  color: #112943;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.primary-nav a {
  position: relative;
  padding: 4px 0 14px;
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  transition: width 0.22s ease;
}

.primary-nav a:is(:hover, :focus-visible),
.primary-nav a.active {
  color: var(--teal);
}

.primary-nav a:is(:hover, :focus-visible)::after,
.primary-nav a.active::after {
  width: 100%;
}

.book-btn {
  flex: 0 0 auto;
  min-width: 205px;
  min-height: 49px;
  margin-top: 0;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(6, 42, 73, 0.19);
    font-size: 15px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.book-btn img,
.btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  color: currentColor;
}

.book-btn:is(:hover, :focus-visible),
.btn-primary:is(:hover, :focus-visible) {
  transform: translateY(-2px);
  background: #073353;
  box-shadow: 0 18px 36px rgba(6, 42, 73, 0.24);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -48px 0 auto 39.5%;
  width: 38%;
  height: 56%;
  pointer-events: none;
  opacity: 0.58;
  background-image:
    linear-gradient(to right, rgba(47, 170, 167, 0.11) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(47, 170, 167, 0.11) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 0 56%, transparent 78%);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 606px;
  top: 396px;
  width: 130px;
  height: 190px;
  opacity: 0.9;
  background-image: radial-gradient(circle, var(--teal-2) 1.5px, transparent 2px);
  background-size: 22px 22px;
  z-index: 1;
}

.hero-shell {
  position: relative;
  z-index: 4;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 60px 54px 136px;
}

.hero-copy {
  width: min(612px, 43vw);
  animation: fadeUp 0.85s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 49px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
}

h1 {
  margin: 0;
  max-width: 575px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(46px, 4.25vw, 62px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.hero-text {
  width: min(623px, 100%);
  margin: 24px 0 0;
  color: #293a50;
    font-size: 15.5px;
  font-weight: 500;
  line-height: 1.73;
  letter-spacing: -0.006em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.btn {
  min-height: 58px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 9px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-primary {
  min-width: 217px;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.btn-outline {
  min-width: 195px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.58);
  border: 1.5px solid var(--teal-2);
  box-shadow: 0 14px 35px rgba(6, 42, 73, 0.06);
}

.btn-outline:is(:hover, :focus-visible) {
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: 0 18px 36px rgba(6, 42, 73, 0.12);
}

.hero-media {
  position: absolute;
  z-index: 2;
  top: -2px;
  right: 0;
  width: min(808px, 56.8vw);
  pointer-events: none;
  animation: imageFloat 1s ease both;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: auto;
}

.hero-wave {
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  z-index: 3;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

.wave-fill {
  fill: #062a49;
}

.wave-accent {
  fill: none;
  stroke: #31c8bf;
  stroke-width: 3;
}

.wave-lines {
  fill: none;
  stroke: rgba(62, 178, 174, 0.24);
  stroke-width: 1.2;
}

.wave-lines.thin {
  stroke: rgba(62, 178, 174, 0.16);
  stroke-width: 1;
}

.anchor-target {
  height: 1px;
  margin-top: -1px;
  overflow: hidden;
}

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

@keyframes imageFloat {
  from {
    opacity: 0;
    transform: translateX(24px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 1280px) {
  .header-shell {
    padding-inline: 38px;
    gap: 18px;
  }

  .primary-nav {
    gap: 22px;
    font-size: 15px;
  }

  .book-btn {
    min-width: 196px;
    padding-inline: 20px;
  }

  .hero-shell {
    padding-inline: 38px;
  }

  .hero::after {
    left: 50%;
  }
}

@media (max-width: 1120px) {
    .header-shell {
    min-height: 96px;
  }

  .brand img {
    width: 316px;
  }

  .primary-nav {
    gap: 16px;
    font-size: 14.5px;
  }

  .book-btn {
    min-width: 168px;
    padding-inline: 17px;
    font-size: 14px;
  }

  .hero-copy {
    width: 47vw;
  }

  h1 {
    font-size: clamp(42px, 4.7vw, 55px);
  }

    .hero-media {
    top: 18px;
    width: 54vw;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 253, 247, 0.95);
    box-shadow: 0 12px 28px rgba(6, 42, 73, 0.06);
  }

  .header-shell {
    min-height: auto;
    align-items: center;
    padding: 16px 22px;
  }

  .brand {
    margin-top: 0;
  }

  .brand img {
    width: min(310px, 73vw);
  }

  .menu-toggle {
    width: 46px;
    height: 42px;
    margin-left: auto;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--navy);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 22px;
    width: min(320px, calc(100vw - 44px));
    margin: 0;
    padding: 14px;
    display: grid;
    gap: 3px;
    border: 1px solid rgba(34, 170, 165, 0.2);
    border-radius: 18px;
    background: rgba(255, 253, 247, 0.98);
    box-shadow: 0 22px 55px rgba(6, 42, 73, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .menu-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 15px 14px;
    border-radius: 12px;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a.active,
  .primary-nav a:is(:hover, :focus-visible) {
    background: rgba(34, 170, 165, 0.1);
  }

  .book-btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-shell {
    padding: 54px 24px 30px;
  }

  .hero-copy {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
    margin-bottom: 22px;
    font-size: 12px;
  }

  .eyebrow span {
    width: 38px;
  }

  h1 {
    max-width: 720px;
    margin-inline: auto;
    font-size: clamp(38px, 8vw, 56px);
  }

  .hero-text {
    max-width: 660px;
    margin-inline: auto;
    font-size: 15.5px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-media {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 760px);
    margin: 10px auto 0;
    padding-inline: 10px;
  }

  .hero-wave {
    position: relative;
    height: 108px;
    margin-top: -35px;
  }
}

@media (max-width: 620px) {
  .header-shell {
    padding-inline: 16px;
  }

  .brand img {
    width: min(268px, 75vw);
  }

  .menu-toggle {
    width: 43px;
    height: 40px;
    border-radius: 9px;
  }

  .hero-shell {
    padding: 42px 18px 22px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 43px);
    line-height: 1.12;
    letter-spacing: -0.05em;
  }

  .hero-text {
    margin-top: 22px;
    line-height: 1.66;
  }

  .hero-actions {
    width: 100%;
    max-width: 430px;
    margin: 30px auto 0;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 56px;
    padding: 0 13px;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
  }

  .btn img {
    width: 21px;
    height: 21px;
  }

  .hero-media {
    width: 112%;
    max-width: none;
    margin-left: -6%;
    margin-right: -6%;
  }

  .hero-wave {
    height: 92px;
    margin-top: -28px;
  }
}

@media (max-width: 380px) {
  .hero-actions {
    gap: 8px;
  }

  .btn {
    min-height: 52px;
    padding-inline: 8px;
    gap: 6px;
    font-size: 13px;
  }

  .btn img {
    width: 18px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ===============================
   Final one-page uniform polish
   Keeps uploaded sections intact while aligning shared theme, font, spacing and scroll behavior.
   =============================== */
:root {
  --navy: #062a49;
  --navy-2: #092f50;
  --navy-deep: #03284d;
  --navy-dark: #001f42;
  --teal: #22aaa5;
  --teal-2: #44c4bd;
  --teal-dark: #078c8b;
  --ink: #102f4d;
  --body: #2d3f55;
  --muted: #53657c;
  --paper: #fffdf7;
  --paper-soft: #fbf8ef;
  --line: rgba(34, 170, 165, 0.22);
  --card-border: rgba(6, 47, 86, 0.095);
  --soft: #f7fbff;
  --soft-strong: #e7f6f7;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(6, 42, 73, 0.14);
  --shadow-soft: 0 14px 36px rgba(5, 34, 70, 0.10);
  --shadow-light: 0 12px 32px rgba(7, 44, 76, 0.08);
  --container: 1448px;
  --heading-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

html { scroll-padding-top: 96px; }
body,
button,
input,
select,
textarea {
  font-family: var(--body-font);
}

h1,
h2,
h3,
.about-copy h1,
.service-card h2,
.value-card h2,
.impact-card p,
.contact-copy h1,
.form-card h2,
.brand-head h2 {
  font-family: var(--heading-font);
}

main#main { overflow: hidden; }
.site-header { position: sticky; top: 0; }
.site-header.is-scrolled { box-shadow: 0 14px 36px rgba(6, 42, 73, 0.11); }

/* Restore the landing button and hero eyebrow against later section button/eyebrow styles. */
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.hero .eyebrow span {
  display: inline-block;
  width: 49px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
}
.hero .btn {
  min-height: 61px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.hero .btn-primary { color: #fff; background: var(--navy); box-shadow: 0 16px 34px rgba(6, 42, 73, 0.22); }
.hero .btn-outline { color: var(--navy); background: #fff; border: 1px solid rgba(6, 42, 73, 0.10); box-shadow: 0 12px 24px rgba(6, 42, 73, 0.08); }
.hero .btn-primary:is(:hover, :focus-visible) { transform: translateY(-2px); background: #073353; box-shadow: 0 18px 36px rgba(6, 42, 73, 0.24); }
.hero .btn-outline:is(:hover, :focus-visible) { transform: translateY(-2px); border-color: rgba(34, 170, 165, 0.36); color: var(--teal); }

/* Contact label is kept distinct and scoped to the contact section only. */
.contact-copy .eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.65;
}

/* One scroll-reveal system for About and Contact. */
.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  animation: none !important;
  transition: opacity 680ms ease, transform 680ms ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.form-card.reveal-up { transition-delay: 80ms; }

/* Single-page spacing refinements; no extra visual sections added. */
.about-section {
  min-height: auto;
  scroll-margin-top: 88px;
}
.contact-hero { scroll-margin-top: 88px; }
.about-section--no-title .about-main { padding-top: clamp(58px, 6vw, 82px); }
.values-band { padding-bottom: clamp(70px, 8vw, 126px); }
.contact-hero { padding-top: clamp(52px, 5vw, 72px); }

/* Keep internal anchors invisible but available for existing navigation items from the uploaded landing page. */
.anchor-target { height: 1px; margin-top: -1px; overflow: hidden; }

@media (max-width: 980px) {
  html { scroll-padding-top: 78px; }
  .hero .eyebrow { justify-content: center; margin-bottom: 22px; font-size: 12px; }
  .hero .eyebrow span { width: 38px; }
}

@media (max-width: 620px) {
  .hero .btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 56px;
    padding: 0 13px;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
  }
  .hero .btn img { width: 21px; height: 21px; }
  .about-section--no-title .about-main { padding-top: 46px; }
  .values-band { padding-bottom: 58px; }
}

@media (max-width: 380px) {
  .hero .btn { min-height: 52px; padding-inline: 8px; gap: 6px; font-size: 13px; }
  .hero .btn img { width: 18px; height: 18px; }
}
