:root {
  --ink: #17201f;
  --cream: #f6f2e9;
  --gold: #d6a449;
  --sage: #7f8e80;
  --white: #fffdf8;
  --muted: #5a625d;
  --line: rgba(23, 32, 31, 0.16);
  --shadow: 0 18px 48px rgba(23, 32, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

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

body,
button,
input,
textarea,
select {
  font-size: 16px;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--cream);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(246, 242, 233, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand img {
  width: 220px;
  max-width: 56vw;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

main {
  overflow: hidden;
}

.section {
  padding: 5rem 0;
}

.section.tight {
  padding: 3rem 0;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 5.5rem 0 4rem;
  background:
    linear-gradient(110deg, rgba(127, 142, 128, 0.22), transparent 42%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--sage);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Manrope, Inter, system-ui, sans-serif;
  line-height: 1.05;
  margin: 0 0 1rem;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 7vw, 5rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.price-panel {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price {
  font-family: Manrope, Inter, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.narrow {
  max-width: 820px;
}

.section-tight {
  margin-top: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

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

.faq-list summary {
  cursor: pointer;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-list details p {
  max-width: 680px;
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.band-callout {
  padding: 2rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
}

.band-callout p {
  max-width: 680px;
  color: rgba(246, 242, 233, 0.8);
}

.narrow {
  max-width: 820px;
}

.section-tight {
  margin-top: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

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

.faq-list summary {
  cursor: pointer;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-list details p {
  max-width: 680px;
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.band-callout {
  padding: 2rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
}

.band-callout p {
  max-width: 680px;
  color: rgba(246, 242, 233, 0.8);
}

.card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card.featured {
  border-color: rgba(214, 164, 73, 0.7);
}

.list {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
}

.list li {
  margin: 0.45rem 0;
}

.band {
  background: var(--ink);
  color: var(--cream);
}

.band .lead,
.band .muted {
  color: rgba(246, 242, 233, 0.74);
}

.muted {
  color: var(--muted);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 3.2rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 900;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem;
  background: var(--white);
  color: var(--ink);
}

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

.form-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.checkbox-label input {
  width: auto;
  min-height: auto;
  margin-top: 0.35rem;
}

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

.field-error {
  min-height: 1.2em;
  color: #8f1f1a;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  border-color: rgba(32, 112, 73, 0.5);
  color: #1f6b46;
}

.form-status[data-state="error"] {
  border-color: rgba(143, 31, 26, 0.5);
  color: #8f1f1a;
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer a {
  margin-right: 1rem;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero-grid,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .section,
  .hero {
    padding: 3rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
