* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #1f1c19;
  background: #f8f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #f1ece6;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  background: #dcd2c6;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-link {
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
}

.nav-link:hover {
  border-color: #1f1c19;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 28px;
  padding: 60px 6vw 40px;
  background: #efe7dd;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 2.6rem;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin: 0;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 20px;
  border: 1px solid #1f1c19;
  background: #1f1c19;
  color: #f8f5f1;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.outline {
  background: transparent;
  color: #1f1c19;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
}

.hero-visual .image-frame {
  height: 100%;
  min-height: 320px;
}

.image-frame {
  background-color: #d9cfc3;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-muted {
  background: #efe7dd;
}

.section-slab {
  background: #e7ded2;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-copy {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.asym-copy h2,
.section h2 {
  margin: 0;
  font-size: 2rem;
}

.asym-copy p {
  margin: 0;
}

.offset-card {
  flex: 1 1 260px;
  padding: 24px;
  background: #fff7ef;
  border-radius: 18px;
  border: 1px solid #d1c6b9;
  margin-left: 12px;
}

.offset-card.dark {
  background: #1f1c19;
  color: #f8f5f1;
  margin-left: 0;
  margin-right: 12px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d8cdc1;
}

.service-card h3 {
  margin: 0;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-cta {
  border-bottom: 1px solid #1f1c19;
  width: fit-content;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #d8cdc1;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d8cdc1;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select {
  padding: 10px 12px;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid #cfc4b8;
  background: #fffdf9;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  align-self: flex-end;
  margin: 0 6vw 24px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #1f1c19;
  color: #f8f5f1;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 2;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #1f1c19;
  color: #f8f5f1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #cfc4b8;
  padding: 18px;
  display: none;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-hero {
  padding: 50px 6vw 30px;
  background: #efe7dd;
}

.simple-hero h1 {
  margin: 0;
  font-size: 2.3rem;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.info-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #d8cdc1;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-slab {
  background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-hero,
.bg-slab {
  border-radius: 20px;
  min-height: 340px;
}

.text-light {
  color: #f8f5f1;
}

.light-panel {
  background: rgba(31, 28, 25, 0.7);
  padding: 20px;
  border-radius: 16px;
}
