:root {
  --bg: #f3efe7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffdf8;
  --text: #1f1c17;
  --muted: #6d655b;
  --line: rgba(56, 46, 32, 0.12);
  --brand: #a67c52;
  --brand-deep: #75512f;
  --dark: #16130f;
  --shadow: 0 20px 60px rgba(20, 15, 10, 0.12);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(166, 124, 82, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f5ef 0%, var(--bg) 100%);
  color: var(--text);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(243, 239, 231, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--dark);
  color: white !important;
}

.hero,
.page-hero {
  padding: 88px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: stretch;
}

.eyebrow,
.section-label,
.card-kicker {
  margin: 0 0 14px;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  max-width: 10ch;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

h3 {
  font-size: 24px;
  line-height: 1.1;
}

.hero-text,
.section-copy p,
.card p,
.section-intro,
.product-highlight p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--dark);
  color: white;
  box-shadow: var(--shadow);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.stats li,
.hero-panel,
.card,
.product-highlight,
.cta-panel,
.order-form {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats li {
  padding: 18px;
}

.stats strong {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}

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

.hero-card {
  display: flex;
}

.hero-panel {
  width: 100%;
  max-width: 520px;
  padding: 34px;
  height: fit-content;
  align-self: flex-start;
  background:
    linear-gradient(180deg, rgba(22, 19, 15, 0.88), rgba(22, 19, 15, 0.96)),
    linear-gradient(135deg, rgba(166, 124, 82, 0.3), transparent);
  color: white;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 16px;
}

.hero-panel h2 {
  font-size: clamp(28px, 3vw, 42px);
  max-width: 12ch;
}

.hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding: 42px 0 52px;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.section-heading {
  margin-bottom: 28px;
}

.accent-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.48));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards {
  display: grid;
  gap: 20px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.product-highlight {
  padding: 28px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(166, 124, 82, 0.12);
  color: var(--brand-deep);
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
}

.compact-hero {
  padding-bottom: 12px;
}

.order-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.order-form {
  padding: 28px;
}

.order-form label {
  display: block;
  margin-bottom: 18px;
}

.order-form span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
}

.order-form input:focus,
.order-form textarea:focus {
  outline: 2px solid rgba(166, 124, 82, 0.2);
  border-color: rgba(166, 124, 82, 0.5);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand-deep);
  font-weight: 800;
}

.map-placeholder {
  margin-top: 18px;
  min-height: 180px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(166, 124, 82, 0.18), rgba(22, 19, 15, 0.12)),
    #e7ddd0;
  color: var(--brand-deep);
  font-weight: 800;
}

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

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-grid,
  .section-grid,
  .order-grid,
  .three-up,
  .two-up,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .footer-row,
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

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

  .hero,
  .page-hero {
    padding-top: 56px;
  }

  .card,
  .product-highlight,
  .order-form,
  .hero-panel,
  .cta-panel {
    padding: 22px;
  }

  .nav-links {
    gap: 14px;
  }
}
