* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1d1a;
  --muted: #5b5752;
  --sand: #f4f0ea;
  --paper: #fbfaf8;
  --clay: #d9cbbd;
  --accent: #8a6a4f;
  --accent-dark: #6f523c;
  --shadow: 0 18px 40px rgba(33, 26, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

header {
  padding: 24px 6vw 12px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  padding: 12px 18px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 10;
}

main {
  padding-bottom: 80px;
}

.section {
  padding: 60px 6vw;
}

.section--contrast {
  background: var(--sand);
}

.section--clay {
  background: var(--clay);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 280px;
}

.offset-block {
  background: white;
  padding: 28px;
  box-shadow: var(--shadow);
  border-radius: 12px;
  transform: translateY(18px);
}

.offset-block--lift {
  transform: translateY(-16px);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-visual {
  flex: 1 1 320px;
  background: #e3d8cc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.btn:hover,
.btn:focus,
.btn-outline:hover,
.btn-outline:focus {
  filter: brightness(0.95);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.story-line {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin: 10px 0;
}

.image-frame {
  background: #e7ded4;
  padding: 12px;
  border-radius: 16px;
}

.image-frame img {
  width: 100%;
  height: 320px;
}

.bg-sand {
  background: #e3d8cc;
}

.bg-clay {
  background: #d9cbbd;
}

.bg-paper {
  background: #e7ded4;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.form-panel {
  flex: 1 1 320px;
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d6cbc0;
  font: inherit;
  background: white;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.testimonial {
  background: white;
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.footer {
  background: #1f1d1a;
  color: #f7f3ee;
  padding: 40px 6vw;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  background: white;
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero img {
  width: 100%;
  height: 260px;
}

.contact-box {
  background: white;
  padding: 24px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.meta-item {
  flex: 1 1 240px;
  background: white;
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

@media (max-width: 800px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .offset-block,
  .offset-block--lift {
    transform: none;
  }
}
