:root {
  --color-white: #fefefe;
  --color-ink: #004551;
  --color-text: #5a5a5a;
  --color-muted: #8e8e8e;
  --color-accent: #ff9700;
  --color-soft: #d9eaed;
  --color-soft-2: #c8e1e5;
  --color-bg: #f4f4f4;
  --shadow: 0 24px 70px rgb(0 69 81 / 14%);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100% - 32px));
  --font-heading: Raleway, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section-pad {
  padding: 96px 0;
}

.section-tint {
  background: var(--color-bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--container);
  margin: 14px auto 0;
  padding: 12px 16px;
  color: var(--color-ink);
  background: rgb(254 254 254 / 88%);
  border: 1px solid rgb(0 69 81 / 8%);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgb(0 69 81 / 8%);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__logo {
  width: 154px;
  height: auto;
  flex: 0 0 auto;
}

.brand__descriptor {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--color-ink);
  background: rgb(255 210 46 / 24%);
  border: 1px solid rgb(216 19 16 / 12%);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-ink);
  background: var(--color-soft);
  outline: none;
}

.site-nav .nav-cta {
  color: var(--color-white);
  background: var(--color-ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--color-ink);
  border: 0;
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-white);
  border-radius: 999px;
}

.hero {
  margin-top: -82px;
  padding-top: 150px;
  background:
    radial-gradient(circle at 15% 18%, rgb(255 151 0 / 16%), transparent 24rem),
    linear-gradient(180deg, var(--color-soft), var(--color-white) 66%);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 52px;
  align-items: center;
}

.hero__copy {
  max-width: 610px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  line-height: 1.06;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.hero__lead,
.section-head p,
.section-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 1.06rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn--primary {
  color: var(--color-white);
  background: var(--color-accent);
  box-shadow: 0 14px 30px rgb(255 151 0 / 25%);
}

.btn--ghost {
  color: var(--color-ink);
  background: var(--color-white);
  box-shadow: inset 0 0 0 1px rgb(0 69 81 / 12%);
}

.hero__media {
  position: relative;
}

.hero__media img,
.image-stack > img,
.cta-band > img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero__media img {
  aspect-ratio: 1.18 / 1;
}

.hero-card {
  position: absolute;
  right: 28px;
  bottom: -28px;
  width: min(330px, calc(100% - 56px));
  padding: 22px;
  color: var(--color-ink);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.hero-card__kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong,
.hero-card small {
  display: block;
}

.hero-card strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-card small {
  margin-top: 6px;
  color: var(--color-muted);
}

.quick-info {
  padding-bottom: 42px;
}

.quick-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgb(0 69 81 / 10%);
  border: 1px solid rgb(0 69 81 / 10%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.quick-info article {
  padding: 28px;
  background: var(--color-white);
}

.quick-info span,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 50%;
  font-weight: 900;
}

.quick-info strong {
  display: block;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.quick-info p {
  margin: 8px 0 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.split--reverse .section-copy {
  order: 2;
}

.image-stack {
  position: relative;
}

.image-stack > img {
  aspect-ratio: 0.92 / 1;
}

.floating-note {
  position: absolute;
  right: -22px;
  bottom: 30px;
  width: min(290px, 88%);
  padding: 20px;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  margin-top: 6px;
  color: rgb(254 254 254 / 78%);
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.check-list span {
  position: relative;
  padding: 14px 18px 14px 48px;
  color: var(--color-ink);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.check-list span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
  text-align: center;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head p {
  margin-inline: auto;
}

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

.service-card {
  min-height: 230px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid rgb(0 69 81 / 8%);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 44px rgb(0 69 81 / 8%);
}

.service-card p {
  margin: 12px 0 0;
}

.service-card--featured {
  position: relative;
  grid-row: span 2;
  min-height: 478px;
  padding: 0;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-ink);
}

.service-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgb(0 69 81 / 92%) 0%,
    rgb(0 69 81 / 55%) 38%,
    transparent 72%
  );
  pointer-events: none;
}

.service-card--featured img {
  width: 100%;
  height: 100%;
  min-height: 478px;
  object-fit: cover;
  object-position: center 15%;
}

.service-card--featured div {
  position: absolute;
  inset: auto 26px 26px;
  z-index: 2;
}

.service-card--featured span {
  color: var(--color-accent);
  font-weight: 900;
  text-transform: uppercase;
}

.service-card--featured h3,
.service-card--featured p {
  color: var(--color-white);
}

.cta-band {
  position: relative;
  display: grid;
  min-height: 430px;
  margin-block: 96px;
  overflow: hidden;
  color: var(--color-white);
  border-radius: var(--radius-lg);
  background: var(--color-ink);
}

.cta-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.cta-band > div {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 560px;
  padding: 48px;
}

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

.cta-band p:not(.eyebrow) {
  margin: 14px 0 26px;
}

address {
  margin-top: 20px;
  color: var(--color-ink);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 800;
}

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

.contact-list a {
  padding: 14px 16px;
  color: var(--color-ink);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  background: var(--color-soft);
  outline: none;
}

.map-card {
  padding: 36px;
  background:
    linear-gradient(145deg, rgb(217 234 237 / 96%), rgb(254 254 254 / 96%)),
    radial-gradient(circle at top right, rgb(255 151 0 / 20%), transparent 15rem);
  border: 1px solid rgb(0 69 81 / 10%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-card__top {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.map-card__logo {
  width: min(245px, 100%);
  height: auto;
}

.map-card dl {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.map-card dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgb(0 69 81 / 12%);
}

.map-card dt {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.map-card dd {
  margin: 0;
  color: var(--color-ink);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgb(0 69 81 / 10%);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-list details {
  padding: 0 22px;
  background: var(--color-soft);
  border: 1px solid rgb(0 69 81 / 10%);
  border-radius: var(--radius-sm);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  color: var(--color-ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--color-accent);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 0 20px;
}

.site-footer {
  padding: 54px 0 24px;
  color: rgb(254 254 254 / 74%);
  background: var(--color-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 44px;
}

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

.brand--footer .brand__logo {
  width: 170px;
}

.brand--footer .brand__descriptor {
  color: var(--color-white);
  background: rgb(255 210 46 / 18%);
  border-color: rgb(255 210 46 / 20%);
}

.site-footer .footer-grid strong,
.site-footer .footer-grid a,
.site-footer .footer-grid span:not(.brand__descriptor) {
  display: block;
}

.site-footer .footer-grid strong {
  color: var(--color-white);
  margin-bottom: 12px;
}

.site-footer .footer-grid a,
.site-footer .footer-grid span:not(.brand__descriptor) {
  margin-top: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-accent);
  outline: none;
}

.footer-bottom {
  display: block;
  width: var(--container);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgb(254 254 254 / 12%);
  font-size: 0.9rem;
  text-align: center;
}

.footer-bottom span {
  display: inline;
  margin-top: 0;
}

@media (max-width: 920px) {
  .site-header {
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 84px 16px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    visibility: hidden;
    background: var(--color-white);
    border: 1px solid rgb(0 69 81 / 10%);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .site-nav a {
    padding: 14px 16px;
  }

  .hero__content,
  .split,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    gap: 38px;
  }

  .split--reverse .section-copy {
    order: 0;
  }

  .quick-info__grid {
    grid-template-columns: 1fr;
  }

  .service-card--featured {
    min-height: 390px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 22px, 1120px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .site-header {
    margin-top: 8px;
    padding: 10px;
  }

  .brand__descriptor {
    display: none;
  }

  .brand__logo {
    width: 132px;
  }

  .hero {
    margin-top: -74px;
    padding-top: 130px;
  }

  .hero-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .hero__media img {
    aspect-ratio: 1 / 0.88;
  }

  .hero__actions,
  .btn {
    width: 100%;
  }

  .floating-note {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .quick-info article,
  .service-card,
  .map-card,
  .cta-band > div {
    padding: 22px;
  }

  .cta-band {
    min-height: 470px;
    margin-block: 68px;
  }

  .map-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery-grid {
    gap: 10px;
  }
}
