* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #efe6dc;
  padding: 6px 10px;
  border-radius: 999px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel-offset {
  margin-top: 28px;
}

.hero-card {
  background: #efe6dc;
  padding: 24px;
  border-radius: 24px;
  position: relative;
}

.hero-card .hero-image {
  border-radius: 20px;
  overflow: hidden;
  background-color: #d9cfc2;
}

.hero-card .hero-image img {
  height: 420px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b5a4c;
  margin-bottom: 8px;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background: #1f1f1f;
  color: #fefbf7;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1f1f1f;
}

.inline-link {
  border-bottom: 1px solid #1f1f1f;
}

.section {
  margin: 56px 0;
}

.section.alt {
  background: #ffffff;
  border-radius: 32px;
  padding: 40px;
}

.section.accent {
  background: #efe6dc;
  border-radius: 32px;
  padding: 40px;
}

.image-tile {
  border-radius: 24px;
  overflow: hidden;
  background-color: #d9cfc2;
}

.image-tile img {
  height: 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.card img {
  height: 180px;
  border-radius: 18px;
  background-color: #d9cfc2;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.badge {
  display: inline-block;
  background: #f6f3ef;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.quote {
  border-left: 4px solid #b49c85;
  padding-left: 16px;
  font-style: italic;
  background: #f6f3ef;
  border-radius: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #b9b0a7;
  background: #faf8f5;
  font-size: 1rem;
}

.footer {
  border-top: 1px solid #d2c7bb;
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f1f1f;
  color: #fefbf7;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.legal-page h1 {
  margin-bottom: 20px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-grid .card {
  flex: 1 1 300px;
}

.section-note {
  font-size: 0.92rem;
  color: #5d534b;
}

.highlight {
  background: #fff6ea;
  padding: 18px;
  border-radius: 18px;
}

.story-block {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
}

.story-block .image-tile img {
  height: 260px;
}

.layout-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.layout-stack .split {
  align-items: stretch;
}
