* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1f23;
  --muted: #56606b;
  --bg: #f7f4ef;
  --accent: #2f5d62;
  --accent-2: #c97f4f;
  --paper: #ffffff;
  --line: #e2ded7;
}

body {
  font-family: "Arial", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 8%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 240px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 40px 8% 70px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9e1e1;
  border: 1px solid var(--line);
  min-height: 320px;
}

.hero-visual img {
  width: 92%;
  height: 92%;
  object-fit: cover;
  border-radius: 6px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-2);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.offset-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 300px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel.highlight {
  background: #f1ece3;
}

.panel img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bg-section {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  padding: 32px;
  color: #fff;
}

.bg-section .btn {
  background: #1e3a3f;
}

.card {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--paper);
  padding: 24px;
  border: 1px solid var(--line);
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.form-note {
  flex: 1 1 260px;
  padding: 24px;
  background: #f1ece3;
  border: 1px solid var(--line);
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  align-self: center;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 12px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 5;
}

.legal {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 32px 8%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.image-wrap {
  background: #d8d4cc;
  padding: 6px;
}

.image-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.page-hero .text {
  flex: 1 1 320px;
  background: var(--paper);
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero .visual {
  flex: 1 1 300px;
  background: #e3e1dc;
  border: 1px solid var(--line);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-col .block {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 20px;
  border: 1px solid var(--line);
}
