* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1d1b;
  --muted: #6f6963;
  --accent: #b7602e;
  --accent-dark: #8e471f;
  --cream: #f6f0e8;
  --sand: #efe3d5;
  --leaf: #3e4c3a;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(31, 29, 27, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 7%;
  background: transparent;
}

.nav-brand {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 70vh;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #1b1714;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(23, 18, 15, 0.75), rgba(23, 18, 15, 0.25)),
    url("https://images.unsplash.com/photo-1506368083636-6defb67639f6?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 48px 7% 60px;
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.1;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.section {
  padding: 64px 7%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-alt {
  background: var(--cream);
}

.section-sand {
  background: var(--sand);
}

.section-dark {
  background: #1f1d1b;
  color: var(--white);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row > div {
  flex: 1;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(183, 96, 46, 0.15);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.cta-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-dark);
}

.form-wrap {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd2c4;
  font-size: 15px;
}

.form button {
  border: none;
  cursor: pointer;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: rgba(183, 96, 46, 0.08);
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-strip img {
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
}

.footer {
  padding: 40px 7% 60px;
  background: #14120f;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1d1b;
  color: var(--white);
  padding: 18px 7%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.page-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
}

.meta-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 860px) {
  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
  }

  .card-row .card {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-card {
    flex: 1 1 calc(50% - 18px);
  }

  .image-strip {
    flex-direction: row;
  }

  .image-strip img {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}
