* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1b18;
  --muted: #5a554d;
  --paper: #f6f3ee;
  --accent: #7b4f3a;
  --accent-light: #e6d8cd;
  --deep: #2f2b26;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 16px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--accent-light);
  padding: 6px 10px;
  border-radius: 16px;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a,
.nav button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0;
  color: var(--ink);
}

.nav a:hover,
.nav button:hover {
  color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 30px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1 1 320px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.bg-sand {
  background: #d8c7bc;
}

.bg-cream {
  background: #e6d8cd;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -20px 30px 30px -10px;
  background: var(--accent-light);
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  object-fit: cover;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background: #fff;
}

.section.soft {
  background: var(--accent-light);
}

.section h2 {
  font-size: 2rem;
  margin: 0 0 18px;
}

.story {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.story .copy {
  flex: 1 1 320px;
}

.story .image-frame {
  flex: 1 1 280px;
  padding: 16px;
  background: #fff;
}

.image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
}

.step-number {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.card-media {
  background: #d8c7bc;
}

.card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.form-info {
  flex: 1 1 280px;
}

form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 22px;
  border-radius: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #cfc5bb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.light {
  background: var(--deep);
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--deep);
  color: #fff;
  padding: 22px;
  border-radius: 16px;
}

.cta-strip a {
  color: #fff;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  padding: 40px 6vw 20px;
}

.content-block {
  padding: 24px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
}

.contact-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.legal {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-light);
  font-size: 0.85rem;
}

@media (max-width: 820px) {
  .sticky-cta {
    position: static;
    margin: 16px 6vw 0;
    width: calc(100% - 12vw);
  }
}
