:root {
  --ink: #1f2825;
  --ink-soft: #4d5b55;
  --paper: #fbf8f1;
  --paper-warm: #f3eee3;
  --white: #ffffff;
  --line: #ded5c7;
  --olive: #24332f;
  --olive-2: #344a43;
  --brass: #b08a4a;
  --terracotta: #9a6249;
  --shadow: 0 18px 55px rgba(31, 40, 37, 0.11);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
}

p {
  margin: 0;
}

.visually-hidden,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  overflow: visible;
  clip: auto;
  color: var(--white);
  background: var(--olive);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid rgba(222, 213, 199, 0.86);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--paper);
  background: var(--olive);
  border: 1px solid rgba(176, 138, 74, 0.55);
  border-radius: var(--radius);
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-weight: 700;
  line-height: 1.15;
}

.brand-line {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.25;
}

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

.nav-links a {
  min-height: 42px;
  padding: 11px 12px;
  color: var(--ink-soft);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
  background: rgba(176, 138, 74, 0.15);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 46px;
  align-items: center;
  width: min(100% - 40px, var(--max));
  min-height: calc(88vh - 76px);
  margin: 0 auto;
  padding: 38px 0 46px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 610px;
  font-size: 58px;
}

.hero-subtitle {
  max-width: 600px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.button-primary {
  color: var(--paper);
  background: var(--olive);
  border-color: var(--olive);
}

.button-primary:hover {
  background: var(--olive-2);
  border-color: var(--olive-2);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--brass);
}

.hero-figure {
  position: relative;
  margin: 0;
}

.hero-figure::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  content: "";
  background: var(--olive);
  border-radius: var(--radius);
}

.hero-figure img {
  position: relative;
  width: 100%;
  height: clamp(300px, 50vh, 500px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section,
.page {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 86px 0;
}

.section-intro,
.approach-preview {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: start;
}

.section-intro {
  padding-top: 48px;
}

.section-heading h2,
.band h2,
.cta-strip h2 {
  font-size: 42px;
}

.intro-panel {
  padding-left: 32px;
  border-left: 2px solid var(--brass);
}

.intro-panel > p {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.55;
}

.owner-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.owner-list p {
  padding: 18px 20px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.criteria-grid,
.content-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.criteria-card,
.content-card,
.why-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(31, 40, 37, 0.05);
}

.criteria-card h3,
.content-card h2,
.step-item h2,
.why-item h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.criteria-card p,
.content-card p,
.step-item p,
.page-header p,
.band p,
.why-item p,
.section-heading p {
  color: var(--ink-soft);
}

.why-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: start;
  padding-top: 48px;
}

.why-preview .section-heading p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.65;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--olive);
  font-weight: 800;
  text-underline-offset: 6px;
}

.why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.band {
  margin: 28px 0;
  padding: 82px 0;
  color: var(--paper);
  background: var(--olive);
}

.band-copy {
  width: min(100% - 40px, 860px);
  margin: 0 auto;
}

.band h2 {
  color: var(--paper);
}

.band p {
  max-width: 740px;
  margin-top: 18px;
  color: rgba(251, 248, 241, 0.82);
  font-size: 19px;
}

.band a {
  display: inline-block;
  margin-top: 26px;
  color: var(--paper);
  font-weight: 800;
  text-underline-offset: 6px;
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: approach;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 58px;
  padding: 18px 18px 18px 64px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-weight: 650;
}

.timeline li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--paper);
  background: var(--terracotta);
  border-radius: 999px;
  counter-increment: approach;
  content: counter(approach);
  font-size: 13px;
  font-weight: 800;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto 92px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-header {
  max-width: 840px;
  margin-bottom: 42px;
}

.page-header h1 {
  font-size: 56px;
}

.page-header p {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.7;
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.comparison-table {
  display: grid;
  gap: 1px;
  max-width: 980px;
  margin-bottom: 38px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.comparison-row > div {
  padding: 20px;
  background: var(--white);
  color: var(--ink-soft);
}

.comparison-row > div:first-child {
  color: var(--ink);
  font-weight: 750;
}

.comparison-head > div {
  color: var(--paper);
  background: var(--olive);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.step-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.step-item {
  padding: 26px 28px;
  background: var(--white);
  border-left: 4px solid var(--brass);
  border-radius: var(--radius);
}

.page-note {
  max-width: 900px;
  margin-top: 24px;
  padding: 18px 20px;
  color: var(--ink-soft);
  background: rgba(176, 138, 74, 0.12);
  border: 1px solid rgba(176, 138, 74, 0.28);
  border-radius: var(--radius);
}

.page-faq,
.faq-section {
  max-width: var(--max);
}

.page-faq {
  margin-top: 48px;
}

.page-faq h2 {
  margin-bottom: 20px;
  font-size: 34px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(31, 40, 37, 0.04);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
  list-style-position: inside;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  padding: 18px 22px 22px;
  color: var(--ink-soft);
}

.page-cta {
  margin-top: 34px;
}

.contact-panel,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.contact-panel h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.contact-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 26px;
  color: var(--paper);
  background: var(--olive);
  border-radius: var(--radius);
}

.contact-card span {
  color: rgba(251, 248, 241, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--paper);
  font-size: 20px;
  font-weight: 800;
  word-break: break-word;
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.contact-guidance {
  display: grid;
  gap: 22px;
}

.contact-guidance h2,
.contact-form-card h2 {
  font-size: 30px;
}

.contact-guidance ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.contact-form-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-card form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row.two-up > div {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(176, 138, 74, 0.22);
  border-color: var(--brass);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note {
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer {
  color: var(--paper);
  background: #18221f;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 44px 0;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--paper);
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer p,
.footer-contact {
  color: rgba(251, 248, 241, 0.7);
}

.footer-contact {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-contact a {
  color: var(--paper);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 70px 0 0 0;
    display: none;
    align-items: stretch;
    align-content: start;
    width: 100%;
    height: calc(100vh - 70px);
    padding: 12px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    min-height: 48px;
    padding: 15px 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-figure {
    max-width: 720px;
  }

  .section-intro,
  .approach-preview,
  .contact-panel,
  .contact-layout,
  .why-preview {
    grid-template-columns: 1fr;
  }

  .criteria-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .hero,
  .section,
  .page,
  .cta-strip,
  .footer-inner,
  .band-copy {
    width: min(100% - 28px, var(--max));
  }

  .brand-line {
    display: none;
  }

  .brand-name {
    font-size: 15px;
  }

  .hero {
    gap: 22px;
    padding: 26px 0 30px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-subtitle {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-figure img {
    height: 172px;
  }

  .hero-actions,
  .cta-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-figure::before {
    inset: 12px -8px -12px 8px;
  }

  .section,
  .page {
    padding: 62px 0;
  }

  .section-intro {
    padding-top: 34px;
  }

  .section-heading h2,
  .band h2,
  .cta-strip h2 {
    font-size: 34px;
  }

  .intro-panel {
    padding-left: 20px;
  }

  .intro-panel > p,
  .page-header p,
  .band p {
    font-size: 17px;
  }

  .criteria-grid,
  .content-grid,
  .why-grid,
  .comparison-row,
  .form-row.two-up {
    grid-template-columns: 1fr;
  }

  .criteria-card,
  .content-card,
  .why-item,
  .step-item,
  .cta-strip,
  .contact-form-card {
    padding: 22px;
  }

  .page-header h1 {
    font-size: 40px;
  }

  .contact-card {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
