* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1a16;
  --muted: #5d534c;
  --cream: #f7f2ea;
  --sand: #efe6d6;
  --ember: #d77a2f;
  --forest: #2f4a37;
  --charcoal: #3b3330;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(23, 16, 11, 0.12);
}

body {
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 10px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.top-nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.top-nav a:hover {
  color: var(--ember);
}

.hero {
  min-height: 82vh;
  background: linear-gradient(120deg, rgba(31, 26, 22, 0.72), rgba(31, 26, 22, 0.2)),
    url("hero-grill.svg") center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 12vh 6vw 10vh;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--ember);
  color: var(--white);
}

.btn-primary:hover {
  background: #c36822;
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section--split {
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.section--split.reverse {
  flex-direction: row-reverse;
}

.section--dense {
  background: var(--sand);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--texture {
  background: linear-gradient(120deg, rgba(31, 26, 22, 0.92), rgba(31, 26, 22, 0.65)),
    url("coal-texture.svg") center/cover no-repeat;
}

.section--highlight {
  background: linear-gradient(120deg, rgba(215, 122, 47, 0.15), rgba(255, 255, 255, 0));
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.section p {
  color: var(--muted);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 210px;
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
}

.card strong {
  font-size: 1.05rem;
}

.inline-cta {
  color: var(--ember);
  font-weight: 600;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.trust-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.badge {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(215, 122, 47, 0.15);
  color: var(--ember);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-style: italic;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 16px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.pricing-item span {
  font-weight: 700;
  color: var(--forest);
}

.steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 200px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
  border-left: 4px solid var(--ember);
  border-radius: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9cec1;
  background: var(--white);
  font-size: 1rem;
}

.form-panel {
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-hint {
  font-size: 0.9rem;
  color: var(--muted);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 50px 6vw;
  background: var(--forest);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--ember);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 6;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--ember);
  background: transparent;
  color: var(--ember);
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--ember);
  color: var(--white);
}

.page-title {
  padding: 80px 6vw 40px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content {
  padding: 50px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-block {
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .section--split,
  .section--split.reverse {
    flex-direction: column;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
