:root {
  --bg: #f7f2e9;
  --bg-soft: #efe5d6;
  --ink: #17232b;
  --muted: #58646b;
  --line: #d9cbbb;
  --accent: #9b4f2f;
  --accent-dark: #73351e;
  --nav: #111c24;
  --card: #fffaf1;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 35, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(17, 28, 36, 0.97);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(17, 28, 36, 0.18);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.8rem;
  font-size: 0.95rem;
}

.site-nav a,
.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding: 0.15rem 0;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  border-color: var(--accent);
}

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

.narrow {
  max-width: 780px;
}

.hero,
.page-hero {
  background: linear-gradient(135deg, #14212a 0%, #26343a 58%, #513426 100%);
  color: var(--white);
}

.hero {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.compact-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.page-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

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

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  max-width: 850px;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 7vw, 4.75rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

.lead {
  max-width: 680px;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: #bd7650;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow {
  color: #e3aa82;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0.72rem 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

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

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

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

.button.secondary:hover,
.button.secondary:focus {
  background: rgba(255, 255, 255, 0.12);
}

.button.light {
  background: var(--white);
  color: var(--nav);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-panel span {
  min-height: 56px;
  display: flex;
  align-items: center;
  border-left: 4px solid #bd7650;
  border-radius: 6px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.muted {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

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

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

.feature-card,
.product-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  background: var(--card);
  box-shadow: 0 8px 22px rgba(23, 35, 43, 0.06);
}

.highlighted-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.active-product,
.featured {
  border-top: 5px solid var(--accent);
}

.status {
  display: inline-block;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  background: #ead3c3;
  color: #5f2b19;
  font-size: 0.8rem;
  font-weight: 800;
}

.status.future {
  background: #e6e0d5;
  color: #4a5358;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.8rem 0.9rem;
  background: var(--card);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center;
}

.cta-band {
  background: var(--nav);
  color: var(--white);
}

.price {
  margin-bottom: 0.5rem;
  color: var(--accent-dark);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.price.small {
  font-size: 2.3rem;
}

.note {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: 1rem 1.1rem;
}

summary {
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0.75rem 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.2rem, 4vw, 1.75rem);
  background: var(--card);
}

label {
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #b8aa9b;
  border-radius: 6px;
  padding: 0.75rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus,
.button:focus,
a:focus {
  outline: 3px solid rgba(155, 79, 47, 0.35);
  outline-offset: 3px;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem 0;
  background: var(--nav);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  color: #d6d1c9;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.site-footer a {
  color: #f2d6c4;
}

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

  .site-nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .split,
  .contact-layout,
  .card-grid,
  .card-grid.two,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .highlighted-card,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .hero-panel {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
