:root {
  --custom-lavender: #8e889c;
  --custom-lavender-light: #efedf1;
}

body { background: var(--paper); }

.custom-hero {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0 clamp(58px, 7vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: clamp(38px, 7vw, 95px);
  align-items: end;
}
.custom-hero h1 { max-width: 850px; margin: 14px 0 24px; }

.planning-label,
.offer-status {
  display: inline-flex;
  margin: 0;
  padding: 7px 11px;
  background: var(--custom-lavender-light);
  color: #5a5563;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.planning-note {
  padding: 22px;
  border: 1px solid #d9e1da;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  box-shadow: 0 18px 42px #294d4f10;
}
.planning-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font: 400 24px/1.15 Georgia, "Times New Roman", serif;
}

.custom-section {
  padding: clamp(70px, 8vw, 110px) max(22px, calc((100vw - 1180px) / 2));
  background: #fff;
}
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2,
.custom-boundary h2,
.custom-contact h2 {
  margin: 0 0 18px;
  font: 400 clamp(40px, 4.6vw, 62px)/1.05 Georgia, "Times New Roman", serif;
  letter-spacing: -.03em;
}
.section-heading > p:last-child { color: var(--muted); }

.offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.offer-card {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #d9e1da;
  background: var(--sand);
}
.offer-top { display: flex; justify-content: space-between; gap: 24px; color: var(--teal); font-size: 11px; }
.offer-top strong { color: var(--ink); }
.offer-status { margin-top: 30px; }
.offer-card h3 { margin: 18px 0; font: 400 34px/1.1 Georgia, "Times New Roman", serif; }
.offer-card > p:not(.offer-status):not(.scope-note) { color: var(--muted); }
.offer-card ul { margin: 28px 0; padding: 0; list-style: none; }
.offer-card li { position: relative; padding: 10px 0 10px 24px; border-bottom: 1px solid #d7ddd6; font-size: 13px; }
.offer-card li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); }
.scope-note { margin: 25px 0 0; padding: 15px; border-left: 2px solid var(--custom-lavender); background: #fffdf9; font-size: 11px; }

.process-section { background: #eef0e8; }
.process-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; }
.process-grid li { padding: 28px; border-top: 1px solid #aebfb4; }
.process-grid li + li { border-left: 1px solid #c8d3ca; }
.process-grid span { color: var(--teal); font-size: 10px; letter-spacing: .13em; }
.process-grid h3 { margin: 16px 0 12px; font: 400 24px/1.15 Georgia, "Times New Roman", serif; }
.process-grid p { margin: 0; color: var(--muted); font-size: 12px; }

.custom-boundary {
  padding: clamp(70px, 8vw, 110px) max(22px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8vw;
  background: var(--teal);
  color: #fff;
}
.custom-boundary .eyebrow { color: #c7d9ce; }
.boundary-copy { color: #deebe3; }
.boundary-copy p { margin: 0 0 20px; }

.custom-contact { padding: clamp(72px, 8vw, 112px) 22px; text-align: center; }
.custom-contact > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 30px; color: var(--muted); }
.custom-button { display: inline-flex; gap: 26px; padding: 15px 22px; background: var(--teal); color: #fff; font-weight: 700; }
.custom-contact small { display: block; margin: 22px auto 0; color: var(--muted); font-size: 10px; }

.custom-footer {
  padding: 34px max(22px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid #dbe2dc;
  font-size: 12px;
}
.custom-footer > a { color: var(--teal); font-weight: 700; }
.custom-footer nav { display: flex; gap: 20px; }

@media (max-width: 820px) {
  .custom-hero,
  .custom-boundary { grid-template-columns: 1fr; }
  .planning-note { max-width: 560px; }
  .offer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(3) { border-left: 0; }
}

@media (max-width: 560px) {
  .area-header nav a:not(.back-link):not(.session-link) { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li + li { border-left: 0; }
  .custom-footer { flex-direction: column; }
  .custom-footer nav { flex-wrap: wrap; }
}
