:root {
  --bg: #f8f6f0;
  --surface: #fffdf8;
  --surface-2: #fff3dd;
  --text: #1d1b18;
  --muted: #615f58;
  --line: #ded4c4;
  --accent: #d87400;
  --accent-dark: #aa5300;
  --accent-soft: #ffe1b8;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 20px 50px rgba(180, 90, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 8%, #ffd58b 0, transparent 30%),
    radial-gradient(circle at 88% 18%, #ffc9a5 0, transparent 25%),
    linear-gradient(170deg, #f7f3ea 0%, #f8f6f0 50%, #fff8ec 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--surface) 85%, transparent);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  font-family: "Unbounded", sans-serif;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
}

.brand-text {
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 1.1rem;
}

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

.nav a {
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover,
.site-footer a:hover {
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

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

.btn-small {
  padding: 0.6rem 1rem;
  font-size: 0.92rem;
}

.btn-ghost {
  color: var(--accent-dark);
  background: var(--accent-soft);
  box-shadow: none;
}

.hero {
  padding: 4.8rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.2rem;
}

.hero-content,
.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-content {
  padding: clamp(1.3rem, 2vw, 2rem);
}

.hero-panel {
  padding: 1.45rem;
  align-self: start;
  background:
    linear-gradient(180deg, #fffaf1 0%, #fff1dc 100%);
}

.hero-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #edc895;
  box-shadow: 0 14px 30px rgba(170, 83, 0, 0.18);
  margin: -0.25rem 0 0.95rem;
}

.eyebrow {
  margin: 0;
  color: var(--accent-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Unbounded", sans-serif;
  line-height: 1.2;
  margin: 0;
}

h1 {
  margin-top: 0.75rem;
  font-size: clamp(1.85rem, 4.4vw, 3rem);
}

.hero-lead {
  max-width: 56ch;
  color: var(--muted);
}

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

.hero-facts {
  margin: 1.3rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.hero-facts li + li {
  margin-top: 0.35rem;
}

.panel-title {
  margin: 0;
  font-weight: 700;
}

.hero-panel ul {
  margin: 0.85rem 0;
  padding-left: 1.05rem;
}

.panel-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 2.25rem 0;
}

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

.section-head h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.35rem, 3.3vw, 2rem);
}

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

.card {
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.card h3 {
  font-size: 1rem;
}

.card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.process .timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.timeline li {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: #fff7e8;
  border: 1px solid #efcf9f;
}

.timeline h3 {
  font-size: 0.96rem;
}

.timeline p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.guarantee-wrap {
  background: linear-gradient(145deg, #fff9ef, #fff5e4);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2vw, 1.8rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.guarantee-wrap h2 {
  margin-top: 0.5rem;
}

.guarantee-wrap p {
  color: var(--muted);
}

.guarantee-points {
  display: grid;
  gap: 0.6rem;
}

.guarantee-points p {
  margin: 0;
  padding: 0.8rem 0.9rem;
  background: var(--surface);
  border-radius: 0.8rem;
  border: 1px solid var(--line);
  color: var(--text);
}

.quote-block blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2.9vw, 1.8rem);
  max-width: 42ch;
}

.quote-block cite {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--muted);
}

.cta-box {
  padding: clamp(1.2rem, 2vw, 2rem);
  background: linear-gradient(145deg, #ffe5b5, #ffd193);
  border: 1px solid #efbf73;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cta-box h2 {
  margin: 0.45rem 0;
}

.cta-box p {
  margin: 0;
  max-width: 56ch;
}

.site-footer {
  margin-top: 1.7rem;
  border-top: 1px solid var(--line);
  background: color-mix(in oklab, var(--surface) 65%, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  padding: 2.1rem 0 1rem;
}

.footer-grid h2,
.footer-grid h3 {
  margin-bottom: 0.6rem;
}

.footer-grid p {
  margin-top: 0;
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
}

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

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 980px) {
  .hero-grid,
  .guarantee-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .hero-panel img {
    aspect-ratio: 16 / 10;
  }

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

  .site-header .btn-small {
    display: none;
  }

  .hero {
    padding-top: 3.1rem;
  }
}
