* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #2b2b2b;
  background: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6vw 10px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  background: #efe7e1;
}

.ad-label {
  font-size: 0.85rem;
  background: #2b2b2b;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 6vw 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 650px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid #2b2b2b;
  background: #2b2b2b;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}

.btn.secondary {
  background: transparent;
  color: #2b2b2b;
}

.hero-media {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.media {
  background: #e1d6cf;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .media {
  flex: 1;
  min-width: 260px;
  height: 320px;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .media {
  flex: 1;
  min-width: 260px;
  height: 280px;
}

.highlight {
  background: #ede4dc;
  border-left: 4px solid #2b2b2b;
  padding: 16px 18px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 18px;
}

.card .media {
  height: 180px;
}

.card .card-body {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bg-kiln {
  background-image: url("https://images.unsplash.com/photo-1481401908818-600b7a676c0d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-kiln::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.bg-kiln .section-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.testimonials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.quote {
  flex: 1;
  min-width: 240px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd1c8;
  padding-bottom: 10px;
}

.cta-block {
  background: #2b2b2b;
  color: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrapper {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cdbeb1;
  font-size: 1rem;
}

.form-status {
  font-size: 0.9rem;
  color: #5a4a3c;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #d97738;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #efe7e1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.page-hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero .media {
  flex: 1;
  min-width: 260px;
  height: 240px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}

@media (max-width: 760px) {
  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
