* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1c17;
  --muted: #5d564b;
  --accent: #b84e24;
  --accent-dark: #8f3c1b;
  --cream: #f6f1e8;
  --sand: #efe5d6;
  --smoke: #2f2a24;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
}

.hero {
  padding: 40px 6vw 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--sand);
}

.hero-visual {
  min-height: 240px;
  background: url("../images/hero-grill.svg") center/cover no-repeat;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

.btn.secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--white);
}

.section.dark {
  background: var(--smoke);
  color: var(--white);
}

.section-title {
  font-size: clamp(24px, 3.2vw, 36px);
  margin: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--sand);
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.card img {
  border-radius: 12px;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: underline;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d6cbbb;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.error {
  color: #a32020;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

footer {
  padding: 40px 6vw 60px;
  background: var(--smoke);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.accept {
  background: var(--accent);
  color: var(--white);
}

.page-hero {
  padding: 32px 6vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--white);
  border-radius: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  padding: 24px;
  border-radius: 14px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    flex: 1;
  }

  .hero-content {
    max-width: 480px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card,
  .price-item {
    flex: 1;
  }

  .pricing-table {
    flex-direction: row;
  }

  .form-wrapper {
    flex-direction: row;
  }

  .form-wrapper .form-group {
    flex: 1;
  }
}
