/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f1b17;
  background: #fbf8f4;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.page-header {
  padding: 24px 0 12px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #c17b4a;
}

.hero {
  padding: 48px 0 36px;
}

.hero-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: #f4e7db;
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(53, 37, 23, 0.08);
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  background: url("texture.svg") center/cover no-repeat;
  opacity: 0.35;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 8px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 560px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  background: #c86b3b;
  color: #fff;
  box-shadow: 0 12px 20px rgba(200, 107, 59, 0.25);
}

.primary-button:hover {
  transform: translateY(-2px);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.spaced-top {
  margin-top: 16px;
}

.ghost-button {
  border: 1px solid #c86b3b;
  color: #c86b3b;
}

.section {
  padding: 40px 0;
}

.section-alt {
  background: #fff;
}

.section-offset {
  background: #f9efe6;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 16px 28px rgba(40, 26, 14, 0.1);
}

.card img {
  border-radius: 16px;
  margin-bottom: 12px;
}

.callout {
  padding: 24px;
  border-radius: 24px;
  background: #1f1b17;
  color: #f7efe7;
}

.callout a {
  color: #f7efe7;
  text-decoration: underline;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border-left: 4px solid #c86b3b;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.inline-link {
  text-decoration: underline;
  color: #b65b2f;
}

.testimonial {
  padding: 16px;
  border-radius: 16px;
  background: #fff6ee;
  font-style: italic;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 1rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7c6b8;
  background: #fff;
}

button {
  border: none;
  cursor: pointer;
}

.footer {
  padding: 32px 0 60px;
  background: #1f1b17;
  color: #f7efe7;
}

.footer a {
  color: #f7efe7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f1b17;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  width: min(340px, 88%);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
}

.cookie-accept {
  background: #c86b3b;
  color: #fff;
}

.cookie-reject {
  background: #efe3d8;
  color: #6d3f22;
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 14%;
  width: 120px;
  height: 120px;
  background: url("pattern.svg") center/cover no-repeat;
  opacity: 0.25;
}

.list-slim {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.media-offset {
  transform: translateX(10px);
}

.note {
  font-size: 0.95rem;
  color: #5d4a3c;
}

@media (min-width: 768px) {
  .hero-shell {
    flex-direction: row;
    align-items: center;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-list {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    gap: 24px;
  }

  .contact-grid {
    flex-direction: row;
  }
}
