* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a2e;
  --muted: #5b6b73;
  --sand: #f3efe8;
  --sea: #d9e7ea;
  --clay: #e9ded2;
  --sunset: #f6e5d8;
  --forest: #e3efe8;
  --white: #ffffff;
  --accent: #2c6f7a;
  --accent-dark: #1d4f57;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 18px 28px;
  border-bottom: 1px solid #dfe5e8;
  background: var(--white);
}

.topbar-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  background: var(--clay);
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
}

.hero {
  padding: 32px 28px 18px;
  background: var(--sand);
}

.hero-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--sea);
  min-height: 260px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.section {
  padding: 32px 28px;
}

.section-split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-image {
  flex: 1 1 260px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  background: var(--forest);
}

.tone-sea {
  background: var(--sea);
}

.tone-clay {
  background: var(--clay);
}

.tone-sunset {
  background: var(--sunset);
}

.tone-forest {
  background: var(--forest);
}

.magazine-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.mag-column {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border: 1px solid #e2e7ea;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  background: #dfeaed;
  height: 180px;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.form-wrap {
  background: var(--sea);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd6db;
  font-size: 14px;
}

.form-status {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 28px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--accent-dark);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 20;
}

.sticky-cta a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--white);
  border: 1px solid #d9e0e4;
  border-radius: 14px;
  padding: 14px;
  display: none;
  flex-direction: column;
  gap: 10px;
  width: min(320px, 90%);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--accent-dark);
  background: var(--accent-dark);
  color: var(--white);
  font-size: 13px;
}

.cookie-actions .btn-outline {
  background: transparent;
  color: var(--accent-dark);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e7ea;
  font-size: 14px;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
