:root {
  --ink: #151515;
  --ink-soft: #30302d;
  --cedar: #9b4f1f;
  --cedar-dark: #6f3516;
  --moss: #32483f;
  --moss-light: #5f7b58;
  --grass: #d9e4cf;
  --stone: #f5f3ee;
  --paper: #ffffff;
  --line: #ded8cf;
  --shadow: 0 22px 60px rgba(21, 21, 21, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(20px, 4vw, 42px);
  color: var(--paper);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(21, 21, 21, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  overflow: hidden;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.95rem;
  font-weight: 800;
}

nav a {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.18);
}

.site-header.is-scrolled nav a {
  text-shadow: none;
}

.nav-cta {
  padding: 10px 14px;
  color: var(--paper);
  background: var(--cedar);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  padding: 132px 0 72px;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 39%, rgba(0, 0, 0, 0.12) 76%),
    linear-gradient(0deg, rgba(21, 21, 21, 0.52), rgba(21, 21, 21, 0.06) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

.hero-logo {
  width: clamp(118px, 16vw, 190px);
  height: clamp(118px, 16vw, 190px);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--cedar);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow,
.request-section .section-kicker {
  color: #f0c3a1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 1.02;
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 3.9rem);
  line-height: 1.12;
  font-weight: 500;
  max-width: 900px;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.field-row {
  display: flex;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.button-primary {
  color: var(--paper);
  background: var(--cedar);
  box-shadow: 0 14px 34px rgba(111, 53, 22, 0.26);
}

.button-primary:hover {
  background: var(--cedar-dark);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
}

.button-plan {
  width: 100%;
  color: var(--moss);
  border-color: rgba(50, 72, 63, 0.24);
  background: var(--grass);
}

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

.intro,
.process-section,
.faq-section {
  padding: clamp(46px, 7vw, 78px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.intro h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.intro p:last-child,
.feature-card p,
.finish-list p,
.request-copy p,
.site-footer p,
.price-note,
.faq-list p {
  color: var(--ink-soft);
}

.section {
  padding: clamp(64px, 9vw, 116px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(21, 21, 21, 0.06);
}

.feature-card {
  min-height: 260px;
  padding: 24px;
}

.feature-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--cedar);
  font-weight: 900;
}

.process-grid,
.finish-grid,
.faq-grid,
.request-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

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

.process-list li {
  position: relative;
  padding: 22px 22px 22px 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.process-list li::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--paper);
  background: var(--moss);
  border-radius: 50%;
  font-weight: 900;
}

.process-list span {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.pricing-section {
  background: linear-gradient(180deg, var(--paper), #f7faf4);
}

.price-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  padding: 26px;
}

.price-card.is-featured {
  border-color: rgba(155, 79, 31, 0.42);
  box-shadow: 0 24px 54px rgba(21, 21, 21, 0.14);
}

.plan-name {
  margin-bottom: 0;
  color: var(--moss);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
}

.price span {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--moss-light);
  border-radius: 50%;
}

.sticky-heading {
  position: sticky;
  top: 110px;
}

.finish-list {
  display: grid;
  gap: 14px;
}

.finish-list article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.finish-list article:last-child {
  border-bottom: 1px solid var(--line);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.request-section {
  padding: clamp(64px, 9vw, 118px) 0;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(50, 72, 63, 0.96), rgba(21, 21, 21, 0.98));
}

.request-copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-row > label {
  flex: 1;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

select option {
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: #f0c3a1;
  box-shadow: 0 0 0 4px rgba(155, 79, 31, 0.28);
}

::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-button {
  justify-self: start;
}

.form-button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 22px;
  color: #f0c3a1;
  font-weight: 800;
}

.form-status.is-success {
  color: #9fddb3;
}

.form-status.is-error {
  color: #ffb4aa;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  padding: 32px 0;
  background: var(--stone);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.footer-grid img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 8px;
}

.footer-grid p {
  margin-bottom: 4px;
}

.footer-grid p:first-child {
  color: var(--ink);
  font-weight: 900;
}

.footer-grid a {
  color: var(--cedar);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 330px;
  }

  .hero {
    min-height: 78vh;
    padding-top: 126px;
  }

  .intro-grid,
  .process-grid,
  .finish-grid,
  .faq-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

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

  .price-card.is-featured {
    order: -1;
  }

  .sticky-heading {
    position: static;
  }

  .footer-grid {
    grid-template-columns: auto 1fr;
  }

  .footer-grid a {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: absolute;
    color: var(--paper);
    padding: 14px;
  }

  .site-header.is-scrolled {
    position: fixed;
  }

  .brand {
    width: 54px;
    height: 54px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  nav {
    gap: 9px;
    font-size: 0.82rem;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 10px 12px;
  }

  .hero {
    min-height: 82vh;
    padding: 112px 0 48px;
  }

  .hero-media img {
    object-position: 70% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.56)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1) 42%);
  }

  .hero-content {
    width: min(100% - 28px, 720px);
    margin-left: 14px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .hero-actions,
  .field-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .process-list li {
    padding-right: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-grid a {
    grid-column: auto;
  }
}
