:root {
  --wood: #7a4a22;
  --wood-dark: #4a2a12;
  --wood-light: #f4eadf;
  --leaf: #50723c;
  --ink: #1f1c18;
  --muted: #6f665d;
  --paper: #fffaf4;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(74, 42, 18, 0.13);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

img {
  max-width: 100%;
}

a {
  color: var(--wood);
}

a:hover {
  color: var(--wood-dark);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--wood-dark);
  color: var(--white);
  border-radius: 999px;
}

.skip-link:focus {
  left: 12px;
}

.navbar {
  --bs-navbar-color: var(--ink);
  --bs-navbar-hover-color: var(--wood);
}

.navbar-brand span {
  letter-spacing: -0.02em;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
}

.btn-primary {
  --bs-btn-bg: var(--wood);
  --bs-btn-border-color: var(--wood);
  --bs-btn-hover-bg: var(--wood-dark);
  --bs-btn-hover-border-color: var(--wood-dark);
  --bs-btn-active-bg: var(--wood-dark);
  --bs-btn-active-border-color: var(--wood-dark);
}

.btn-outline-primary {
  --bs-btn-color: var(--wood);
  --bs-btn-border-color: var(--wood);
  --bs-btn-hover-bg: var(--wood);
  --bs-btn-hover-border-color: var(--wood);
  --bs-btn-hover-color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 100px 0 76px;
  background:
    radial-gradient(circle at 80% 20%, rgba(122, 74, 34, 0.16), transparent 36%),
    radial-gradient(circle at 10% 80%, rgba(80, 114, 60, 0.15), transparent 34%),
    linear-gradient(135deg, #fff9f0 0%, #f7eadb 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -5% -28% -5%;
  height: 44%;
  background: rgba(122, 74, 34, 0.07);
  transform: rotate(-2deg);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero h1,
.section h2 {
  letter-spacing: -0.045em;
}

.lead,
.section-intro,
.section-heading p {
  color: var(--muted);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(122, 74, 34, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--wood-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  transform: rotate(1.5deg);
}

.hero-card img {
  border-radius: calc(var(--radius) - 8px);
}

.hero-card-note {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.hero-card-note span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 90px 0;
}

.bg-warm {
  background: #fbf1e6;
}

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

.section-heading h2,
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.audience-card,
.product-card,
.quote-card,
.steps-card,
.contact-box,
.map-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.audience-card {
  height: 100%;
  padding: 28px;
  background: var(--white);
}

.audience-card h3,
.product-card h3,
.step-item h3,
.contact-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.audience-card p,
.product-card p,
.step-item p {
  margin: 0;
  color: var(--muted);
}

.icon-circle {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--wood);
  font-weight: 900;
}

.product-card {
  height: 100%;
  overflow: hidden;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 65px rgba(74, 42, 18, 0.18);
}

.product-img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #f4e4d1;
}

.product-body {
  padding: 26px;
}

.product-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--wood-light);
  color: var(--wood-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-card-highlight {
  background: linear-gradient(135deg, var(--wood), var(--wood-dark));
  color: var(--white);
}

.product-card-highlight p {
  color: rgba(255,255,255,.78);
}

.product-card-highlight .product-tag {
  background: rgba(255,255,255,.16);
  color: var(--white);
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 650;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(80, 114, 60, .14);
  color: var(--leaf);
  font-size: 0.88rem;
  font-weight: 900;
}

.quote-card {
  position: relative;
  padding: 42px;
  background: var(--white);
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: -30px;
  left: 30px;
  color: rgba(122, 74, 34, 0.12);
  font-size: 9rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.quote-card p {
  position: relative;
  font-size: 1.35rem;
  font-weight: 750;
}

.quote-card span {
  color: var(--muted);
}

.cta-section {
  background:
    linear-gradient(135deg, rgba(74, 42, 18, .94), rgba(122, 74, 34, .94)),
    url("../img/wood-pattern.svg") center/cover;
  color: var(--white);
}

.cta-section p {
  color: rgba(255,255,255,.78);
}

.cta-section code {
  color: #ffe1bc;
}

.steps-card {
  display: grid;
  gap: 24px;
  padding: 32px;
  background: var(--white);
}

.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.step-item > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wood-light);
  color: var(--wood-dark);
  font-weight: 900;
}

.contact-box {
  padding: 28px;
  background: var(--white);
}

.map-card {
  overflow: hidden;
  min-height: 420px;
  background: var(--white);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.footer {
  background: var(--wood-dark);
  color: rgba(255,255,255,.76);
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

.cookie-panel {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 960px;
  margin-inline: auto;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 56px rgba(0,0,0,.18);
}

.cookie-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.cookie-panel.is-visible {
  display: flex;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .section {
    padding: 68px 0;
  }

  .hero-card {
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .hero-card-note {
    position: static;
    margin-top: 16px;
  }

  .cookie-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-img {
    height: 200px;
  }
}
