:root {
  --ink: #14243a;
  --ink-soft: #34445b;
  --deep: #102238;
  --green: #315f54;
  --green-dark: #234a42;
  --sand: #f5efe5;
  --ivory: #fffaf2;
  --white: #ffffff;
  --line: rgba(20, 36, 58, 0.14);
  --shadow: 0 24px 70px rgba(16, 34, 56, 0.12);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--deep);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: clamp(150px, 20vw, 210px);
}

.header-actions,
.cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.link-phone {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--green-dark);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.button:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(49, 95, 84, 0.35);
  outline-offset: 3px;
}

.button-secondary {
  background: transparent;
  color: var(--green-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(49, 95, 84, 0.08);
  color: var(--green-dark);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.section {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 70px 0;
}

.hero {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
  padding-top: 36px;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.35rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--ink-soft);
}

.hero-text,
.section-heading p,
.final-cta p,
.about p,
.card p,
.step p,
.faq-list p,
.site-footer {
  color: var(--ink-soft);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.08rem;
}

.hero-portrait {
  position: relative;
  margin: 0;
  border-radius: 28px 28px 8px 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sand);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 250, 242, 0.55);
  border-radius: inherit;
  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  min-height: 560px;
  max-height: 78vh;
  object-fit: cover;
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.hero-reassurance li {
  position: relative;
  padding-left: 16px;
}

.hero-reassurance li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.section-light {
  width: 100%;
  max-width: none;
  padding: 76px max(16px, calc((100vw - var(--max-width)) / 2));
  background: var(--sand);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.pill,
.card,
.trust-box,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.pill {
  min-height: 88px;
  padding: 20px;
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--deep);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.card {
  padding: 28px;
  box-shadow: 0 16px 46px rgba(16, 34, 56, 0.07);
}

.card h3,
.step h3,
.trust-box h2,
summary {
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.section-deep {
  width: 100%;
  max-width: none;
  padding: 82px max(16px, calc((100vw - var(--max-width)) / 2));
  background: var(--deep);
  color: var(--white);
}

.section-deep .eyebrow,
.section-deep p {
  color: rgba(255, 250, 242, 0.74);
}

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

.step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.step-number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--deep);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: start;
}

.about-text p {
  font-size: 1.08rem;
}

.quote {
  margin: 28px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--green);
  font-size: 1.28rem;
  color: var(--ink);
}

.trust-box {
  padding: 28px;
  background: var(--white);
}

.trust-box h2 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Arial, sans-serif;
  color: var(--ink-soft);
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
}

.check-list li:first-child {
  border-top: 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

details {
  padding: 0;
  overflow: hidden;
}

summary {
  min-height: 72px;
  padding: 20px 48px 20px 22px;
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 22px;
  font-size: 1.5rem;
  color: var(--green);
}

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

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  max-width: 900px;
  text-align: center;
}

.final-cta .cta-group {
  justify-content: center;
  margin-top: 28px;
}

.site-footer {
  padding: 34px 16px 42px;
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  text-align: center;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer a {
  text-decoration-color: rgba(49, 95, 84, 0.38);
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-portrait {
    max-width: 560px;
  }

  .pill-grid,
  .three-columns,
  .steps,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-box {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .header-actions,
  .cta-group {
    width: 100%;
  }

  .header-actions .button,
  .cta-group .button {
    width: 100%;
  }

  .section,
  .section-light,
  .section-deep {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero {
    gap: 32px;
    padding-top: 24px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .hero-portrait img {
    min-height: 420px;
    max-height: none;
  }

  .pill-grid,
  .three-columns,
  .steps,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .pill {
    min-height: 72px;
  }

  .step {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 22px;
  }

  .step-number {
    width: 44px;
    height: 44px;
  }
}
