:root {
  --ink: #17332c;
  --muted: #587168;
  --cream: #fff8ec;
  --paper: #ffffff;
  --saffron: #ef8f23;
  --green: #166534;
  --line: #d8e2da;
  --shadow: 0 18px 45px rgba(23, 51, 44, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(239, 143, 35, .18), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(22, 101, 52, .14), transparent 22%),
    linear-gradient(180deg, #fff8ec 0%, #f8fbf8 42%, #ffffff 100%);
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 248, 236, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 226, 218, .7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--saffron), #fff 48%, var(--green));
  color: #fff;
  text-shadow: 0 1px 2px rgba(23, 51, 44, .55);
  font-weight: 800;
  letter-spacing: .04em;
  border: 1px solid rgba(23, 51, 44, .16);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: .85rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: .94rem;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 8px;
}

nav a:hover,
.nav-cta {
  color: var(--ink);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(54px, 9vw, 112px) clamp(18px, 5vw, 72px) 42px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(.2px);
}

.hero-visual::before {
  width: 160px;
  height: 160px;
  right: -22px;
  top: -28px;
  background: rgba(239, 143, 35, .22);
}

.hero-visual::after {
  width: 130px;
  height: 130px;
  left: -24px;
  bottom: 64px;
  background: rgba(22, 101, 52, .18);
}

.hero-visual img,
.photo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual > img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy h1,
.section h2,
.cta h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -.02em;
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 6vw, 5.35rem);
  max-width: 930px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
  max-width: 720px;
  margin: 24px 0 0;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 900;
  color: var(--green);
}

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

.contact-line {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.contact-line span:first-child {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.primary {
  background: var(--saffron);
  color: #22170a;
  box-shadow: 0 10px 22px rgba(239, 143, 35, .24);
}

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

.hero-panel {
  position: relative;
  margin: -58px 20px 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin: 0 0 18px;
  font-size: 1.4rem;
}

.hero-panel ul {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.hero-panel li {
  padding: 14px;
  background: #f7faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .98rem;
  overflow-wrap: anywhere;
}

.hero-panel strong {
  color: var(--saffron);
}

.trust-strip {
  max-width: 1180px;
  margin: 16px auto 0;
  padding: 0 clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-strip div {
  background: #123a2f;
  color: #fff;
  border-radius: 8px;
  padding: 20px;
}

.trust-strip span {
  display: block;
  color: #d9eee4;
  margin-top: 6px;
  line-height: 1.45;
}

.color-ribbon {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 0 clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ribbon-card {
  min-height: 142px;
  border-radius: 8px;
  padding: 22px;
  border: 1px solid rgba(23, 51, 44, .12);
  box-shadow: 0 12px 28px rgba(23, 51, 44, .08);
  position: relative;
  overflow: hidden;
}

.ribbon-card::after {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  right: -34px;
  bottom: -42px;
  border: 18px solid rgba(255, 255, 255, .32);
}

.ribbon-card span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .76rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.ribbon-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.36;
  max-width: 320px;
}

.ribbon-card.saffron {
  background: linear-gradient(135deg, #f2a13b, #fff2df);
}

.ribbon-card.white {
  background: #fff;
}

.ribbon-card.green {
  background: linear-gradient(135deg, #124d2d, #1a7a42);
  color: #fff;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 90px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section h2,
.cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 8px 26px rgba(23, 51, 44, .06);
}

.service-card span {
  color: var(--saffron);
  font-weight: 900;
}

.service-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin: 14px 0 14px;
}

.service-card p,
.split p,
.faq p,
footer p {
  color: var(--muted);
  line-height: 1.62;
}

.service-card p {
  max-width: 980px;
  font-size: 1.04rem;
}

.service-card a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
  color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.split {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.image-split {
  align-items: center;
}

.image-split.reverse {
  grid-template-columns: 1fr .8fr;
}

.photo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.photo-card img {
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.document-list {
  padding-top: 0;
}

.document-list .steps {
  grid-template-columns: 1fr;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  background: var(--cream);
  border-left: 5px solid var(--saffron);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  line-height: 1.65;
  font-size: 1.04rem;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  margin-bottom: 14px;
  box-shadow: 0 8px 22px rgba(23, 51, 44, .045);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.local-copy {
  display: grid;
  gap: 16px;
  max-width: 1040px;
}

.local-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.06rem;
}

.blog-section {
  padding-top: 20px;
}

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

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 26px rgba(23, 51, 44, .06);
}

.blog-card time {
  color: var(--green);
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 12px 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.blog-card a {
  color: var(--green);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.article-main {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 84px) clamp(18px, 5vw, 72px);
}

.article-hero {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.article-hero time {
  color: var(--green);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .86rem;
}

.article-hero h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.02em;
}

.article-body {
  margin-top: 34px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.article-body h2 {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.12;
  margin: 34px 0 10px;
}

.article-body ul {
  padding-left: 22px;
}

.article-faq {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.article-faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.article-faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.article-faq p {
  margin-bottom: 0;
}

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

.cta {
  margin: 10px auto 70px;
  max-width: 1040px;
  padding: clamp(34px, 6vw, 54px);
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  text-align: center;
}

.cta .eyebrow {
  color: #93d2af;
}

.cta .button {
  margin-top: 24px;
}

.cta-copy {
  margin: 18px auto 0;
  max-width: 680px;
  color: #d9eee4;
  line-height: 1.7;
  font-size: 1.05rem;
  font-weight: 700;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-actions .button {
  margin-top: 0;
}

.button.light {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .09);
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px clamp(18px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

footer p {
  margin: 0;
  max-width: 760px;
}

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

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

  nav {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .image-split.reverse {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .color-ribbon,
  .service-grid,
  .blog-grid,
  .document-list .steps {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin: 12px 0 0;
  }
}

@media (max-width: 560px) {
  nav a {
    padding: 9px 10px;
    font-size: .88rem;
  }

  .brand small {
    display: none;
  }

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