:root {
  --ink: #1d2528;
  --forest: #23352f;
  --pine: #355849;
  --blue: #31566d;
  --rose: #9a4d4a;
  --gold: #c49a58;
  --paper: #f8f3ea;
  --linen: #eee4d5;
  --mist: #e8eef0;
  --white: #ffffff;
  --muted: #64716f;
  --line: rgba(29, 37, 40, 0.14);
  --shadow: 0 24px 70px rgba(33, 44, 45, 0.18);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper), #fffaf2 36%, var(--white));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: absolute; top: -80px; left: 16px; z-index: 20; padding: 10px 12px; background: var(--white); }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 5vw, 58px);
  background: rgba(248, 243, 234, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-weight: 900;
}
.brand strong, .brand small { display: block; }
.brand strong { line-height: 1.06; }
.brand small { color: var(--muted); font-size: 0.78rem; }
.nav-links { display: flex; gap: 18px; color: #3e4d50; font-size: 0.92rem; font-weight: 760; }
.nav-links a, .soft-link { text-decoration: none; }
.nav-links a:hover, .soft-link:hover { color: var(--rose); }

.call-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--rose);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(104, 48, 45, 0.22);
  font-weight: 880;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.call-button:hover { background: var(--forest); }
.call-button.large { min-height: 54px; padding-inline: 25px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.86fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  max-width: 1360px;
  min-height: min(760px, calc(100svh - 74px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
}
.hero-copy { max-width: 740px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.02;
}
h1 { max-width: 760px; font-size: clamp(2.58rem, 5.6vw, 5.35rem); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { margin: 0 0 8px; color: var(--forest); font-size: 1.04rem; }
.lede {
  max-width: 690px;
  margin: 22px 0 0;
  color: #334346;
  font-size: clamp(1.05rem, 1.55vw, 1.2rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }
.soft-link { color: var(--blue); font-weight: 880; }
.hero-photo { position: relative; margin: 0; }
.hero-photo::before {
  content: "";
  position: absolute;
  inset: -18px -18px 36px 32px;
  z-index: -1;
  background: var(--pine);
  border-radius: 18px;
}
.hero-photo img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.hero-photo figcaption {
  width: min(92%, 520px);
  margin: -30px auto 0;
  position: relative;
  padding: 16px 18px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(33, 44, 45, 0.13);
  font-weight: 780;
  text-align: center;
}

.call-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(90deg, var(--forest), var(--blue));
}
.call-strip span { color: rgba(255,255,255,0.76); font-weight: 780; }
.call-strip span:last-child { text-align: right; }
.call-strip a { color: var(--white); text-decoration: none; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 32px); }
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.86fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}
.trust-intro p, .section-heading p, .story-copy p, .planning-panel p, .final-call p { color: var(--muted); font-size: 1.04rem; }
.trust-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.trust-cards article,
.service-grid article,
.faq-grid details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(33, 44, 45, 0.08);
}
.trust-cards article { padding: 22px; }
.trust-cards span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--rose);
  font-weight: 900;
}
.trust-cards p, .service-grid p, .faq-grid p { margin: 0; color: var(--muted); }

.photo-story {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px) clamp(58px, 8vw, 96px);
}
.photo-story figure { margin: 0; }
.photo-story img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.story-copy { max-width: 590px; }
.story-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.story-copy li {
  padding: 13px 16px;
  background: rgba(53, 88, 73, 0.1);
  border: 1px solid rgba(53, 88, 73, 0.16);
  border-radius: 999px;
  color: var(--forest);
  font-weight: 800;
}

.service-section { padding-top: 0; }
.section-heading { max-width: 830px; margin-bottom: 28px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.service-grid article { padding: 24px; border-top: 6px solid var(--gold); }
.card-link { display: grid; min-height: 100%; color: inherit; text-decoration: none; }
.service-grid strong { display: block; margin-bottom: 8px; color: var(--forest); }
.card-link span {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--rose);
  font-size: 0.9rem;
  font-weight: 900;
}
.card-link:hover span { color: var(--blue); }

.planning-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.9fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  padding: clamp(52px, 7vw, 88px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(35, 53, 47, 0.98), rgba(49, 86, 109, 0.96)),
    linear-gradient(90deg, rgba(154,77,74,0.22), transparent);
}
.planning-panel h2 { color: var(--white); }
.planning-panel p { color: rgba(255,255,255,0.76); }
.planning-images {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 14px;
  align-items: end;
}
.planning-images img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border: 6px solid rgba(255,255,255,0.8);
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(0,0,0,0.25);
}
.planning-images img:first-child { height: 540px; }

.coverage-section { padding-bottom: clamp(36px, 6vw, 68px); }
.section-heading.compact { max-width: 700px; }
.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.coverage-list span {
  padding: 12px 16px;
  color: var(--forest);
  background: var(--mist);
  border: 1px solid rgba(49, 86, 109, 0.18);
  border-radius: 999px;
  font-weight: 850;
}

.faq-section { padding-top: clamp(38px, 6vw, 70px); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.faq-grid details { padding: 22px; }
summary { cursor: pointer; color: var(--forest); font-weight: 880; }
details p { margin-top: 12px; }

.final-call {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto clamp(58px, 8vw, 96px);
  padding: clamp(34px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.final-call h2 { max-width: 720px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #14201d;
}
.site-footer p { max-width: 780px; color: rgba(255,255,255,0.7); }

.subhero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.66fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 72px);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}
.breadcrumbs a { color: var(--blue); text-decoration: none; }
.subhero p:not(.eyebrow), .content-copy p { color: var(--muted); font-size: 1.06rem; }
.subhero-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.subhero-card img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 16px;
}
.subhero-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.subhero-card li {
  padding: 10px 12px;
  color: var(--forest);
  background: var(--mist);
  border-radius: 12px;
  font-weight: 820;
}
.content-band { max-width: var(--max); margin: 0 auto; padding: clamp(26px, 5vw, 58px) clamp(18px, 4vw, 32px); }
.content-copy { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr); gap: clamp(28px, 5vw, 58px); align-items: start; }
.content-copy h2 { margin-bottom: 18px; }
.fact-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(33, 44, 45, 0.08);
}
.fact-panel strong { display: block; margin-bottom: 10px; color: var(--forest); font-size: 1.02rem; }
.fact-panel ul, .process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fact-panel li, .process-list li {
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: var(--muted);
}
.process-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-list li {
  min-height: 150px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(33, 44, 45, 0.07);
}
.process-list strong { display: block; margin-bottom: 8px; color: var(--forest); }
.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.answer-grid article {
  padding: 24px;
  background: rgba(232, 238, 240, 0.72);
  border: 1px solid rgba(49, 86, 109, 0.14);
  border-radius: 18px;
}
.answer-grid h3 { margin-bottom: 10px; }
.answer-grid p { margin: 0; color: var(--muted); }
.related-pages { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.related-pages a {
  padding: 12px 16px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(33, 44, 45, 0.06);
}
.related-pages a:hover { color: var(--rose); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero, .trust-grid, .photo-story, .planning-panel, .service-grid, .faq-grid, .subhero, .content-copy, .process-list, .answer-grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .planning-images { max-width: 760px; }
  .final-call, .site-footer, .call-strip { grid-template-columns: 1fr; flex-direction: column; align-items: stretch; }
  .call-strip span, .call-strip span:last-child { text-align: center; }
}

@media (max-width: 720px) {
  .site-header { min-height: 56px; justify-content: center; padding: 6px 12px; }
  .brand, .nav-links { display: none; }
  .site-header .call-button { width: min(100%, 420px); min-height: 44px; }
  .hero { display: block; min-height: auto; padding: 34px 18px 46px; }
  h1 { font-size: clamp(2.08rem, 10.4vw, 3rem); line-height: 1.04; }
  h2 { font-size: clamp(1.82rem, 8.4vw, 2.36rem); line-height: 1.08; }
  .lede { font-size: 1rem; }
  .hero-actions { align-items: stretch; }
  .call-button { width: 100%; max-width: 100%; white-space: normal; }
  .soft-link { text-align: center; }
  .hero-photo { margin-top: 30px; }
  .hero-photo::before { inset: -10px -8px 24px 18px; border-radius: 16px; }
  .hero-photo img { max-height: none; border-width: 5px; }
  .hero-photo figcaption { width: calc(100% - 18px); margin-top: -18px; font-size: 0.92rem; }
  .section { padding: 48px 18px; }
  .photo-story { padding: 0 18px 54px; }
  .photo-story img, .planning-images img, .planning-images img:first-child { height: auto; max-height: none; }
  .subhero { display: block; padding: 34px 18px 46px; }
  .subhero-card { margin-top: 28px; padding: 14px; border-radius: 18px; }
  .subhero-card img { max-height: none; }
  .content-band { padding: 42px 18px; }
  .process-list li { min-height: auto; }
  .planning-panel { padding: 48px 18px; }
  .planning-images { grid-template-columns: 1fr; }
  .story-copy li { border-radius: 16px; }
  .final-call { margin-inline: 18px; padding: 28px; }
}
