:root {
  --bg: #f2ede4;
  --bg-soft: #f7f2ea;
  --bg-deep: #ddd2bf;
  --ink: #1a1613;
  --muted: #65584c;
  --brand: #8b3d1f;
  --brand-2: #c46b31;
  --line: #cebca3;
  --card: rgba(255, 252, 246, 0.8);
  --card-strong: #fff8f0;
  --shadow: 0 22px 48px rgba(38, 20, 10, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% -6%, #fff6e8 0%, transparent 34%),
    radial-gradient(circle at 96% 22%, #f6dfc5 0%, transparent 39%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 48%, var(--bg-deep) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 4px 4px;
  z-index: -3;
}

.ambient-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(28px);
  pointer-events: none;
  z-index: -2;
  opacity: 0.65;
}

.ambient-shape-a {
  width: 360px;
  height: 360px;
  background: rgba(196, 107, 49, 0.24);
  top: 9vh;
  right: -120px;
}

.ambient-shape-b {
  width: 420px;
  height: 420px;
  background: rgba(139, 61, 31, 0.16);
  left: -170px;
  bottom: 5vh;
}

h1,
h2,
h3 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 5vw;
  border-bottom: 1px solid rgba(139, 61, 31, 0.22);
  background: rgba(248, 240, 228, 0.88);
  backdrop-filter: blur(8px);
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--ink);
}

.topbar nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  opacity: 0.86;
}

.topbar nav a:hover {
  opacity: 1;
}

.section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 4.2rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.3rem;
  align-items: center;
  min-height: calc(100vh - 70px);
  padding-top: 2rem;
}

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  margin-bottom: 1rem;
  max-width: 13ch;
}

.subcopy {
  max-width: 58ch;
  color: var(--muted);
}

.hero-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.hero-points li {
  color: #3e3126;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  vertical-align: middle;
}

.hero-cta-group {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fffaf4;
  box-shadow: 0 12px 24px rgba(112, 57, 20, 0.28);
}

.btn-ghost {
  background: rgba(255, 250, 244, 0.7);
  color: #6f351a;
  border-color: rgba(112, 57, 20, 0.28);
}

.hero-metrics {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-metrics div {
  border: 1px solid var(--line);
  background: rgba(255, 249, 240, 0.72);
  border-radius: 12px;
  padding: 0.65rem 0.72rem;
}

.hero-metrics strong {
  display: block;
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1;
}

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

.fine-print {
  margin-top: 1rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.hero-carousel {
  height: clamp(320px, 52vw, 560px);
  border-radius: 24px;
  border: 1px solid rgba(116, 77, 50, 0.24);
  background: #2f1a10;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 242, 227, 0.6);
  background: rgba(36, 21, 12, 0.42);
  color: #fff3e6;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.carousel-nav:hover {
  background: rgba(36, 21, 12, 0.62);
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 238, 217, 0.45);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: #fff7ee;
}

.floating-card {
  position: absolute;
  right: -18px;
  bottom: 22px;
  background: #fff8ef;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.8rem 1rem;
  font-weight: 700;
  color: #6f4126;
}

.section-head {
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.7rem);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  backdrop-filter: blur(5px);
}

.diagram-box {
  margin-top: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 250, 242, 0.96), rgba(243, 231, 213, 0.85));
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.diagram-col {
  border: 1px solid rgba(139, 61, 31, 0.16);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(255, 253, 250, 0.82);
}

.diagram-col h4 {
  margin: 0 0 0.35rem;
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: 1.03rem;
}

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

.step {
  background: var(--card-strong);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: rgba(196, 107, 49, 0.14);
}

.step span {
  display: inline-block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.scene-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(254, 248, 239, 0.94), rgba(239, 222, 197, 0.72));
  padding: 1rem;
  min-height: 170px;
}

.scene-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.28rem;
}

.quote-strip {
  border-left: 4px solid var(--brand);
  background: rgba(255, 250, 240, 0.72);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: #51382a;
  font-weight: 600;
}

.spec-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.spec-wrap ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  padding: 0.75rem 0.9rem;
}

details summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.join {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-note {
  margin-top: 0.9rem;
  color: var(--muted);
}

.contact-note a {
  color: var(--brand);
  font-weight: 700;
  text-decoration-thickness: 1px;
}

.lead-form {
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.lead-form label {
  font-weight: 700;
  font-size: 0.94rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid #cab59b;
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: #fffdf8;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid rgba(196, 107, 49, 0.36);
  outline-offset: 1px;
}

.checkbox-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
}

.checkbox-wrap input {
  margin-top: 0.3rem;
  width: 18px;
  height: 18px;
  min-height: unset;
}

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

.form-message {
  min-height: 1.5em;
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(112, 57, 20, 0.25);
  padding: 1rem 5vw 2rem;
  color: #5f554d;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer a {
  color: #6f4126;
  text-decoration: none;
  font-weight: 700;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .hero,
  .join {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .scene-grid,
  .timeline,
  .diagram-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1.2rem;
  }

  .hero-carousel {
    height: clamp(260px, 76vw, 420px);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    margin-top: 0.6rem;
    display: inline-block;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .section {
    animation: rise-in 0.6s ease both;
    animation-timeline: view();
    animation-range: entry 10% cover 22%;
  }

}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

