* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #fbf7f2;
  --ink: #221a14;
  --accent: #d0472c;
  --accent-dark: #b53a22;
  --soft: #f3e7da;
  --deep: #1f140f;
  --muted: #6f5e52;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.hero {
  padding: 70px 0 90px;
  background: linear-gradient(120deg, rgba(34, 26, 20, 0.7), rgba(34, 26, 20, 0.2)),
    url("https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?auto=format&fit=crop&w=1400&q=80")
      center/cover;
  color: #fff;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
}

.hero p {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  gap: 8px;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: var(--deep);
  color: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split > div {
  flex: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(208, 71, 44, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.05);
}

.quote {
  font-size: 1.4rem;
  font-weight: 600;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillar {
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 14px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e1d5c8;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 8;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
  font-weight: 600;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  background: #1a120e;
  color: #f6ede3;
  padding: 50px 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 14px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #f1e3d6;
  color: var(--ink);
}

.page-hero {
  padding: 60px 0;
  background: var(--soft);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 3vw, 3rem);
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .story-grid,
  .cards,
  .pillars {
    flex-direction: row;
  }

  .story-card,
  .card,
  .pillar {
    flex: 1;
  }

  .footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .form-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-wrap > div {
    flex: 1;
  }
}
