:root {
  --bg: #fbf8f4;
  --bg-soft: #f4eee7;
  --text: #1e1d1b;
  --muted: #6e6760;
  --card: #ffffff;
  --accent: #1f1f1f;
  --accent-2: #b5835a;
  --border: rgba(30, 29, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #fffdf9, var(--bg) 60%);
  color: var(--text);
  line-height: 1.55;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255, 252, 248, 0.88);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
}

.nav-links a,
.footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--text);
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.hero-side {
  display: grid;
  gap: 0.9rem;
}

.hero-model {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f2ebe3;
  box-shadow: 0 16px 35px rgba(40, 31, 21, 0.12);
}

.hero-model img {
  width: 100%;
  height: 440px;
  display: block;
  object-fit: cover;
}

.hero-model figcaption {
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #272320, #5f4834);
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.lead {
  max-width: 60ch;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(110deg, #2a2826, #4a433c);
  transition: transform 0.15s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-small {
  padding: 0.7rem 1rem;
}

.btn-ghost {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
}

.full {
  width: 100%;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-metrics {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-metrics div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem;
}

.hero-metrics strong {
  display: block;
  font-size: 1.1rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 4.2rem 0;
}

.muted {
  background: linear-gradient(180deg, #f9f4ee, #f5ede5);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 10px 28px rgba(42, 31, 14, 0.08);
}

label {
  margin-top: 0.7rem;
  display: block;
  font-weight: 600;
}

select,
input {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  margin-top: 0.35rem;
  margin-bottom: 0.2rem;
}

.result {
  color: #1f7a4a;
  min-height: 1.4em;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.25rem;
}

.ticks {
  padding-left: 1.2rem;
}

.ticks li {
  margin-bottom: 0.42rem;
}

.features,
.products,
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.link-more {
  color: #5d3f2b;
  text-decoration: none;
  font-weight: 700;
}

.product-image {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  margin-bottom: 0.75rem;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.image-2 {
  object-position: center 30%;
}

.image-3 {
  object-position: center 42%;
}

.image-4 {
  object-position: center 55%;
}

.image-5 {
  object-position: center 70%;
}

.image-6 {
  object-position: center 85%;
}

blockquote {
  margin: 0;
  color: #2e2a26;
}

cite {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-style: normal;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(120deg, #f8f2ea, #f2e8df);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.3rem;
}

.cta-form {
  display: flex;
  gap: 0.6rem;
  width: min(420px, 100%);
}

.centered {
  text-align: center;
  margin-top: 0.75rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.1rem 0 1.5rem;
  background: #fffaf5;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.93rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .features,
  .products,
  .reviews,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    padding-top: 4rem;
  }

  .cta-form {
    flex-direction: column;
  }
}
