:root {
  --paper: #fbf8f1;
  --paper-soft: #f8f4eb;
  --ink: #201f1d;
  --body: #30302b;
  --olive: #565b39;
  --olive-dark: #4b5032;
  --gold: #8c7335;
  --line: #d8cebc;
  --line-dark: #b9ad95;
  --page: 1210px;
  --side: max(24px, calc((100vw - var(--page)) / 2));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  height: 88px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.96);
}

.header-inner {
  width: min(var(--page), calc(100vw - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 335px 1fr 1px 190px;
  align-items: center;
  gap: 34px;
}

.brand {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  font-size: 14px;
  color: #2d2b27;
}

.header-rule {
  width: 1px;
  height: 21px;
  background: var(--line);
}

.header-cta {
  justify-self: end;
  font-family: var(--serif);
  color: #7a5f22;
  font-size: 16px;
}

.hero {
  display: grid;
  grid-template-columns: var(--side) 575px minmax(0, 1fr);
  min-height: 430px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.hero-copy {
  grid-column: 2;
  padding-top: 52px;
  padding-bottom: 54px;
  padding-right: 22px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
  max-width: 510px;
  text-wrap: balance;
}

.hero p {
  margin: 30px 0 0;
  font-size: 16px;
  line-height: 1.55;
  max-width: 470px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 39px;
  margin-top: 40px;
}

.hero-primary-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 205px;
  height: 48px;
  border-radius: 2px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1;
}

.button-primary {
  background: var(--olive);
  color: #fffaf0;
  border: 1px solid var(--olive-dark);
}

.button-light {
  background: var(--paper);
  color: #2b2924;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
}

.text-link span {
  border: 0;
  font-size: 22px;
  line-height: 0;
}

.cta-note {
  margin: 0;
  color: #555346;
  font-size: 12px;
  line-height: 1.45;
}

.cta-note-light {
  color: rgba(251, 248, 241, 0.92);
  text-align: center;
}

.hero-image {
  grid-column: 3;
  min-height: 430px;
  background-image: url("assets/hero-scene.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.feature-strip {
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.feature-inner {
  width: min(var(--page), calc(100vw - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  color: #39382f;
  font-size: 14px;
}

.feature-item + .feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background: var(--line);
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--olive);
}

.main-nav a[aria-current="page"] {
  color: #7a5f22;
}

.page-main {
  background: var(--paper);
}

.page-hero {
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  width: min(var(--page), calc(100vw - 48px));
  margin: 0 auto;
  padding: 78px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(250px, 1fr);
  gap: 96px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 18px;
  color: #7a5f22;
  font-family: var(--serif);
  font-size: 17px;
}

.page-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.04;
}

.page-intro {
  margin: 0;
  max-width: 430px;
  font-size: 17px;
  line-height: 1.7;
}

.content-band {
  border-bottom: 1px solid var(--line);
}

#how-it-works {
  margin-top: 24px;
}

.how-it-works-intro {
  display: flex;
  flex-direction: column;
}

.how-it-works-image {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #f7f2e8 url("assets/how-it-works-photo.png") center center /
    cover no-repeat;
  box-shadow: 0 16px 36px rgba(54, 43, 26, 0.08);
  min-height: 360px;
}

.content-inner {
  width: min(var(--page), calc(100vw - 48px));
  margin: 0 auto;
  padding: 70px 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(220px, 370px) minmax(0, 1fr);
  gap: 92px;
}

.content-column p {
  margin: 0;
  max-width: 610px;
  font-size: 15px;
  line-height: 1.75;
}

.content-column p + p {
  margin-top: 24px;
}

.how-it-works-visual {
  margin: 18px 0 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(32, 31, 29, 0.12);
}

.how-it-works-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.detail-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.detail-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.18;
}

.detail-row p {
  margin: 0;
  max-width: 620px;
  font-size: 14px;
  line-height: 1.65;
}

.detail-number {
  color: #7d662e;
  font-family: var(--serif);
  font-size: 18px;
}

.page-quote {
  max-width: 650px;
  margin: 44px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.25;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 90px;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.contact-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-item span {
  display: block;
  color: #7a5f22;
  font-family: var(--serif);
  font-size: 16px;
}

.contact-item a,
.contact-item p {
  display: block;
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.contact-grid .content-column p:nth-of-type(2) {
  margin-bottom: 28px;
}

.form-status {
  margin-top: 22px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
}

.form-status-success {
  background: rgba(239, 244, 232, 0.9);
  color: #3e4b2c;
}

.form-status-error {
  background: rgba(251, 240, 235, 0.92);
  color: #7d3e2e;
}

.intake-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  margin-top: 26px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field span {
  color: #6d5a2c;
  font-family: var(--serif);
  font-size: 15px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 252, 246, 0.6);
  color: var(--ink);
  font: 14px/1.45 var(--sans);
  padding: 12px 14px;
}

.form-field textarea {
  resize: vertical;
  min-height: 122px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px;
}

.reviews-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.reviews-inner {
  max-width: 980px;
}

.review-entry {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 42px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.review-entry blockquote {
  margin: 0;
  max-width: 680px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.34;
  text-align: left;
}

.review-entry cite {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 14px;
  font-style: normal;
  color: #5c574b;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #7d662e;
}

.reviews-source {
  margin-top: 34px;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.split-band.tall {
  min-height: 480px;
}

.split-band.short {
  min-height: 320px;
}

.panel {
  min-width: 0;
}

.panel-left {
  border-right: 1px solid var(--line);
}

.panel-left .panel-content {
  width: min(590px, calc(100vw / 2 - 54px));
  margin-left: var(--side);
}

.panel-right .panel-content {
  width: min(590px, calc(100vw / 2 - 68px));
  margin-left: 58px;
}

.split-band.tall .panel-content {
  padding-top: 58px;
  padding-bottom: 54px;
}

.split-band.short .panel-content {
  padding-top: 42px;
  padding-bottom: 40px;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
}

.short-rule {
  display: block;
  width: 21px;
  height: 1px;
  margin-top: 18px;
  background: var(--gold);
}

.services-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  row-gap: 30px;
}

.service {
  display: grid;
  grid-template-columns: 42px 1fr;
  min-height: 66px;
}

.service-number {
  display: block;
  padding-top: 1px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 15px;
  color: #7d662e;
}

.service div {
  padding-left: 22px;
}

.service h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.18;
  font-weight: 400;
  color: var(--ink);
}

.service p,
.approach-copy p,
.faq-answer p,
.legal-lines p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.58;
}

.approach-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  column-gap: 72px;
  align-items: start;
}

.approach-copy p {
  margin-top: 25px;
  max-width: 410px;
}

.quote-panel {
  margin-top: 66px;
  min-height: 205px;
  border-left: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ink);
}

.quote-mark {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0.6;
  color: var(--gold);
}

blockquote {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.42;
  text-align: center;
}

.quote-rule {
  width: 34px;
  height: 1px;
  margin-top: 26px;
  background: var(--gold);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  margin-top: 24px;
}

.testimonial {
  height: 136px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 18px 16px;
  position: relative;
  background: rgba(255, 252, 246, 0.48);
}

.stars {
  color: #9a7d34;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}

.testimonial p {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.22;
  color: var(--ink);
}

.testimonial cite {
  position: absolute;
  right: 17px;
  bottom: 15px;
  font-family: var(--serif);
  font-style: normal;
  font-size: 12px;
}

.faq-list {
  margin-top: 24px;
}

.faq-question {
  width: 100%;
  min-height: 44px;
  padding: 0 12px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--body);
  font: 13px/1.25 var(--sans);
  text-align: left;
  cursor: pointer;
}

.faq-list .faq-question:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq-icon {
  color: #6c5727;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.faq-answer {
  padding: 10px 42px 18px 0;
  border-top: 1px solid var(--line);
}

.cta-band {
  height: 108px;
  background: var(--olive);
  color: var(--paper);
}

.cta-inner {
  width: min(748px, calc(100vw - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 199px;
  align-items: center;
  gap: 70px;
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-band h2 {
  color: var(--paper);
  font-size: clamp(24px, 5vw, 32px);
  line-height: 1;
  white-space: nowrap;
  overflow-wrap: normal;
}

.cta-band p {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 15px;
}

.site-footer {
  min-height: 132px;
  background: var(--paper);
}

.footer-inner {
  width: min(var(--page), calc(100vw - 48px));
  min-height: 132px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 86px 294px 290px 1fr 145px;
  align-items: center;
  color: #4c4a43;
}

.monogram {
  height: 52px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 50px;
  line-height: 0.95;
  color: #927535;
}

.footer-block {
  min-height: 52px;
  border-right: 1px solid var(--line);
}

.contact-lines,
.legal-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding-left: 30px;
  font-size: 12px;
}

.social-lines {
  display: flex;
  align-items: center;
  gap: 29px;
  padding-left: 50px;
  font-family: var(--serif);
  font-size: 14px;
}

.social-lines svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  color: var(--olive);
}

.legal-lines {
  padding-left: 42px;
}

.copyright {
  margin: 0;
  justify-self: end;
  font-size: 12px;
}

@media (max-width: 980px) {
  :root {
    --side: 28px;
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    row-gap: 18px;
    padding: 24px 0;
  }

  .brand {
    font-size: 32px;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 30px;
    overflow-x: auto;
  }

  .page-hero-inner,
  .editorial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .how-it-works-image {
    max-width: 520px;
    min-height: 320px;
  }

  .intake-form {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero-inner {
    padding: 62px 0 68px;
  }

  .content-inner {
    padding: 58px 0;
  }

  .header-rule {
    display: none;
  }

  .hero {
    grid-template-columns: 28px 1fr;
  }

  .hero-copy {
    grid-column: 2;
    padding-right: 28px;
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(42px, 7vw, 56px);
  }

  .hero-image {
    grid-column: 1 / -1;
    min-height: 370px;
    background-position: center top;
  }

  .split-band {
    grid-template-columns: 1fr;
  }

  .split-band.tall,
  .split-band.short {
    height: auto;
  }

  .panel-left {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .panel-left .panel-content,
  .panel-right .panel-content {
    width: calc(100vw - 56px);
    margin: 0 auto;
  }

  .approach-content {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    margin-top: 42px;
    min-height: 180px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
    padding: 38px 0;
  }

  .monogram,
  .footer-block {
    border-right: 0;
  }

  .contact-lines,
  .social-lines,
  .legal-lines {
    padding-left: 0;
  }

  .copyright {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 14px;
  }

  .header-inner {
    width: calc(100vw - 34px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .header-cta {
    justify-self: start;
  }

  .main-nav {
    gap: 22px;
    font-size: 13px;
  }

  .page-hero-inner,
  .content-inner {
    width: calc(100vw - 34px);
  }

  .page-hero-inner {
    padding: 50px 0 56px;
  }

  .page-title {
    font-size: 42px;
  }

  .page-intro {
    font-size: 15px;
  }

  .content-inner {
    padding: 46px 0;
  }

  .editorial-grid,
  .contact-grid {
    gap: 28px;
  }

  .intake-form {
    grid-template-columns: 1fr;
  }

  .detail-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .review-entry {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .review-entry blockquote {
    font-size: 22px;
  }

  .page-quote {
    font-size: 27px;
  }

  .hero {
    grid-template-columns: 17px 1fr 17px;
  }

  .hero-copy {
    grid-column: 2;
    padding: 46px 0 50px;
  }

  .hero h1 {
    font-size: 43px;
    line-height: 1.03;
  }

  .hero p br,
  .hero h1 br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .hero-image {
    min-height: 300px;
    background-size: cover;
    background-position: 44% top;
  }

  .feature-strip {
    height: auto;
  }

  .feature-inner {
    width: calc(100vw - 34px);
    grid-template-columns: 1fr 1fr;
    padding: 24px 0;
    row-gap: 20px;
  }

  .feature-item {
    justify-content: flex-start;
    font-size: 13px;
  }

  .feature-item + .feature-item::before {
    display: none;
  }

  .split-band.tall .panel-content,
  .split-band.short .panel-content {
    width: calc(100vw - 34px);
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service p br {
    display: none;
  }

  .approach-copy p {
    max-width: none;
  }

  .testimonial {
    height: auto;
    min-height: 92px;
  }

  .cta-band {
    height: auto;
  }

  .cta-inner {
    width: calc(100vw - 34px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 0;
  }

  .cta-band h2 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .footer-inner {
    width: calc(100vw - 34px);
    grid-template-columns: 1fr;
  }
}
