:root {
  --ink: #1f211e;
  --paper: #f2eee5;
  --cream: #fffaf2;
  --coral: #ff6848;
  --mint: #b9d7c7;
  --sage: #345f50;
  --line: #c8c2b7;
  --white: #fff;
  --muted: #66685f;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    16px/1.65 "Helvetica Neue",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 15px;
  background: var(--coral);
  font-weight: 900;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.utility {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100% - 1220px) / 2));
  color: #d4d8d2;
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.utility a {
  color: #fff;
}
header {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0 max(20px, calc((100% - 1220px) / 2));
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  background: var(--mint);
  border-radius: 50%;
  font-weight: 950;
}
.brand strong {
  font-size: 13px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
header nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
}
header nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.nav-call {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 19px;
  color: #fff;
  background: var(--sage);
  border-radius: 99px;
  text-decoration: none;
  font-weight: 900;
}
.hero {
  position: relative;
  padding-bottom: 165px;
  background: var(--cream);
}
.hero figure {
  position: relative;
  height: 565px;
  margin: 0 0 0 max(0px, calc((100% - 1320px) / 2));
  overflow: hidden;
  border-radius: 0 0 0 86px;
}
.hero figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31, 33, 30, 0.35), transparent 45%);
}
.hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero figcaption {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 22px;
  padding: 12px 16px;
  color: #fff;
  background: #1f211edd;
  font-size: 12px;
}
.hero-card {
  position: absolute;
  z-index: 3;
  left: max(20px, calc((100% - 1180px) / 2));
  bottom: 45px;
  width: min(760px, calc(100% - 40px));
  padding: 45px 48px;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 36px 36px 36px 4px;
  box-shadow: 15px 15px 0 var(--mint);
}
.edition {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.edition.light {
  color: var(--mint);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}
h1 {
  margin-bottom: 22px;
  font-size: clamp(50px, 6.5vw, 82px);
  line-height: 0.94;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
}
.hero-card > p:not(.edition) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}
.primary-call {
  width: min(430px, 100%);
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 27px;
  padding: 12px 18px;
  color: #fff;
  background: var(--sage);
  border-radius: 99px;
  text-decoration: none;
}
.primary-call span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.primary-call strong {
  font-size: 20px;
  white-space: nowrap;
}
.hero-note {
  position: absolute;
  z-index: 4;
  right: max(22px, calc((100% - 1180px) / 2));
  bottom: 57px;
  display: flex;
  flex-direction: column;
  padding: 17px 20px;
  background: var(--coral);
  transform: rotate(-2deg);
}
.hero-note b {
  font-family: Georgia, serif;
  font-size: 18px;
}
.hero-note span {
  font-size: 11px;
  font-weight: 800;
}
.intro {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 70px;
  padding: 100px max(22px, calc((100% - 1120px) / 2));
}
.intro > p {
  color: var(--sage);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.intro h2 {
  margin: 0;
}
.problem-index {
  padding: 100px max(22px, calc((100% - 1220px) / 2));
  background: var(--ink);
  color: #fff;
}
.index-title {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 60px;
}
.index-title > span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 55px;
}
.index-grid article {
  min-height: 285px;
  padding: 27px;
  background: #2b2e29;
  border-radius: 24px 24px 24px 3px;
}
.index-grid article:nth-child(2n) {
  background: #353832;
}
.index-grid b {
  color: var(--coral);
  font-size: 11px;
}
.index-grid h3 {
  margin: 58px 0 10px;
  font-size: 22px;
}
.index-grid p {
  color: #c5c9c1;
  font-size: 14px;
}
.plan {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding: 110px max(22px, calc((100% - 1160px) / 2));
  color: #fff;
  background: var(--sage);
}
.plan-copy {
  align-self: start;
  position: sticky;
  top: 25px;
}
.plan-copy > p:not(.edition) {
  color: #d3e4dc;
}
.plan-copy > a {
  display: inline-block;
  margin-top: 24px;
  color: #fff;
  font-weight: 900;
  text-underline-offset: 5px;
}
.plan ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ffffff66;
}
.plan li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #ffffff66;
}
.plan li > span {
  color: var(--mint);
  font-weight: 900;
}
.plan h3 {
  margin: 0 0 7px;
  font:
    500 25px Georgia,
    serif;
}
.plan li p {
  margin: 0;
  color: #d3e4dc;
}
.trust-scenes {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  padding: 100px max(22px, calc((100% - 1180px) / 2));
  background: var(--cream);
}
.trust-scenes-head {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 45px;
  align-items: start;
  margin-bottom: 26px;
}
.trust-scenes-head h2 {
  max-width: 850px;
  margin: 0;
}
.trust-scenes figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 4px 36px 4px 36px;
}
.trust-scenes figure:nth-of-type(2) {
  margin-top: 64px;
}
.trust-scenes img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.trust-scenes figcaption {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 22px 25px 26px;
}
.trust-scenes figcaption b {
  color: var(--sage);
  font: 500 24px Georgia, serif;
}
.trust-scenes figcaption span {
  color: var(--muted);
}
.service-library {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 100px max(22px, calc((100% - 1220px) / 2));
  gap: 13px;
}
.library-head {
  grid-column: 1/-1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 35px;
}
.service-tile {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--ink);
  border-radius: 34px 34px 34px 4px;
  text-decoration: none;
}
.service-tile span {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.service-tile h3 {
  margin: 88px 0 12px;
  font:
    500 30px/1 Georgia,
    serif;
}
.service-tile p {
  color: #343833;
}
.service-tile b {
  margin-top: auto;
}
.service-tile.coral {
  background: var(--coral);
}
.service-tile.mint {
  background: var(--mint);
}
.service-tile.ink {
  color: #fff;
  background: var(--ink);
}
.service-tile.ink p {
  color: #c7cbc5;
}
.local-context {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  align-items: center;
  padding: 110px max(22px, calc((100% - 1120px) / 2));
  background: var(--mint);
}
.context-number {
  font:
    500 clamp(75px, 11vw, 150px)/1 Georgia,
    serif;
  color: var(--sage);
  letter-spacing: -0.08em;
}
.local-context > div:last-child > p:not(.edition) {
  color: #355147;
  font-size: 18px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  padding: 100px max(22px, calc((100% - 1160px) / 2));
  background: var(--cream);
}
.faq {
  border-top: 1px solid var(--ink);
}
details {
  border-bottom: 1px solid var(--ink);
}
summary {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
summary:after {
  content: "+";
  color: var(--coral);
  font-size: 28px;
}
details[open] summary:after {
  content: "−";
}
details p {
  color: var(--muted);
}
.final-call {
  padding: 85px max(22px, calc((100% - 1120px) / 2));
  color: #fff;
  background: var(--coral);
  text-align: center;
}
.final-call p {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.final-call h2 {
  max-width: 900px;
  margin: 0 auto 32px;
}
.final-call a {
  width: min(420px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: auto;
  padding: 17px 20px;
  background: var(--ink);
  border-radius: 99px;
  color: #fff;
  text-decoration: none;
}
.final-call a span {
  font-weight: 900;
}
.final-call a strong {
  font-size: 22px;
}
footer {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: 30px;
  padding: 45px max(22px, calc((100% - 1180px) / 2));
  color: #bec2bb;
  background: var(--ink);
  font-size: 13px;
}
footer .brand {
  color: #fff;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
footer nav a,
.footer-call {
  color: #fff;
}
footer small {
  grid-column: 1/-1;
  padding-top: 18px;
  border-top: 1px solid #ffffff26;
}
.mobile-call {
  display: none;
}
.plain .plain-hero {
  padding: 85px max(22px, calc((100% - 980px) / 2));
  background: var(--mint);
}
.plain .plain-hero h1 {
  max-width: 900px;
}
.plain .plain-hero > p:not(.edition) {
  max-width: 760px;
  color: #355147;
  font-size: 18px;
}
.plain .plain-body {
  max-width: 900px;
  margin: auto;
  padding: 75px 22px;
}
.plain .plain-body h2 {
  margin-top: 55px;
}
.plain .plain-body h3 {
  margin-top: 34px;
}
.plain .plain-body p,
.plain .plain-body li {
  color: var(--muted);
}
.plain .plain-body a {
  font-weight: 900;
}
.plain .note {
  margin: 30px 0;
  padding: 25px;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 22px 22px 22px 3px;
}
.plain .page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.plain .page-links a {
  padding: 12px 16px;
  color: #fff;
  background: var(--sage);
  border-radius: 99px;
  text-decoration: none;
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .hero {
    padding-bottom: 245px;
  }
  .hero figure {
    height: 480px;
  }
  .hero-card {
    bottom: 45px;
  }
  .hero-note {
    display: none;
  }
  .intro,
  .index-title,
  .plan,
  .local-context,
  .faq-section {
    grid-template-columns: 1fr;
  }
  .trust-scenes,
  .trust-scenes-head {
    grid-template-columns: 1fr;
  }
  .trust-scenes figure:nth-of-type(2) {
    margin-top: 0;
  }
  .index-grid,
  .service-library {
    grid-template-columns: 1fr 1fr;
  }
  .library-head {
    grid-column: 1/-1;
  }
  .service-tile:last-child {
    grid-column: 1/-1;
  }
  .plan-copy {
    position: static;
  }
}
@media (max-width: 650px) {
  body {
    padding-bottom: 78px;
  }
  .utility {
    padding: 7px 10px;
    font-size: 9px;
    white-space: nowrap;
  }
  header {
    min-height: 68px;
    padding: 0 14px;
  }
  .brand > span {
    width: 38px;
    height: 38px;
  }
  .brand strong {
    font-size: 11px;
  }
  .nav-call {
    display: none;
  }
  .hero {
    padding-bottom: 345px;
  }
  .hero figure {
    height: 300px;
    border-radius: 0;
  }
  .hero figcaption {
    right: 10px;
    bottom: 10px;
    font-size: 10px;
  }
  .hero-card {
    bottom: 32px;
    left: 14px;
    width: calc(100% - 28px);
    padding: 27px 20px;
    border-radius: 24px 24px 24px 3px;
    box-shadow: 8px 8px 0 var(--mint);
  }
  h1 {
    font-size: clamp(43px, 12.5vw, 54px);
  }
  h2 {
    font-size: clamp(35px, 10vw, 45px);
  }
  .hero-card > p:not(.edition) {
    font-size: 15px;
  }
  .primary-call {
    min-height: 59px;
    gap: 8px;
  }
  .primary-call strong {
    font-size: 16px;
  }
  .intro,
  .problem-index,
  .plan,
  .trust-scenes,
  .service-library,
  .local-context,
  .faq-section {
    padding: 68px 18px;
  }
  .trust-scenes-head {
    gap: 6px;
    margin-bottom: 18px;
  }
  .trust-scenes img {
    height: 230px;
  }
  .index-grid,
  .service-library {
    grid-template-columns: 1fr;
  }
  .index-grid article {
    min-height: 240px;
  }
  .service-tile,
  .service-tile:last-child {
    grid-column: auto;
    min-height: 310px;
  }
  .service-tile h3 {
    margin-top: 55px;
  }
  .library-head {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }
  .context-number {
    font-size: 84px;
  }
  .final-call {
    padding: 65px 18px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 38px 18px 100px;
  }
  .footer-call {
    font-size: 19px;
  }
  .mobile-call {
    display: block;
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: var(--ink);
  }
  .mobile-call a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--ink);
    background: var(--coral);
    border-radius: 99px;
    text-decoration: none;
    font-weight: 900;
  }
  .plain .plain-hero {
    padding: 55px 18px;
  }
  .plain .plain-body {
    padding: 55px 18px;
  }
}

.review-depth{margin:42px 0;padding:28px;background:#fff;border-left:8px solid currentColor}.review-depth h2{font-size:clamp(2rem,6vw,3.2rem)}
