:root {
  --ink: #17211f;
  --muted: #61706b;
  --cream: #fbf6ec;
  --sand: #efe3cf;
  --clay: #c46e4c;
  --clay-dark: #9b4f34;
  --sage: #49665d;
  --white: #ffffff;
  --line: rgba(23, 33, 31, 0.12);
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 236, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.18rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(23, 33, 31, 0.18);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: var(--ink);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--sage);
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(73, 102, 93, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 66px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(196, 110, 76, 0.18), transparent 32%), radial-gradient(circle at 75% 20%, rgba(73, 102, 93, 0.2), transparent 30%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 62px;
}

.eyebrow {
  color: var(--clay-dark);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-text {
  margin-top: 22px;
  max-width: 630px;
  color: var(--muted);
  font-size: 1.15rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 16px 36px rgba(196, 110, 76, 0.3);
}

.btn-primary:hover {
  background: var(--clay-dark);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.hero-stats div {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.hero-stats strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--white), #f4eadb);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(73, 102, 93, 0.16);
  top: -80px;
  right: -80px;
}

.box-visual {
  position: relative;
  z-index: 1;
  width: min(330px, 78%);
  transform: rotate(-4deg);
}

.box-lid {
  background: var(--sage);
  color: var(--white);
  padding: 30px;
  border-radius: 18px 18px 8px 8px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 30px rgba(23, 33, 31, 0.18);
}

.box-body {
  min-height: 210px;
  background: #d7b88f;
  border-radius: 8px 8px 22px 22px;
  padding: 28px;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.18), 0 24px 36px rgba(23, 33, 31, 0.16);
}

.tissue {
  display: block;
  height: 70px;
  border-radius: 18px;
  background: repeating-linear-gradient(45deg, #fbf6ec, #fbf6ec 9px, #f0ddc0 9px, #f0ddc0 18px);
}

.card, .sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(23, 33, 31, 0.1);
}

.sticker {
  float: right;
  border-radius: 999px;
  color: var(--clay-dark);
}

.floating-note {
  position: absolute;
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(23, 33, 31, 0.18);
}

.note-one {
  left: 34px;
  top: 90px;
}

.note-two {
  right: 30px;
  bottom: 88px;
  background: var(--clay);
}

.trust-strip {
  padding: 20px 0;
  background: var(--ink);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.75fr repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  text-align: center;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.muted {
  background: var(--sand);
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.left {
  text-align: left;
  margin: 0;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card, .kit-card, .quote-form, .metric-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 33, 31, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(23, 33, 31, 0.06);
}

.feature-card {
  padding: 28px;
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--sand);
  color: var(--clay-dark);
  font-weight: 900;
  margin-bottom: 28px;
}

.feature-card p, .kit-card p, .kit-card li, .timeline-item p, .showcase-content p, .contact-copy p, .site-footer p {
  color: var(--muted);
}

.feature-card h3, .kit-card h3 {
  margin-bottom: 12px;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 70px;
  align-items: start;
}

.process-layout .btn {
  margin-top: 28px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(23, 33, 31, 0.09);
}

.timeline-item span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.kit-card {
  position: relative;
  padding: 34px;
}

.kit-card.featured {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.kit-card.featured p, .kit-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.kit-price {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--clay-dark) !important;
  margin: 8px 0 12px;
}

.kit-card.featured .kit-price {
  color: var(--white) !important;
}

.kit-card ul {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.kit-card li {
  position: relative;
  padding-left: 24px;
}

.kit-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 900;
}

.showcase {
  background: var(--sage);
  color: var(--white);
}

.showcase .eyebrow {
  color: #f3c7a9;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.showcase-content p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.metric-panel {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  padding: 30px;
  display: grid;
  gap: 22px;
}

.metric-panel div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.metric-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.metric-panel strong {
  font-size: 2.3rem;
  line-height: 1;
}

.metric-panel span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy p {
  margin-top: 18px;
}

.contact-info {
  margin-top: 32px;
  padding: 24px;
  border-radius: 20px;
  background: var(--sand);
}

.quote-form {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full, .full-width, .form-message {
  grid-column: 1 / -1;
}

label {
  font-weight: 800;
  font-size: 0.9rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(196, 110, 76, 0.12);
}

.form-message {
  min-height: 24px;
  color: var(--sage);
  font-weight: 800;
}

.form-message.error {
  color: var(--clay-dark);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0 26px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
}

.footer-logo .logo-mark {
  background: var(--cream);
  color: var(--ink);
}

.site-footer p {
  margin-top: 12px;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  color: rgba(255, 255, 255, 0.48);
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.site-footer .demo-disclosure {
  margin: 22px 0 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid, .process-layout, .showcase-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-card {
    min-height: 430px;
  }

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

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

  .kit-card.featured {
    transform: none;
  }

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

  .trust-grid span {
    grid-column: 1 / -1;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 86px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

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

  .nav-cta {
    text-align: center;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-stats, .cards-grid, .quote-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading, .section-heading.left {
    text-align: left;
  }

  .metric-panel div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: 2.65rem;
  }

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

  .hero-card {
    min-height: 360px;
  }

  .floating-note {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .quote-form, .kit-card, .feature-card {
    padding: 24px;
  }
}