* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1d1a;
  --muted: #6b625a;
  --accent: #d7772c;
  --accent-dark: #b75b16;
  --cream: #f8f3ed;
  --paper: #ffffff;
  --leaf: #2f5d50;
  --shadow: rgba(27, 20, 16, 0.12);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 8px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 28px 6vw 80px;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0 0 25% 0;
  background-color: #c8b5a3;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
  border-radius: 0 0 120px 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.1;
}

.hero-card {
  position: relative;
  z-index: 1;
  background: var(--paper);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  align-self: flex-end;
  max-width: 420px;
  transform: translateY(20px);
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.dark {
  background: var(--ink);
  color: #fdf7f0;
}

.section.light {
  background: var(--paper);
}

.section.bg-image {
  background-color: #b7a89d;
  background-image: url("https://images.unsplash.com/photo-1662192513841-c890cc6ff3f9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fffdf8;
}

.split {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1 1 280px;
  background-color: #cfc2b5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 30px var(--shadow);
}

.floating-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f0e7dc;
  padding: 24px;
  border-radius: 22px;
  align-self: flex-start;
  max-width: 520px;
  box-shadow: 0 14px 30px var(--shadow);
}

.floating-panel .inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 26px var(--shadow);
  display: flex;
  flex-direction: column;
}

.card .card-media {
  height: 170px;
  background-color: #d7c3ad;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  font-weight: 700;
  color: var(--accent);
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--leaf);
  color: #f8f5f0;
  padding: 28px 6vw;
}

.cta-strip a {
  color: #f8f5f0;
  border-bottom: 1px solid #f8f5f0;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 32px var(--shadow);
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #c9bdb1;
  border-radius: 10px;
  font-size: 1rem;
  background: #fffdfa;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 48px 6vw 60px;
  background: #1a1816;
  color: #f3ede6;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: #d2c7ba;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 14px 30px var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent-dark);
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff7ef;
  color: var(--ink);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #e4d8cc;
  color: var(--ink);
}

.image-band {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-tile {
  flex: 1 1 220px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d7c8bc;
  height: 200px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-card {
    align-self: flex-start;
    transform: none;
  }

  .sticky-cta {
    right: 12px;
    bottom: 90px;
  }
}
