@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #f6f3ed;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --ink: #171717;
  --muted: #5f625d;
  --line: #ded8cd;
  --accent: #1f3b2d;
  --accent-2: #315d4a;
  --accent-soft: #e8eee8;
  --gold: #a78342;
  --blue: #dce8ee;
  --max: 1160px;
  --shadow: 0 22px 55px rgba(22, 28, 24, 0.08);
  --font: Inter, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  z-index: 20;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 243, 237, 0.92);
  border-bottom: 1px solid rgba(222, 216, 205, 0.76);
  backdrop-filter: blur(14px);
}

.nav,
.section-shell,
.site-footer {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--accent);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
}

.nav-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 12px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
  gap: 54px;
  align-items: center;
  padding: 84px 0 48px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 11px;
  border: 1px solid rgba(31, 59, 45, 0.18);
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.eyebrow.inverse {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

h1,
h2 {
  font-family: var(--font);
  font-weight: 750;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.1vw, 78px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 20px;
}

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

.button {
  border: 1px solid transparent;
  padding: 13px 18px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-2);
}

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

.hero-media {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media img {
  aspect-ratio: 16 / 11;
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.hero-media figcaption {
  padding: 14px 4px 2px;
  color: var(--muted);
  font-size: 13px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-row div {
  min-width: 0;
  padding: 24px;
  background: var(--surface-soft);
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  color: var(--accent);
  font-size: 18px;
}

.proof-row span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

section {
  scroll-margin-top: 94px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding: 92px 0 20px;
}

.section-heading {
  max-width: 780px;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.section-heading p,
.text-stack p {
  color: var(--muted);
  font-size: 18px;
}

.text-stack {
  max-width: 720px;
}

.text-stack p:last-child,
.section-heading p:last-child,
.card p:last-child,
.step-card p:last-child,
.price-card p:last-child,
.contact-copy p:last-child,
.site-footer p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.step-card,
.price-card,
.contact-form,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.card {
  min-height: 210px;
  padding: 26px;
}

.card p,
.step-card p,
.price-card p,
.faq-list p {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.step-card {
  padding: 24px;
  background: var(--surface-soft);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.feature-band {
  margin: 72px 0 0;
  background: var(--accent);
  color: #fff;
}

.band-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
  padding: 86px 0;
}

.feature-band h2 {
  color: #fff;
}

.feature-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.check-list div {
  position: relative;
  padding: 17px 18px 17px 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.check-list div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 14px;
  height: 8px;
  border-left: 3px solid #e7c987;
  border-bottom: 3px solid #e7c987;
  transform: rotate(-45deg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--surface-soft), var(--blue));
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(31, 59, 45, 0.36);
  box-shadow: var(--shadow);
}

.plan-label {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-top: 22px;
  color: var(--accent);
  font-family: var(--font);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

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

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

summary::marker {
  color: var(--gold);
}

details p {
  margin: 12px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
  padding: 92px 0;
}

.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(167, 131, 66, 0.45);
  outline-offset: 3px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink);
  font-weight: 750;
}

.copyright {
  margin-top: 18px;
}

.simple-page {
  padding: 72px 0 96px;
}

.simple-page article {
  max-width: 820px;
}

.simple-page p,
.simple-page li {
  color: var(--muted);
  font-size: 17px;
}

.simple-page ul {
  padding-left: 22px;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .band-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

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

@media (max-width: 760px) {
  .nav,
  .section-shell,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    position: fixed;
    inset: 68px 14px auto 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .nav-menu a {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .lead {
    font-size: 18px;
  }

  .hero {
    gap: 32px;
    padding-bottom: 34px;
  }

  .actions {
    align-items: stretch;
  }

  .actions .button {
    width: 100%;
  }

  .proof-row,
  .card-grid.three,
  .timeline,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .contact-section {
    padding-top: 70px;
  }

  .feature-band {
    margin-top: 54px;
  }

  .band-grid {
    padding: 68px 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
