:root {
  --ink: #102027;
  --muted: #557078;
  --bg: #f3fbf8;
  --paper: #ffffff;
  --aqua: #0b7c80;
  --aqua-dark: #07595d;
  --lime: #c7e66d;
  --coral: #ec7b4f;
  --sand: #f5dfb9;
  --line: #d5e6e1;
  --shadow: 0 22px 60px rgba(7, 89, 93, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(243, 251, 248, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--aqua);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-weight: 700;
  color: var(--muted);
}

nav a,
.header-call {
  text-decoration: none;
}

nav a:hover,
.text-link:hover {
  color: var(--aqua);
}

.header-call {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 4vw, 48px) 48px;
  overflow: hidden;
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.45rem;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.26rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 30px rgba(236, 123, 79, 0.25);
}

.button.ghost {
  border: 1px solid var(--line);
  background: #fff;
}

.button.light {
  background: #fff;
  color: var(--aqua-dark);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-notes span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sand);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 32, 39, 0) 48%, rgba(16, 32, 39, 0.58) 100%);
  pointer-events: none;
}

.call-card {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.call-card a {
  color: var(--aqua-dark);
  font-weight: 900;
  white-space: nowrap;
}

.quick-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px) 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-strip div {
  padding: 22px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip span {
  color: var(--muted);
  margin-top: 6px;
}

section {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 4vw, 48px);
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(30px, 7vw, 82px);
}

.rich-text p,
.section-head p,
.photo-copy p,
.why-grid p,
details p,
footer p {
  color: var(--muted);
}

.rich-text p:first-child,
.photo-copy p {
  margin-top: 0;
}

.services {
  background: #fff;
}

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

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 + p {
  margin-top: 16px;
  font-size: 1.08rem;
}

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

.service-card {
  min-height: 235px;
  padding: 28px;
  border-radius: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--aqua-dark);
  font-weight: 900;
  font-size: 0.78rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(280px, 0.9fr) minmax(220px, 0.55fr);
  gap: 18px;
  align-items: stretch;
  background: var(--aqua-dark);
  color: #fff;
}

.photo-card {
  overflow: hidden;
  border-radius: 30px;
}

.photo-card.large {
  min-height: 540px;
}

.photo-card.small {
  align-self: end;
  min-height: 340px;
}

.photo-copy {
  align-self: center;
  padding: clamp(18px, 4vw, 46px);
}

.photo-copy .eyebrow {
  color: var(--lime);
}

.photo-copy p {
  color: #d9efea;
  font-size: 1.08rem;
}

.text-link {
  color: var(--lime);
  font-weight: 900;
}

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

.why-grid div {
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.areas {
  background: #fff;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-weight: 800;
}

.narrow {
  max-width: 860px;
}

details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--aqua);
  font-family: "Instrument Sans", Arial, sans-serif;
}

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

.final-cta {
  background: linear-gradient(135deg, var(--aqua), #13a7a2);
  color: #fff;
  text-align: center;
}

.final-cta .container {
  max-width: 760px;
}

.final-cta .eyebrow {
  color: var(--lime);
}

.final-cta p {
  color: #e4fffa;
  font-size: 1.13rem;
}

footer {
  padding: 36px clamp(18px, 4vw, 48px);
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: start;
}

footer strong,
footer a,
footer span {
  display: block;
}

footer a {
  color: var(--lime);
  font-weight: 900;
}

footer p {
  max-width: 420px;
  margin: 6px 0 0;
  color: #b9cbd0;
}

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

  nav {
    display: none;
  }

  .hero-grid,
  .two-col,
  .photo-band {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .quick-strip,
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-card.large,
  .photo-card.small {
    min-height: 320px;
  }

  .photo-copy {
    padding: 24px 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .brand {
    justify-content: center;
  }

  .header-call,
  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

  .hero {
    padding-top: 38px;
  }

  .hero-visual {
    min-height: 380px;
    border-radius: 26px;
  }

  .call-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .quick-strip,
  .service-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  summary {
    font-size: 1.22rem;
  }
}
