* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1e1f;
  --muted: #5d6166;
  --paper: #f7f4ef;
  --fog: #eef1f4;
  --sand: #f1e8dc;
  --clay: #d7c6b3;
  --accent: #3c6e71;
  --accent-dark: #2d5456;
  --border: #d7d1c9;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 20px 30px;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 30px;
  background: var(--fog);
  gap: 30px;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  background-color: var(--clay);
  background-image: url("https://images.unsplash.com/photo-L3rYeVMGv6k?w=1400&q=80");
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.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: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.mag-section {
  padding: 42px 30px;
}

.mag-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.mag-col {
  flex: 1 1 260px;
  min-width: 240px;
}

.mag-col.wide {
  flex: 2 1 420px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-image {
  background-color: var(--sand);
  border-radius: 12px;
  overflow: hidden;
}

.note {
  background: var(--paper);
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
}

.split-band {
  background: var(--sand);
}

.archive-band {
  background-image: url("https://images.unsplash.com/photo-5utYi64hnJ0?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.archive-overlay {
  background: rgba(247, 244, 239, 0.92);
  padding: 26px;
  border-radius: 16px;
}

.inline-cta {
  font-weight: 600;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 12px;
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-wrap {
  background: var(--fog);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
}

.testimonial {
  font-style: italic;
  color: var(--muted);
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-strip .strip-item {
  flex: 1 1 220px;
  background-color: var(--clay);
  border-radius: 12px;
  overflow: hidden;
}

.site-footer {
  background: var(--paper);
  padding: 30px;
  border-top: 1px solid var(--border);
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  z-index: 999;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 998;
}

.sticky-cta .btn {
  background: #ffffff;
  color: var(--accent);
  border-color: #ffffff;
}

.sticky-cta button.close-sticky {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 800px) {
  .sticky-cta {
    position: static;
    margin: 20px;
  }
}
