:root {
  --color-navy: #113887;
  --color-navy-deep: #0a255f;
  --color-teal: #43c3c1;
  --color-teal-soft: #dbf6f4;
  --color-sand: #ece3db;
  --color-ink: #162136;
  --color-muted: #60708d;
  --color-line: rgba(17, 56, 135, 0.12);
  --color-white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(12, 30, 74, 0.12);
  --shadow-card: 0 18px 42px rgba(17, 56, 135, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(67, 195, 193, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 40%, #f2f7ff 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.86);
  border-bottom: 1px solid rgba(17, 56, 135, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo {
  width: clamp(72px, 5vw, 96px);
  height: clamp(72px, 5vw, 96px);
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(17, 56, 135, 0.18);
}

.brand__text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand__text span {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.brand__text strong {
  font-size: 1rem;
  color: var(--color-navy-deep);
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.menu a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--color-ink);
}

.menu .button {
  color: var(--color-white);
}

.menu a:not(.button) {
  position: relative;
}

.menu a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--color-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.menu a:not(.button):hover::after,
.menu a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(17, 56, 135, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--color-navy);
  transition: transform 220ms ease, opacity 220ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  color: var(--color-white);
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 30px rgba(17, 56, 135, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(17, 56, 135, 0.26);
}

.button--ghost {
  border-color: rgba(17, 56, 135, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-navy-deep);
  box-shadow: none;
}

.button--light {
  background: var(--color-white);
  color: var(--color-navy-deep);
  box-shadow: none;
}

.button--sm {
  min-height: 46px;
  padding: 0 20px;
}

.hero {
  position: relative;
  padding: 64px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 16px 0 auto auto;
  width: 48vw;
  height: 48vw;
  max-width: 760px;
  max-height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 195, 193, 0.2) 0%, rgba(67, 195, 193, 0) 68%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(67, 195, 193, 0.12);
  color: var(--color-navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.hero h1,
.section-heading h2,
.about__content h2,
.features h2,
.cta h2,
.contact__panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 4.8vw, 4.9rem);
  color: var(--color-navy-deep);
}

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

.hero__lead,
.section-heading p,
.about__content p,
.features__content p,
.cta p,
.contact-item p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.hero__lead {
  max-width: 54ch;
  margin-top: 22px;
  font-size: 1rem;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero__badge,
.stat-card {
  padding: 18px 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.hero__badge {
  min-width: 200px;
}

.hero__badge strong,
.stat-card strong {
  display: block;
  color: var(--color-navy);
  font-size: 1.3rem;
}

.hero__badge span,
.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__info {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--color-ink);
  font-weight: 600;
}

.hero__info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero__info li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--color-teal);
  box-shadow: 0 0 0 6px rgba(67, 195, 193, 0.14);
}

.hero__visual {
  position: relative;
}

.hero__photo-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero__photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 68, 0) 10%, rgba(8, 26, 68, 0.18) 100%);
}

.hero__photo-card img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center top;
}

.hero__floating-card {
  position: absolute;
  left: -24px;
  right: 48px;
  bottom: 24px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(10, 37, 95, 0.2);
}

.hero__floating-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-teal-soft);
  color: var(--color-navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__floating-card p {
  margin: 0;
  color: var(--color-ink);
  line-height: 1.7;
}

.trust-strip {
  padding: 16px 0 0;
}

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

.trust-strip__inner div {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(17, 56, 135, 0.96), rgba(10, 37, 95, 0.96)),
    var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-card);
}

.trust-strip__inner strong,
.contact-item strong {
  display: block;
  font-size: 1rem;
}

.trust-strip__inner span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2,
.about__content h2,
.features h2,
.cta h2,
.contact__panel h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.4rem);
  color: var(--color-navy-deep);
}

.section-heading p {
  margin-top: 18px;
}

.section--about {
  position: relative;
}

.section--about::before {
  content: "";
  position: absolute;
  inset: 140px auto auto 0;
  width: 340px;
  height: 340px;
  background:
    linear-gradient(45deg, rgba(17, 56, 135, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(17, 56, 135, 0.05) 25%, transparent 25%);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 100%);
  pointer-events: none;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.about__panel {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about__panel::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(67, 195, 193, 0.82), rgba(67, 195, 193, 0));
  border-top-right-radius: 100%;
  z-index: 1;
}

.about__panel img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
}

.about__content {
  display: grid;
  gap: 20px;
}

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

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

.service-card,
.feature-card {
  position: relative;
  height: 100%;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.service-card::after,
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  transition: border-color 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.service-card:hover::after,
.feature-card:hover::after {
  border-color: rgba(67, 195, 193, 0.5);
  transform: scale(0.99);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-teal) 0%, #8ee8e6 100%);
  color: var(--color-navy-deep);
  font-weight: 800;
}

.service-card h3,
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: var(--color-navy-deep);
}

.service-card p,
.feature-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.section--contrast {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(67, 195, 193, 0.16), transparent 28%),
    linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
}

.section--contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
  background-size: 56px 56px;
  opacity: 0.7;
  pointer-events: none;
}

.features {
  position: relative;
  display: grid;
  gap: 36px;
}

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

.features__content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.feature-card h3 {
  color: var(--color-white);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
  min-height: 320px;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  background: #dde8f7;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card--tall {
  grid-row: span 2;
  min-height: 780px;
}

.gallery-card--wide {
  grid-column: 1 / -1;
  min-height: 430px;
}

.section--cta {
  padding-top: 30px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px 48px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(67, 195, 193, 0.94), rgba(67, 195, 193, 0.72)),
    var(--color-teal);
  color: var(--color-white);
  box-shadow: var(--shadow-card);
}

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

.cta p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.88);
}

.section--contact {
  padding-top: 70px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.contact__panel,
.contact__map {
  border: 1px solid var(--color-line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.contact__panel {
  padding: 36px;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.contact-item a {
  display: inline-block;
  margin-top: 8px;
  color: var(--color-navy);
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-teal-soft);
  color: var(--color-navy-deep);
}

.contact__map {
  overflow: hidden;
  min-height: 100%;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.footer {
  padding: 34px 0 40px;
  background:
    radial-gradient(circle at top right, rgba(67, 195, 193, 0.16), transparent 24%),
    linear-gradient(180deg, #0f2e74 0%, #0a255f 100%);
  color: var(--color-white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.8fr;
  gap: 28px;
  padding: 34px 0 30px;
}

.brand--footer {
  align-items: center;
}

.brand--footer .brand__text span {
  color: rgba(255, 255, 255, 0.68);
}

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

.footer__brand p,
.footer__contact p,
.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.footer__brand {
  display: grid;
  gap: 18px;
}

.footer__cta {
  justify-self: start;
}

.footer__column {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer__column h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.footer__nav,
.footer__contact,
.footer__social {
  display: grid;
  gap: 12px;
}

.footer__nav a,
.footer__contact a,
.footer__social a {
  color: var(--color-white);
  font-weight: 700;
}

.footer__social a {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

.reveal--delay {
  transition-delay: 120ms;
}

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

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

@media (max-width: 1080px) {
  .menu-toggle {
    display: inline-block;
  }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(17, 56, 135, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

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

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

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

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

  .hero__grid,
  .about,
  .contact,
  .gallery-grid,
  .features__grid,
  .services-grid,
  .trust-strip__inner,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero__photo-card img {
    height: 620px;
  }

  .gallery-card--tall {
    min-height: 520px;
  }

  .gallery-card {
    min-height: 320px;
  }

  .gallery-card--wide {
    min-height: 320px;
  }

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

@media (max-width: 780px) {
  .topbar__inner {
    min-height: 78px;
    padding: 10px 0;
  }

  .brand__text span {
    font-size: 0.67rem;
    letter-spacing: 0.14em;
  }

  .brand__text strong {
    font-size: 0.9rem;
  }

  .brand__logo {
    width: 60px;
    height: 60px;
  }

  .footer__grid,
  .footer__bottom {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    display: grid;
  }

  .hero {
    padding-top: 42px;
  }

  .hero__grid {
    gap: 34px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.55rem, 11vw, 3.8rem);
  }

  .hero__lead {
    font-size: 0.99rem;
  }

  .hero__photo-card {
    border-radius: 28px;
  }

  .hero__photo-card img,
  .about__panel img {
    height: 460px;
  }

  .gallery-card {
    min-height: 260px;
  }

  .hero__floating-card {
    position: relative;
    left: 0;
    right: 0;
    bottom: auto;
    margin-top: -42px;
    margin-inline: 14px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .about__content h2,
  .features h2,
  .cta h2,
  .contact__panel h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .service-card,
  .feature-card,
  .contact__panel,
  .cta {
    padding: 24px;
  }

  .contact__map iframe {
    min-height: 420px;
  }
}
