:root {
  --cream: #fff8ec;
  --flour: #fffdf8;
  --brown: #3b2414;
  --caramel: #b86b2b;
  --gold: #f2b544;
  --muted: #715b4b;
  --dark: #1d120c;
  --card: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 70px rgba(45, 25, 12, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(255, 248, 236, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59, 36, 20, 0.08);
}

.logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo span {
  color: var(--caramel);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-cta {
  padding: 10px 16px;
  background: var(--brown);
  color: white;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--brown);
  color: white;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1.1rem;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 80px 6vw 60px;
  background:
    radial-gradient(circle at top left, rgba(242, 181, 68, 0.38), transparent 32%),
    linear-gradient(135deg, #fff8ec 0%, #f7dfbf 100%);
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--caramel);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 900;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-text,
.section-heading p,
.split-content p,
.about-grid p,
.contact-card p,
.card p,
.testimonial p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.primary {
  background: var(--brown);
  color: white;
  box-shadow: 0 14px 35px rgba(59, 36, 20, 0.22);
}

.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown);
  border: 1px solid rgba(59, 36, 20, 0.16);
}

.hero-image img,
.split-image img {
  height: 620px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(59, 36, 20, 0.1);
  padding: 1px 6vw;
}

.trust-strip div {
  background: var(--flour);
  padding: 32px 20px;
  text-align: center;
}

.trust-strip strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: 100px 6vw;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.product-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card,
.testimonial,
.contact-card {
  background: var(--card);
  border: 1px solid rgba(59, 36, 20, 0.08);
  box-shadow: var(--shadow);
}

.card {
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  height: 280px;
  object-fit: cover;
}

.card-body {
  padding: 26px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 54px;
  align-items: center;
  padding: 100px 6vw;
  background: var(--dark);
  color: white;
}

.split-content p,
.split-content li {
  color: rgba(255, 255, 255, 0.74);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold);
  font-weight: 900;
}

.warm {
  background:
    radial-gradient(circle at top right, rgba(184, 107, 43, 0.22), transparent 28%),
    #f3dfc2;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  align-items: start;
}

.testimonial {
  border-radius: 26px;
  padding: 30px;
}

.testimonial p {
  font-size: 1.15rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 900;
}

.contact-section {
  padding: 100px 6vw;
  background:
    linear-gradient(rgba(29, 18, 12, 0.72), rgba(29, 18, 12, 0.72)),
    url("https://images.unsplash.com/photo-1517433367423-c7e5b0f35086?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.contact-card {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(59, 36, 20, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: white;
  color: var(--brown);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.9rem !important;
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 6vw;
  background: var(--dark);
  color: white;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-weight: 800;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 6vw;
    right: 6vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--flour);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero,
  .split-section,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-image img,
  .split-image img {
    height: 420px;
  }

  .trust-strip,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .split-section,
  .contact-section,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .hero-image img,
  .split-image img {
    height: 320px;
    border-radius: 24px;
  }

  .trust-strip,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .split-section,
  .contact-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}
