/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #222;
}

:root {
  --ast-global-color-0: #3AA6B9;
  --ast-global-color-1: #2997AA;
  --ast-global-color-2: #0F172A;
  --ast-global-color-3: #454F5E;
  --ast-global-color-4: #E9F8F9;
  --ast-global-color-5: #FFFFFF;
  --ast-global-color-6: #CAE6E8;
  --ast-global-color-7: #181823;
  --ast-global-color-8: #222222;
  --content-width-small-desktop: 780px;
  --content-width-tablet: 720px;
  --content-width-mobile: 360px;
}

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

a {
  color: #2b5cff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Shared layout */
.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4px;
  padding-right: 4px;
}

.section-text {
  width: 100%;
  max-width: 1140px;
}

.page-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-section--compact {
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-section--flush {
  padding-top: 0;
  padding-bottom: 0;
}

.home-main .home-band__section h2,
.services-intro h2,
.services-work-together__inner h2,
.services-pathway__content h2,
.services-cta h2,
.contact-intro__column h2,
.home-offers__intro h2,
.home-contact-promo__card--copy h2 {
  margin: 0 0 22px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ast-global-color-7);
}

.home-main .home-band__section p,
.services-intro p,
.services-intro__list p,
.services-work-together__item p,
.services-pathway__content p,
.contact-intro__column p,
.home-offers__intro p,
.home-contact-promo__card--copy p,
.home-story-card__content p {
  margin: 0;
}

.btn {
  display: inline-block;
  min-width: 190px;
  padding: 13px 28px;
  border: 1px solid var(--ast-global-color-1);
  background: transparent;
  color: var(--ast-global-color-1);
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.2;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--ast-global-color-1);
  color: var(--ast-global-color-4);
}

.btn--primary:hover {
  background: var(--ast-global-color-0);
  color: var(--ast-global-color-4);
}

.btn--secondary {
  background: transparent;
  color: var(--ast-global-color-1);
}

.btn--secondary:hover {
  background: rgba(41, 151, 170, 0.08);
  color: var(--ast-global-color-1);
}

/* Header */
header,
footer {
  background: #ffffff;
}

header {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

footer {
  padding: 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

header nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

header nav a {
  font-weight: 500;
  color: #0F172A;
  text-decoration: none;
  position: relative;
}

header nav a + a {
  margin-left: 24px;
}

header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #3AA6B9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

header nav a:hover {
  color: #3AA6B9;
  text-decoration: none;
}

header nav a:hover::after {
  transform: scaleX(1);
}

header nav a.active {
  color: #3AA6B9;
  font-weight: 600;
}

header nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: #3AA6B9;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  transform: translateX(-50%);
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

.hamburger {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Hero */
.hero {
  position: relative;
  height: clamp(420px, 38vw, 560px);
  padding: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 65%;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(58, 166, 185, 0.78) 0%,
    rgba(58, 166, 185, 0.66) 12%,
    rgba(58, 166, 185, 0.50) 24%,
    rgba(58, 166, 185, 0.34) 36%,
    rgba(58, 166, 185, 0.16) 48%,
    rgba(58, 166, 185, 0.00) 62%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(24px, 4vw, 48px) 0;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.2vw, 3.75rem);
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 24px;
}

.hero p {
  margin: 0;
}

.hero--home {
  background-image: url("../images/home-hero-desktop.jpg");
}

.hero--home .hero__content {
  padding-top: 0;
}

.hero--about {
  background-image: url("../images/about-hero-desktop.jpg");
  background-position: center center;
}

.hero--contact {
  background-image: url("../images/contact-hero-desktop.jpg");
  background-position: center center;
}

.hero--services {
  background-image: url("../images/services-hero-desktop.jpg");
  background-position: center center;
}

.hero--services p {
  max-width: 64ch;
}

/* Homepage: intro band */
.home-band {
  width: 100%;
  background: var(--ast-global-color-4);
}

.home-main {
  padding-top: 4px;
  padding-bottom: 4px;
}

.home-main .home-band__section {
  color: var(--ast-global-color-3);
  padding-top: 0;
  padding-bottom: 0;
}

.home-main .home-band__lead {
  line-height: 1.75;
}

.home-main .home-band__section--welcome {
  margin-bottom: 64px;
}

.home-main .home-band__section--expect p + p,
.home-main .home-band__section--expect p + ul,
.home-main .home-band__section--expect ul + .home-cta-row {
  margin-top: 22px;
}

.home-main .home-band__section--expect .home-cta-row {
  margin-top: 24px;
}

.home-main .home-band__section--expect ul {
  margin: 0 0 32px;
  padding-left: 28px;
}

.home-main .home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

/* Services: intro band */
.services-intro-band {
  width: 100%;
  background: var(--ast-global-color-5);
}

.services-intro {
  color: var(--ast-global-color-3);
}

.services-intro p + p {
  margin-top: 22px;
}

.services-intro__list {
  margin-top: 22px;
}

.services-intro__list p + p {
  margin-top: 12px;
}

.services-intro__list strong {
  line-height: 1.25;
}

.services-intro__lead {
  line-height: 1.75;
}

.services-intro__note {
  margin-top: 30px;
  padding: 24px 28px 24px 68px;
  background: var(--ast-global-color-4);
  border: 2px solid var(--ast-global-color-1);
  position: relative;
}

.services-intro__note::before {
  content: "\261E";
  position: absolute;
  left: 28px;
  top: 24px;
  color: var(--ast-global-color-1);
  font-size: 26px;
  line-height: 1;
}

.services-intro__note p {
  margin: 0;
}

.services-intro__note strong {
  color: var(--ast-global-color-2);
}

/* Services: ways to work together */
.services-work-together {
  width: 100%;
  background:
    linear-gradient(180deg, rgba(58, 166, 185, 0.16) 0%, rgba(202, 230, 232, 0.62) 100%);
}

.services-work-together__inner {
  color: var(--ast-global-color-3);
}

.services-work-together__intro {
  margin: 0;
}

.services-work-together__list {
  margin-top: 28px;
}

.services-work-together__item + .services-work-together__item {
  margin-top: 24px;
}

.services-work-together__item h3 {
  margin: 0 0 10px;
  color: var(--ast-global-color-2);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
}

/* Services: pathway cards */
.services-pathways {
  padding-top: 28px;
  padding-bottom: 28px;
}

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

.services-pathway__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--ast-global-color-4);
}

.services-pathway__image {
  min-height: 220px;
  max-height: 220px;
  overflow: hidden;
  background: var(--ast-global-color-4);
}

.services-pathway__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: var(--ast-global-color-4);
}

.services-pathway__content {
  padding: 28px 28px 30px;
}

.services-pathway__content p + p,
.services-pathway__content p + ul,
.services-pathway__content ul + .services-pathway__actions {
  margin-top: 22px;
}

.services-pathway__content ul {
  margin: 0;
  padding-left: 28px;
}

.services-pathway__actions {
  margin-top: auto;
  padding-top: 24px;
}

.services-why {
  background: var(--ast-global-color-5);
  padding-top: 24px;
}

.services-why__content h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.services-why__content h2::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--ast-global-color-1);
  color: var(--ast-global-color-1);
  font-size: 18px;
  line-height: 1;
  flex: 0 0 32px;
}

.services-pricing {
  background: var(--ast-global-color-4);
  padding-top: 24px;
}

.services-pricing__content h2 {
  margin: 0 0 12px;
}

.services-pricing__content h3 {
  margin: 0 0 18px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}

.services-pricing__content p,
.services-pricing__content ul {
  margin: 0;
}

.services-pricing__content p + ul,
.services-pricing__content ul + .services-pricing__note {
  margin-top: 18px;
}

.services-pricing__note {
  margin-top: 22px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--ast-global-color-3);
}

.services-pricing__note p + p {
  margin-top: 10px;
}

/* About */
.about-intro h2,
.about-columns__card h2,
.about-why__content h2,
.about-cta__card h2 {
  margin: 0 0 22px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ast-global-color-7);
}

.about-intro h2 + p,
.about-intro p + h2 {
  margin-top: 22px;
}

.about-intro p,
.about-columns__card p,
.about-why__content p,
.about-cta__card p {
  margin: 0;
  color: var(--ast-global-color-3);
}

.about-intro p + p,
.about-columns__card p + p,
.about-columns__card p + ul,
.about-why__content p + p,
.about-why__content p + ul,
.about-cta__card p + p {
  margin-top: 22px;
}

.about-intro__lead {
  line-height: 1.75;
}

.about-columns__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-columns__card {
  padding: 34px 32px 36px;
  background: var(--ast-global-color-4);
}

.about-columns__card ul,
.about-why__content ul {
  margin: 0;
  padding-left: 28px;
  color: var(--ast-global-color-3);
  font-size: 1rem;
  line-height: 1.6;
}

.about-columns__card ul li + li,
.about-why__content ul li + li {
  margin-top: 10px;
}

.about-columns__card h2 span {
  font-size: 0.9em;
  font-weight: 400;
}

.about-why {
  background: var(--ast-global-color-5);
}

.about-why__content h2 {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-why__content h2::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--ast-global-color-1);
  color: var(--ast-global-color-1);
  font-size: 18px;
  line-height: 1;
  flex: 0 0 32px;
}

.about-cta {
  background: var(--ast-global-color-5);
}

.about-cta__card {
  padding: 36px 40px 40px;
  background: var(--ast-global-color-1);
}

.about-cta__card h2 {
  color: var(--ast-global-color-7);
}

.about-cta__card p {
  color: var(--ast-global-color-5);
}

.about-cta__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
  margin-top: 24px;
}

.about-cta__btn {
  min-width: 190px;
  border: 1px solid var(--ast-global-color-2);
}

.about-cta__btn--primary {
  background: #247D8D;
  color: var(--ast-global-color-5);
}

.about-cta__btn--primary:hover {
  background: #1f6c79;
  color: var(--ast-global-color-5);
}

.about-cta__btn--secondary {
  background: var(--ast-global-color-4);
  color: var(--ast-global-color-2);
}

.about-cta__btn--secondary:hover {
  background: #d8eff1;
  color: var(--ast-global-color-2);
}

/* Contact */
.contact-intro__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-intro__column p {
  color: var(--ast-global-color-3);
}

.contact-intro__column p + p {
  margin-top: 10px;
}

.contact-details {
  padding-top: 10px;
}

.contact-details__card {
  max-width: 460px;
  margin: 0 auto;
  padding: 20px 18px;
  background: var(--ast-global-color-4);
  border: 1px solid rgba(41, 151, 170, 0.35);
}

.contact-details__row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ast-global-color-7);
}

.contact-details__row + .contact-details__row {
  margin-top: 14px;
}

.contact-details__icon {
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
  color: var(--ast-global-color-1);
}

.contact-details__label {
  color: var(--ast-global-color-7);
  font-weight: 500;
}

.contact-details__link {
  color: var(--ast-global-color-7);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
}

.contact-details__link:hover {
  text-decoration: underline;
}

.contact-details__phone-image {
  width: 180px;
  height: auto;
}

.contact-details__phone-mobile {
  display: none;
}

/* My Story */
.my-story-page {
  background: var(--ast-global-color-4);
}

.my-story-band {
  padding-top: 44px;
  padding-bottom: 56px;
}

.my-story-card {
  display: block;
  padding: 62px 78px 64px;
  background: var(--ast-global-color-5);
}

.my-story-card__intro {
  overflow: visible;
}

.my-story-card__content h1 {
  margin: 0 0 16px;
  font-size: clamp(2.15rem, 3.4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ast-global-color-7);
}

.my-story-card__eyebrow {
  margin: 0 0 18px;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.62;
  color: var(--ast-global-color-3);
}

.my-story-card__content h2 {
  margin: 34px 0 14px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ast-global-color-7);
}

.my-story-card__content p {
  margin: 0;
  color: var(--ast-global-color-3);
  line-height: 1.62;
}

.my-story-card__content p + p {
  margin-top: 12px;
}

.my-story-card__content .btn {
  margin-top: 8px;
}

.my-story-card__image {
  float: right;
  width: 188px;
  margin: -18px 0 18px 48px;
  padding-top: 0;
}

.my-story-card__image--mobile {
  display: none;
}

.my-story-card__image img {
  width: 100%;
  max-width: 188px;
  aspect-ratio: 47 / 61;
  object-fit: cover;
  object-position: center 26%;
  margin-left: auto;
}

/* Homepage: offers and contact */
.home-offers {
  padding-top: 44px;
  padding-bottom: 88px;
}

.home-offers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.home-offers__card {
  min-height: 492px;
  padding: 52px 40px 48px;
  background: var(--ast-global-color-1);
  color: var(--ast-global-color-5);
}

.home-offers__card h3 {
  margin: 0 0 32px;
  color: var(--ast-global-color-5);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}

.home-offers__card p {
  margin: 0;
  color: var(--ast-global-color-5);
}

.home-contact-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 215px;
  gap: 30px;
  max-width: 610px;
  margin: 30px auto 0;
}

.home-contact-promo__card {
  background: var(--ast-global-color-4);
}

.home-contact-promo__card--copy {
  padding: 72px 56px 76px;
}

.home-contact-promo__actions {
  margin-top: 36px;
}

.home-contact-promo__actions .btn {
  min-width: 168px;
  padding: 15px 28px;
}

.home-contact-promo__card--image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 430px;
  padding: 28px 24px 0;
  background: var(--ast-global-color-4);
  overflow: hidden;
}

.home-contact-promo__card--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(233, 248, 249, 0.96) 0%,
    rgba(233, 248, 249, 0.92) 32%,
    rgba(233, 248, 249, 0.82) 58%,
    rgba(233, 248, 249, 0.72) 100%
  );
  pointer-events: none;
}

.home-contact-promo__card--image img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.42;
  filter: saturate(0.55) brightness(1.18);
  mix-blend-mode: multiply;
}

/* Homepage: story */
.home-story-band {
  position: relative;
  padding: 88px 0;
  background: transparent;
}

.home-story-band::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: var(--ast-global-color-4);
  z-index: -1;
}

.home-story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  align-items: stretch;
  max-width: 100%;
  margin: 0 auto;
  gap: 36px;
}

.home-story-card__content {
  background: var(--ast-global-color-5);
  padding: 68px 60px 60px;
}

.home-story-card__content .section-text {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.home-story-card__content h2 {
  margin: 0 0 34px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}

.home-story-card__actions {
  margin-top: 36px;
}

.home-story-card__actions .btn {
  min-width: 216px;
  padding: 15px 30px;
}

.home-story-card__image {
  background: var(--ast-global-color-5);
  min-height: 620px;
  overflow: hidden;
  border-left: 12px solid var(--ast-global-color-4);
}

.home-story-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* Footer */
.site-footer__quote-band {
  background: var(--ast-global-color-1);
  padding: 72px 0;
}

.site-footer__quote-band p {
  margin: 0;
  max-width: 580px;
  color: var(--ast-global-color-4);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.site-footer__main {
  background: var(--ast-global-color-5);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.site-footer__main-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-footer__copyright {
  margin: 0;
  color: var(--ast-global-color-2);
}

.site-footer__nav {
  display: flex;
  align-items: center;
}

.site-footer__nav a {
  color: var(--ast-global-color-2);
  text-decoration: none;
  position: relative;
}

.site-footer__nav a + a {
  margin-left: 24px;
}

.site-footer__nav a:hover {
  color: var(--ast-global-color-1);
  text-decoration: none;
}

/* Legal pages */
.legal-page {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 64px 20px 88px;
  background: var(--ast-global-color-4);
}

.legal-page__card {
  max-width: 980px;
  margin: 0 auto;
  padding: 52px 64px 60px;
  background: var(--ast-global-color-5);
}

.legal-page__card h1 {
  margin: 0 0 34px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ast-global-color-2);
}

.legal-page__card h2 {
  margin: 24px 0 12px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ast-global-color-2);
}

.legal-page__card p,
.legal-page__card li {
  color: var(--ast-global-color-3);
  font-size: 0.95rem;
  line-height: 1.45;
}

.legal-page__card p {
  margin: 0;
}

.legal-page__card ul {
  margin: 0;
  padding-left: 24px;
}

.legal-page__card a {
  word-break: break-word;
}

/* Small desktop: 1025-1299 */
@media (max-width: 1299px) and (min-width: 1025px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .section-text {
    max-width: var(--content-width-small-desktop);
    margin-left: auto;
    margin-right: auto;
  }

  .home-contact-promo {
    max-width: var(--content-width-small-desktop);
    margin-left: auto;
    margin-right: auto;
  }

  .home-offers__grid {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-story-card {
    max-width: var(--content-width-small-desktop);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
    align-items: start;
  }

  .home-story-card__content {
    padding: 52px 40px;
  }

  .home-story-card__image {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 520px;
    padding: 0;
    background: var(--ast-global-color-4);
    border-left: 0;
  }

  .home-story-card__image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center 18%;
  }

  .hero__content {
    display: flex;
    justify-content: center;
  }
}

/* Tablet: 769-1023 */
@media (max-width: 1023px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  header {
    padding: 10px 0;
  }

  .logo img {
    height: 38px;
  }

  .nav-toggle {
    display: block;
  }

  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  header nav a + a {
    margin-left: 0;
  }

  header nav a {
    display: block;
    padding: 16px 20px;
    text-align: left;
    color: #0F172A;
    border-bottom: 1px solid #454F5E;
  }

  header nav a:last-child {
    border-bottom: none;
  }

  header nav a.active {
    color: #3AA6B9;
    font-weight: 600;
    background: rgba(58, 166, 185, 0.08);
  }

  header nav.open {
    display: flex;
  }

  .section-text {
    max-width: var(--content-width-tablet);
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    height: clamp(300px, 38vw, 400px);
    background-position: center center;
  }

  .hero__content {
    padding: 28px 0;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 4.4vw, 2.7rem);
    line-height: 1.2;
    margin: 0 0 18px;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }

  .home-band p,
  .home-band li,
  .services-intro p,
  .services-pathway__content p,
  .services-pathway__content li,
  .services-why__content p,
  .services-why__content li,
  .services-pricing__content p,
  .services-pricing__content li,
  .services-pricing__note p,
  .services-cta p,
  .contact-intro__column p,
  .about-intro p,
  .about-columns__card p,
  .about-columns__card li,
  .about-why__content li,
  .about-cta__card p,
  .home-offers__intro p,
  .home-offers__card p,
  .home-contact-promo__card--copy p,
  .home-story-card__content p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .home-offers {
    padding-top: 40px;
    padding-bottom: 72px;
  }

  .home-offers__grid,
  .home-contact-promo,
  .services-work-together__list,
  .about-columns__grid,
  .contact-intro__grid {
    max-width: var(--content-width-tablet);
    margin-left: auto;
    margin-right: auto;
  }

  .home-offers__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-offers__card {
    min-height: auto;
    padding: 36px 24px 32px;
  }

  .home-contact-promo__card--copy {
    padding: 60px 44px 64px;
  }

  .services-intro__note {
    padding: 22px 24px 22px 58px;
  }

  .services-intro__note::before {
    left: 22px;
    top: 22px;
  }

  .services-work-together__item + .services-work-together__item {
    margin-top: 20px;
  }

  .services-pathways__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: var(--content-width-tablet);
    margin-left: auto;
    margin-right: auto;
  }

  .services-pathway__card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.8fr);
    gap: 22px;
    align-items: stretch;
  }

  .services-pathway__image {
    min-height: 100%;
    max-height: none;
  }

  .services-pathway__image img {
    object-fit: contain;
    object-position: left top;
    background: var(--ast-global-color-4);
  }

  .services-pathway__content {
    padding: 24px 24px 22px 0;
  }

  .about-columns__grid,
  .contact-intro__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .my-story-card {
    padding: 42px 40px 48px;
  }

  .my-story-card__content h1 {
    font-size: clamp(2.1rem, 4.4vw, 2.9rem);
  }

  .my-story-card__eyebrow {
    margin-bottom: 18px;
  }

  .my-story-card__intro {
    overflow: auto;
  }

  .my-story-card__content p,
  .my-story-card__eyebrow {
    font-size: 1rem;
    line-height: 1.62;
  }

  .my-story-card__content h2 {
    margin-top: 28px;
  }

  .my-story-card__image {
    width: 160px;
    margin: 0 0 16px 32px;
    padding-top: 0;
  }

  .my-story-card__image img {
    max-width: 160px;
    object-position: center 24%;
  }

  .about-columns__card,
  .about-cta__card {
    padding: 28px 24px 30px;
  }

  .home-story-band {
    padding: 72px 0;
  }

  .home-story-card {
    max-width: var(--content-width-tablet);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-story-card__content {
    padding: 36px 24px 32px;
  }

  .home-story-card__image {
    order: -1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 260px;
    max-height: 320px;
    padding: 24px 0 0;
    background: var(--ast-global-color-4);
    border-left: 0;
  }

  .home-story-card__image img {
    width: 260px;
    height: 296px;
    object-fit: cover;
    object-position: center 18%;
  }

  .legal-page__card {
    padding: 44px 40px 52px;
  }

  .site-footer__quote-band {
    padding: 52px 0;
  }

  .site-footer__copyright,
  .site-footer__nav a {
    font-size: 0.82rem;
  }
}

/* Mobile: <=768 */
@media (max-width: 768px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-section--compact {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  header {
    padding: 6px 0;
  }

  .logo img {
    height: 34px;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
  }

  .hamburger,
  .hamburger::before,
  .hamburger::after {
    width: 18px;
  }

  .hamburger::before {
    top: -6px;
  }

  .hamburger::after {
    top: 6px;
  }

  .section-text {
    max-width: var(--content-width-mobile);
    margin-left: auto;
    margin-right: auto;
  }

  .hero--home {
    background-image: url("../images/home-hero-mobile.jpg");
  }

  .hero--about {
    background-image: url("../images/about-hero-mobile.jpg");
  }

  .hero--contact {
    background-image: url("../images/contact-hero-mobile.jpg");
  }

  .hero--services {
    background-image: url("../images/services-hero-mobile.jpg");
  }

  .hero {
    height: clamp(300px, 62vw, 420px);
    background-position: center center;
  }

  .hero__content {
    padding: 44px 0;
  }

  .hero--home .hero__content {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(1.25rem, 5.8vw, 2rem);
    line-height: 1.2;
    margin: 0 0 14px;
    max-width: 100%;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
  }

  .hero--services .section-text--hero,
  .hero--home .section-text--hero {
    background: rgba(58, 166, 185, 0.5);
    padding: 20px 24px;
    border-radius: 8px;
  }

  .home-main {
    padding-top: 36px;
    padding-bottom: 18px;
  }

  .services-intro__note {
    margin-top: 24px;
    padding: 20px 22px 20px 54px;
  }

  .services-intro__note::before {
    left: 20px;
    top: 20px;
    font-size: 22px;
  }

  .services-work-together__list,
  .about-columns__grid,
  .contact-intro__grid {
    max-width: var(--content-width-mobile);
    margin-left: auto;
    margin-right: auto;
  }

  .services-work-together__item + .services-work-together__item {
    margin-top: 18px;
  }

  .services-pathways {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .services-pathways__grid {
    max-width: var(--content-width-mobile);
    grid-template-columns: 1fr;
    gap: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-pathway__card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
  }

  .services-pathway__image {
    min-height: 180px;
    max-height: 220px;
  }

  .services-pathway__image img {
    object-fit: contain;
    object-position: left top;
    background: var(--ast-global-color-4);
  }

  .services-pathway__content {
    padding: 20px 0 18px;
  }

  .services-pathway__content h2 {
    margin-bottom: 18px;
  }

  .services-pathway__content p + p,
  .services-pathway__content p + ul,
  .services-pathway__content ul + .services-pathway__actions {
    margin-top: 18px;
  }

  .services-pathway__content ul {
    padding-left: 22px;
  }

  .services-pathway__actions {
    text-align: center;
  }

  .about-columns__grid,
  .contact-intro__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .my-story-band {
    padding-top: 30px;
    padding-bottom: 38px;
  }

  .my-story-card {
    padding: 30px 24px 34px;
  }

  .my-story-card__content h1 {
    margin-bottom: 18px;
    font-size: 2.35rem;
  }

  .my-story-card__eyebrow {
    margin-bottom: 16px;
  }

  .my-story-card__content h2 {
    margin-top: 28px;
  }

  .my-story-card__content p,
  .my-story-card__eyebrow {
    font-size: 1rem;
    line-height: 1.6;
  }

  .my-story-card__content p + p {
    margin-top: 10px;
  }

  .my-story-card__image {
    float: none;
    width: 152px;
    margin: 0 0 8px;
    padding-top: 0;
  }

  .my-story-card__intro .my-story-card__image {
    display: none;
  }

  .my-story-card__image--mobile {
    display: block;
  }

  .my-story-card__image img {
    max-width: 152px;
    margin-left: 0;
    object-position: center 22%;
  }

  .about-columns__card,
  .about-cta__card {
    padding: 24px 22px 26px;
  }

  .contact-details__card {
    max-width: 420px;
    padding: 18px 16px;
  }

  .contact-details__row {
    align-items: flex-start;
  }

  .contact-details__phone-desktop {
    display: none;
  }

  .contact-details__phone-mobile {
    display: inline;
  }

  .about-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .home-main .home-band__section--welcome {
    margin-bottom: 52px;
  }

  .home-main .home-band__section h2 {
    margin-bottom: 18px;
  }

  .home-main .home-band__section--expect p + p,
  .home-main .home-band__section--expect p + ul,
  .home-main .home-band__section--expect ul + .home-cta-row {
    margin-top: 18px;
  }

  .home-main .home-band__section--expect .home-cta-row {
    margin-top: 30px;
  }

  .home-main .home-cta-row {
    margin-top: 22px;
  }

  .home-band p,
  .home-band li,
  .services-intro p,
  .services-pathway__content p,
  .services-pathway__content li,
  .services-why__content p,
  .services-why__content li,
  .services-pricing__content p,
  .services-pricing__content li,
  .services-pricing__note p,
  .services-cta p,
  .about-intro p,
  .about-columns__card p,
  .about-columns__card li,
  .about-why__content li,
  .about-cta__card p,
  .home-offers__intro p,
  .home-offers__card p,
  .home-contact-promo__card--copy p,
  .home-story-card__content p {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .home-offers {
    padding-top: 32px;
    padding-bottom: 60px;
  }

  .home-offers__grid,
  .home-contact-promo {
    max-width: var(--content-width-mobile);
    margin-left: auto;
    margin-right: auto;
  }

  .home-offers__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .home-offers__card {
    padding: 40px 40px;
  }

  .home-offers__card h3 {
    margin-bottom: 24px;
  }

  .home-contact-promo {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
  }

  .home-contact-promo__card--image {
    order: -1;
    min-height: 180px;
    max-height: 220px;
    padding: 0;
    align-items: center;
  }

  .home-contact-promo__card--copy {
    padding: 48px 40px 52px;
  }

  .home-contact-promo__card--copy h2 {
    font-size: 21px;
  }

  .home-contact-promo__actions {
    margin-top: 28px;
  }

  .home-contact-promo__card--image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center center;
    opacity: 0.4;
  }

  .home-story-band {
    padding: 60px 0;
  }

  .home-story-card {
    max-width: var(--content-width-mobile);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-story-card__image {
    order: -1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 240px;
    max-height: 280px;
    padding: 20px 0 0;
    background: var(--ast-global-color-4);
    border-left: 0;
  }

  .home-story-card__content {
    padding: 40px 40px;
  }

  .home-story-card__content h2 {
    margin-bottom: 24px;
    font-size: 21px;
  }

  .home-story-card__actions {
    margin-top: 28px;
  }

  .home-story-card__actions .btn {
    min-width: 0;
    width: 100%;
  }

  .home-story-card__image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    object-position: center 18%;
  }

  .site-footer__quote-band {
    padding: 56px 0;
  }

  .site-footer__quote-band p {
    max-width: 320px;
    font-size: 1.5rem;
  }

  .site-footer__main-inner {
    flex-direction: column;
    align-items: center;
  }

  .site-footer__copyright,
  .site-footer__nav a {
    font-size: 0.6rem;
    line-height: 1.4;
    white-space: normal;
  }

  .site-footer__copyright {
    text-align: center;
  }

  .site-footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .site-footer__nav a + a {
    margin-left: 0;
  }

  .legal-page {
    padding: 40px 20px 60px;
  }

  .legal-page__card {
    padding: 32px 24px 40px;
  }

  .legal-page__card h1 {
    font-size: 21px;
    margin-bottom: 20px;
  }

  .legal-page__card h2 {
    margin: 20px 0 10px;
    font-size: 21px;
  }
}
