:root {
  --ink: #13272f;
  --muted: #55717b;
  --bg: #eef5f2;
  --paper: #ffffff;
  --mist: #dce9e6;
  --sea: #346f78;
  --sea-dark: #194b54;
  --cedar: #7f5a36;
  --sand: #efe3cd;
  --line: #ceddd9;
  --shadow: 0 24px 70px rgba(19, 39, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 52px);
  background: rgba(238, 245, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

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

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

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

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

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

.hero {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 52px) 42px;
  background:
    linear-gradient(135deg, rgba(220, 233, 230, 0.85), rgba(239, 227, 205, 0.52)),
    var(--bg);
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

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

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

h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6.4vw, 6rem);
  letter-spacing: -0.045em;
}

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

h3 {
  font-size: 1.35rem;
}

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

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

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

.button.primary {
  background: var(--cedar);
  color: #fff;
  box-shadow: 0 14px 34px rgba(127, 90, 54, 0.24);
}

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

.hero-panel {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border: 12px solid #fff;
  border-radius: 40px 40px 40px 12px;
  box-shadow: var(--shadow);
  background: var(--sand);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(19, 39, 47, 0.54));
}

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

.panel-note strong,
.panel-note a {
  display: block;
}

.panel-note a {
  color: var(--sea-dark);
  font-weight: 900;
  white-space: nowrap;
}

.trust-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 52px) 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-strip div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

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

.trust-strip strong {
  margin-bottom: 4px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

section {
  padding: clamp(66px, 9vw, 108px) clamp(18px, 4vw, 52px);
}

.story {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.story-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px 42px 42px 42px;
  box-shadow: var(--shadow);
}

.story-copy p,
.why p,
.section-head p,
.photo-break p,
.cta p {
  color: var(--muted);
}

.story-copy p {
  margin: 20px 0 0;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--sea-dark);
  font-weight: 900;
}

.services {
  background: var(--sea-dark);
  color: #fff;
}

.services .eyebrow {
  color: #b9d7d5;
}

.services .section-head p,
.services article p {
  color: #c9dddc;
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.18);
}

.service-grid article {
  min-height: 250px;
  padding: 30px;
  background: #1f5962;
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: #b9d7d5;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-grid h3 {
  margin-bottom: 12px;
}

.why {
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 72px);
}

.why-list {
  display: grid;
  gap: 14px;
}

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

.why-list strong,
.why-list span {
  display: block;
}

.why-list strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.why-list span {
  color: var(--muted);
}

.photo-break {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--paper);
}

.photo-break img {
  min-height: 430px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.areas {
  background: var(--bg);
}

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

.area-grid span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  text-align: center;
  font-weight: 800;
}

.faq {
  background: var(--paper);
}

.narrow {
  max-width: 880px;
}

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

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-family: "Lora", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.cta {
  background: var(--ink);
  color: #fff;
}

.cta .eyebrow {
  color: #b9d7d5;
}

.cta p {
  color: #d7e2e0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 52px);
  background: #0d1a20;
  color: #d7e2e0;
}

footer strong,
footer span {
  display: block;
}

footer a {
  font-weight: 900;
  white-space: nowrap;
}

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

  nav {
    display: none;
  }

  .hero-inner,
  .story-grid,
  .why-grid,
  .photo-break {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 440px;
  }

  .trust-strip,
  .service-grid,
  .area-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-call {
    padding: 10px 13px;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-panel {
    min-height: 360px;
    border-width: 8px;
    border-radius: 28px 28px 28px 10px;
  }

  .panel-note,
  .cta-inner,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip,
  .service-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }

  .photo-break img {
    min-height: 320px;
  }
}
