* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1a17;
  --muted: #5b514b;
  --cream: #f7f1ea;
  --linen: #efe3d6;
  --ochre: #c18b5a;
  --rust: #8e4b3b;
  --sage: #97a08f;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw 12px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--linen);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 6vw 64px;
}

.hero-top {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero-text p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-image {
  flex: 1 1 320px;
  max-width: 540px;
  background: var(--linen);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transform: translateX(12px);
}

.hero-image img {
  height: 100%;
  min-height: 320px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-light {
  background: transparent;
  color: var(--rust);
  border: 1px solid var(--rust);
}

.section {
  padding: 56px 6vw;
}

.section-bg {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.section-bg .bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.85;
  background: var(--sage);
}

.section-bg .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-bg .content {
  position: relative;
  z-index: 1;
}

.section.alt {
  background: var(--linen);
}

.section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.offset-block {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.offset-block.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 280px;
  max-width: 420px;
  margin-top: 12px;
}

.offset-media {
  flex: 1 1 320px;
  max-width: 520px;
  background: var(--sage);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.offset-media.small {
  max-width: 420px;
  margin-left: 10%;
}

.tag-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tag {
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-image {
  background: var(--linen);
}

.image-frame {
  background: var(--linen);
  border-radius: 12px;
  overflow: hidden;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--rust);
}

.quote {
  font-style: italic;
  color: var(--muted);
  border-left: 3px solid var(--ochre);
  padding-left: 14px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ochre);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9cbbf;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.aside-panel {
  flex: 1 1 240px;
  max-width: 360px;
  background: var(--linen);
  padding: 22px;
  border-radius: 16px;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.sticky-cta .btn {
  padding: 10px 18px;
  font-size: 0.9rem;
}

footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #1c1816;
  color: #f8f1ea;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-columns div {
  flex: 1 1 220px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #d8cbc1;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.spacer {
  height: 18px;
}
