:root {
  --pine: #1f3a2e;
  --sand: #efe6d8;
  --card: #faf7f1;
  --brass: #b98a3d;
  --clay: #a85c42;
  --ink: #2b2620;

  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  color: var(--pine);
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pine);
  color: var(--sand);
  padding: 0.75rem 1.25rem;
  z-index: 100;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--pine);
  color: var(--sand);
}

.btn-primary:hover {
  background: #16291f;
}

.btn-outline {
  background: transparent;
  border-color: var(--pine);
  color: var(--pine);
}

.btn-outline:hover {
  background: var(--pine);
  color: var(--sand);
}

.btn-text {
  background: transparent;
  color: var(--pine);
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 4px;
}

.btn-light {
  background: var(--sand);
  color: var(--clay);
}

.btn-light:hover {
  background: var(--card);
}

.btn-small {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 230, 216, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(31, 58, 46, 0.1);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--pine);
}

/* ---------- Hero ---------- */

.hero {
  padding: 5rem 1.5rem 4.5rem;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.hero-note {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.6;
}

/* ---------- Stats ---------- */

.stats {
  background: var(--pine);
  color: var(--sand);
  padding: 3rem 1.5rem;
}

.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--brass);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.92rem;
  opacity: 0.85;
}

/* ---------- Pricing ---------- */

.pricing {
  padding: 5.5rem 1.5rem;
}

.pricing-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.section-heading p {
  opacity: 0.8;
  font-size: 1.02rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  box-shadow: 0 1px 3px rgba(43, 38, 32, 0.06);
  position: relative;
}

.card-featured {
  background: var(--pine);
  color: var(--sand);
  transform: translateY(-14px);
  box-shadow: 0 20px 40px rgba(31, 58, 46, 0.25);
  border: 3px dashed rgba(239, 230, 216, 0.25);
}

.card-featured h3 {
  color: var(--sand);
}

.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--pine);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.card-head h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.card-tag {
  font-size: 0.85rem;
  opacity: 0.7;
}

.price-amount {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--brass);
}

.card-featured .price-amount {
  color: var(--brass);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.card-list li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--brass);
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  opacity: 0.65;
}

/* ---------- FAQ ---------- */

.faq {
  padding: 5rem 1.5rem;
  background: var(--card);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: var(--sand);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-body);
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--font-mono);
  color: var(--brass);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 0.9rem;
  opacity: 0.85;
  font-size: 0.95rem;
}

/* ---------- CTA Final ---------- */

.cta-final {
  background: var(--clay);
  color: var(--sand);
  padding: 5.5rem 1.5rem;
  text-align: center;
}

.cta-final-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta-final h2 {
  color: var(--sand);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  margin-bottom: 1rem;
}

.cta-final p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--pine);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.9;
}

.footer-credit {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--sand);
  opacity: 0.55;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .card-featured {
    transform: none;
    order: -1;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 3.5rem 1.25rem 3rem;
  }

  .pricing, .faq, .cta-final {
    padding: 3.5rem 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
