:root {
  --bg: #f4efe6;
  --paper: rgba(255, 250, 242, 0.88);
  --ink: #16211b;
  --muted: #536057;
  --accent: #c65a22;
  --accent-2: #f0a36b;
  --line: rgba(22, 33, 27, 0.12);
  --shadow: 0 20px 60px rgba(32, 27, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(240, 163, 107, 0.35), transparent 24rem),
    linear-gradient(180deg, #f9f3eb 0%, var(--bg) 46%, #efe5d8 100%);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.hero,
.section,
.footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 1.2rem 0 3.5rem;
}

.topbar,
.hero-grid,
.split,
.footer {
  display: grid;
  gap: 1.5rem;
}

.topbar {
  align-items: center;
  grid-template-columns: 1fr auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand strong,
.contact-card h2,
.section h2,
.faq-list h3,
.reason-list h3,
.product-card h3,
.footer h2 {
  letter-spacing: -0.03em;
}

.brand span,
.contact-label,
.eyebrow,
.product-meta,
.search-box span,
#result-count {
  color: var(--muted);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--accent), #8d3510);
  color: #fff;
  font-weight: 700;
}

.nav-cta,
.button {
  border-radius: 999px;
  text-decoration: none;
}

.nav-cta {
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.hero-grid {
  margin-top: 2.2rem;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  align-items: start;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.95;
}

.hero-text,
.product-copy p,
.reason-list p,
.faq-list p,
.footer p,
.contact-card p {
  line-height: 1.65;
}

.hero-text {
  max-width: 44rem;
  margin: 1.1rem 0 0;
  font-size: 1.05rem;
}

.hero-actions,
.footer-actions,
.range-tags,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions,
.hero-points {
  margin-top: 1.4rem;
}

.button {
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0.95rem 1.4rem;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}

.hero-points {
  list-style: none;
  padding: 0;
}

.hero-points li,
.range-tags span {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(22, 33, 27, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
}

.contact-card,
.search-panel,
.product-card,
.reason-list article,
.faq-list article {
  background: var(--paper);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
}

.contact-card a {
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration-thickness: 0.12em;
}

.contact-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(198, 90, 34, 0.08);
  color: #7c3516;
}

.section {
  padding: 1.2rem 0 2.8rem;
}

.section-head {
  max-width: 46rem;
}

.compact {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section h2,
.footer h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.search-panel {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 1.6rem;
  grid-template-columns: 1fr minmax(260px, 420px);
  align-items: end;
}

.search-box {
  display: grid;
  gap: 0.55rem;
}

.search-box input {
  width: 100%;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  font: inherit;
}

.product-grid,
.reason-list,
.faq-list {
  display: grid;
  gap: 1.25rem;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-card {
  overflow: hidden;
  border-radius: 1.4rem;
}

.product-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  background: #ece3d5;
}

.product-copy {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem 1.1rem 1.25rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.product-copy h3 {
  margin: 0;
  font-size: 1.25rem;
}

.product-copy p {
  margin: 0;
}

.product-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.reason-list article,
.faq-list article {
  padding: 1.15rem 1.2rem;
  border-radius: 1.25rem;
}

.footer {
  padding: 1rem 0 3rem;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.footer-actions {
  justify-content: end;
}

@media (max-width: 860px) {
  .hero-grid,
  .split,
  .search-panel,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer-actions {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .hero,
  .section,
  .footer {
    width: min(100% - 1.2rem, 1180px);
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }
}
