:root {
  --bg: #faf6ef;
  --bg-alt: #f4ede2;
  --surface: #fbf7f1;
  --surface-2: #f8f2e8;
  --text: #594838;
  --text-soft: #7b6856;
  --heading: #3f3024;
  --primary: #b98c5f;
  --primary-dark: #9c744c;
  --line: rgba(122, 97, 70, 0.10);
  --shadow: 0 18px 42px rgba(120, 94, 66, 0.07);
  --radius: 24px;
  --radius-lg: 32px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fcfaf6 0%, #f8f2e9 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 248, 242, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--heading);
  font-weight: 800;
  font-size: 1.95rem;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: #705c48;
  font-weight: 700;
  text-decoration: none;
}

.nav-cta {
  padding: 14px 24px;
  border-radius: 999px;
  background: #ead8c3;
  color: var(--primary-dark) !important;
}

.hero {
  padding: 18px 0 22px;
}

.hero-shell {
  width: min(100%, 1320px);
}

.hero-media {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 0;
  background: #efe7db;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.12) saturate(0.88) contrast(0.97);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(250, 245, 238, 0.82) 0%,
      rgba(250, 245, 238, 0.66) 26%,
      rgba(250, 245, 238, 0.22) 54%,
      rgba(250, 245, 238, 0.02) 78%,
      rgba(250, 245, 238, 0) 100%
    );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 0 0 48px;
}

.hero-copy {
  max-width: 500px;
  padding: 28px 30px;
  border-radius: 26px;
  background: rgba(251, 247, 241, 0.78);
  border: 1px solid rgba(132, 103, 73, 0.08);
  box-shadow: 0 14px 34px rgba(117, 92, 66, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a7d5c;
}

h1,
h2,
h3,
.brand span {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--heading);
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #c89c6e 0%, #b88758 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(177, 130, 78, 0.16);
}

.btn-secondary {
  background: rgba(255, 251, 245, 0.92);
  color: var(--heading);
  border: 1px solid rgba(173, 139, 103, 0.14);
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: linear-gradient(180deg, #fcf8f2 0%, #f5eee3 100%);
}

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

.section-heading.narrow {
  max-width: 700px;
}

.section-heading p,
.section p,
.contact-card p,
.footer-wrap p {
  color: var(--text-soft);
}

.section-heading h2,
.text-column h2,
.cta-box h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1.15;
}

.steps-grid,
.benefits-grid {
  display: grid;
  gap: 22px;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card,
.benefit-card,
.feature-panel,
.contact-card {
  background: rgba(255, 251, 245, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.step-card,
.benefit-card {
  border-radius: var(--radius);
  padding: 26px;
}

.step-card h3,
.benefit-card h3,
.feature-panel h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.step-card p,
.benefit-card p,
.feature-panel p {
  margin: 0;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #efe1cf;
  color: #916f4a;
  font-weight: 800;
  font-size: 0.95rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
}

.balanced {
  align-items: center;
}

.text-column {
  max-width: 760px;
}

.feature-panel {
  border-radius: var(--radius-lg);
  padding: 28px 30px;
}

.feature-panel article + article {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(126, 99, 71, 0.09);
}

.cta-section {
  padding-top: 66px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, #fbf5eb 0%, #f3e7d8 100%);
  border: 1px solid rgba(164, 128, 90, 0.10);
  box-shadow: 0 16px 36px rgba(132, 101, 69, 0.06);
}

.contact-card {
  border-radius: 24px;
  padding: 24px;
}

.contact-card a {
  color: var(--primary-dark);
}

.btn-full {
  width: 100%;
  margin-top: 10px;
}

.site-footer {
  padding: 30px 0 42px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-soft);
}

@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .two-col,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-media {
    height: 520px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    gap: 18px;
  }

  .brand {
    font-size: 1.6rem;
  }

  .hero-media {
    height: 560px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(250, 245, 238, 0.18) 0%,
        rgba(250, 245, 238, 0.10) 24%,
        rgba(250, 245, 238, 0.84) 100%
      );
  }

  .hero-content {
    align-items: flex-end;
    padding: 20px;
  }

  .hero-copy {
    max-width: 100%;
    padding: 22px 20px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-nav {
    display: none;
  }

  .hero-media {
    height: 580px;
  }

  .section {
    padding: 64px 0;
  }

  .steps-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .feature-panel,
  .contact-card {
    padding: 22px;
  }

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