:root {
  --porcelain: #f5f8fc;
  --sand: #e8eef6;
  --ink: #0e2238;
  --ink-soft: rgba(14, 34, 56, 0.76);
  --sea: #2a6f97;
  --clay: #10283d;
  --leaf: #47c3a3;
  --leaf-pale: #d6fff2;
  --white: #ffffff;
  --line: rgba(14, 34, 56, 0.1);
  --shadow-soft: 0 18px 36px rgba(14, 34, 56, 0.08);
  --shadow-strong: 0 28px 60px rgba(14, 34, 56, 0.18);
  --page-wash:
    radial-gradient(circle at top left, rgba(71, 195, 163, 0.12), transparent 30%),
    radial-gradient(circle at 85% 8%, rgba(42, 111, 151, 0.1), transparent 26%),
    linear-gradient(180deg, #dceff1 0%, #d6eaee 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-wash);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.container {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(240, 246, 250, 0.82);
  border-bottom: 1px solid rgba(14, 34, 56, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.nav {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: var(--ink-soft);
}

.nav a {
  font-size: 0.97rem;
}

.nav-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--leaf);
  color: #08251e;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(71, 195, 163, 0.2);
  white-space: nowrap;
}

.hero {
  background: var(--page-wash);
  padding: 2rem 0 3rem;
}

.hero-grid,
.intro-grid,
.business-grid,
.security-grid,
.steps-grid,
.pricing-grid,
.areas-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  align-items: center;
  grid-template-columns: 1.12fr 0.88fr;
}

.hero-copy {
  padding: 1rem 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(14, 34, 56, 0.7);
}

.section-kicker {
  margin-bottom: 0.9rem;
}

.section-kicker-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--leaf-pale);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero h1 {
  margin-top: 1.15rem;
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.97;
}

.hero-text,
.section-intro,
.panel p,
.service-card p,
.contact-card p {
  line-height: 1.75;
}

.hero-text {
  margin-top: 1.5rem;
  max-width: 40rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-secondary-actions {
  margin-top: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--leaf);
  color: #08251e;
  box-shadow: 0 16px 32px rgba(71, 195, 163, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.price-strip {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(14, 34, 56, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.price-strip-label {
  color: rgba(14, 34, 56, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-strip-value {
  font-size: 1.1rem;
  font-weight: 900;
  white-space: nowrap;
}

.price-strip-note {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.trust-grid,
.card-grid {
  display: grid;
  gap: 1rem;
}

.trust-grid {
  margin-top: 1.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card,
.panel,
.contact-card,
.service-card {
  border-radius: 24px;
}

.trust-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.96rem;
  font-weight: 600;
}

.panel,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  padding: 1.45rem;
  box-shadow: var(--shadow-soft);
}

.panel-soft {
  background: #edf4fb;
}

.panel h3,
.service-card h3,
.contact-card h3 {
  font-size: 1.45rem;
  line-height: 1.14;
}

.panel p,
.service-card p,
.contact-card p,
.security-callout p,
.section-intro {
  margin-top: 0.85rem;
  color: var(--ink-soft);
}

.section {
  padding: 4.5rem 0;
}

.section h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 3.45rem);
  line-height: 1.02;
}

.news-hero h1 {
  max-width: 10ch;
}

.intro-grid,
.business-grid,
.steps-grid,
.pricing-grid,
.faq-grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(71, 195, 163, 0.16), transparent 22%),
    linear-gradient(180deg, #0f2337 0%, #0b1d2f 100%);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: inherit;
}

.dark-intro {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.76);
}

.service-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.security-grid,
.areas-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.security-callout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 28px;
  padding: 2rem;
  background:
    radial-gradient(circle at top left, rgba(71, 195, 163, 0.15), transparent 26%),
    linear-gradient(180deg, #143049 0%, #10283d 100%);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.security-callout p {
  color: rgba(255, 255, 255, 0.76);
}

.security-mini {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.5rem;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.section-sand {
  background: linear-gradient(180deg, #edf4fb 0%, #e8eef6 100%);
}

.section-business {
  background:
    radial-gradient(circle at 85% 12%, rgba(71, 195, 163, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}

.steps-list,
.faq-list,
.news-list {
  display: grid;
  gap: 1rem;
}

.news-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.75fr 1.25fr;
}

.news-card {
  display: grid;
  gap: 0.85rem;
}

.news-card p {
  margin-top: 0;
}

.news-meta {
  color: rgba(14, 34, 56, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-link {
  color: var(--sea);
  font-weight: 800;
  width: fit-content;
}

.text-link {
  color: var(--sea);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.article-section {
  min-height: calc(100vh - 74px);
}

.article-layout {
  display: grid;
  place-items: start center;
}

.article-detail {
  display: grid;
  gap: 1rem;
  max-width: 780px;
}

.article-detail h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.02;
}

.article-detail p {
  margin-top: 0;
  font-size: 1.08rem;
}

.article-detail h2 {
  margin-top: 1.2rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.08;
}

.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

.source-note {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: #edf4fb;
  color: var(--ink-soft);
  font-weight: 700;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}

.section-bordered {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area-note {
  margin-top: 1.4rem;
}

.panel-image {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  display: grid;
  gap: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-strong);
}

.hero-photo-personal {
  max-width: 430px;
  justify-self: end;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1.06;
  object-fit: cover;
}

.hero-photo-personal img {
  aspect-ratio: 1;
  object-position: center;
  transform: scale(1.015);
}

.hero-photo-missing img {
  display: none;
}

.hero-photo-missing::before {
  content: "David's photo";
  display: grid;
  place-items: center;
  min-height: 380px;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 255, 242, 0.8), transparent 26%),
    linear-gradient(135deg, #dceff1 0%, #edf4fb 54%, #f8fbff 100%);
  color: rgba(14, 34, 56, 0.62);
  font-weight: 800;
}

.photo-note {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.1rem 1.15rem;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
  border-top: 1px solid var(--line);
}

.photo-note strong {
  font-size: 1rem;
  font-weight: 800;
}

.photo-note span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.price-note {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.price-note span {
  color: rgba(14, 34, 56, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-note strong {
  font-size: 1.1rem;
  font-weight: 900;
  white-space: nowrap;
}

.price-note small {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.trust-section {
  padding-top: 0.5rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-row > div {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.trust-row strong {
  font-size: 0.96rem;
  font-weight: 800;
}

.trust-row span {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: center;
}

.section-heading {
  display: grid;
  gap: 0.2rem;
  max-width: 42rem;
}

.section-heading p,
.soft-band > .container > div > p,
.pricing-box p,
.steps p {
  margin-top: 0.85rem;
  color: var(--ink-soft);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.soft-band {
  background: transparent;
}

.list-panel {
  display: grid;
  gap: 1rem;
}

.list-panel > div {
  display: grid;
  gap: 0.3rem;
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.list-panel strong,
.card strong,
.steps h3,
.pricing-box h2 {
  font-size: 1.15rem;
}

.list-panel span {
  color: var(--ink-soft);
  line-height: 1.55;
}

.image-card {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

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

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.steps article:first-child {
  border-top: 0;
  padding-top: 0;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}

.pricing-section {
  background: transparent;
}

.pricing-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.pricing-box .eyebrow {
  display: flex;
  width: fit-content;
  margin-bottom: 0.85rem;
}

.pricing-box h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.price-large {
  display: grid;
  place-items: center;
  min-width: 170px;
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #143049 0%, #10283d 100%);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.price-large span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 0.95;
}

.price-large small {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 700;
}

.promise-note {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  padding: 1.45rem;
  box-shadow: var(--shadow-soft);
}

.card p {
  margin-top: 0.85rem;
  color: var(--ink-soft);
}

.card-grid {
  margin-top: 1rem;
}

.image-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem;
  background: linear-gradient(180deg, transparent 0%, rgba(22, 50, 74, 0.88) 100%);
  color: var(--white);
}

.image-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.image-title {
  margin-top: 0.7rem;
  max-width: 18rem;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.18;
}

.contact-grid {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.contact-options {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-action > span {
  display: grid;
  gap: 0.25rem;
}

.contact-action-label {
  color: var(--leaf-pale);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-action-value {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-icon {
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(214, 255, 242, 0.12);
  fill: var(--leaf-pale);
}

.contact-icon-facebook {
  background: rgba(214, 255, 242, 0.12);
  fill: var(--leaf-pale);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  min-height: 52px;
  padding: 0.85rem 0.95rem;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(71, 195, 163, 0.2);
  outline: none;
}

.form-button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-note {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.hidden-field {
  display: none;
}

@media (max-width: 1100px) {
  .hero-grid,
  .intro-grid,
  .business-grid,
  .security-grid,
  .steps-grid,
  .pricing-grid,
  .areas-grid,
  .faq-grid,
  .news-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1,
  .section h2 {
    max-width: none;
  }

  .hero-photo-personal {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.9rem 0;
  }

  .nav {
    gap: 0.75rem 0.9rem;
  }

  .nav-call {
    min-height: 40px;
    padding: 0.6rem 0.85rem;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .price-strip {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .trust-grid,
  .two-up,
  .three-up,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.6rem 0;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .panel-image {
    min-height: 360px;
  }

  .image-card {
    min-height: 0;
  }

  .image-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
}

.contact-section,
.section-contact {
  background:
    radial-gradient(circle at top right, rgba(71, 195, 163, 0.16), transparent 22%),
    linear-gradient(180deg, #0f2337 0%, #0b1d2f 100%);
  color: var(--white);
}

.contact-section .eyebrow,
.section-contact .section-kicker-dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: var(--leaf-pale);
}

.contact-section p,
.section-contact .dark-intro {
  color: rgba(255, 255, 255, 0.76);
}

.contact-section .contact-action svg,
.contact-section .facebook-icon {
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(214, 255, 242, 0.12);
  fill: var(--leaf-pale);
}
