* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --surface: #ffffff;
  --soft: #f5f1ec;
  --accent: #2f6f6d;
  --accent-dark: #214c4a;
  --highlight: #f0e4d2;
  --line: #e3ded7;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 28px 12px;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-size: 14px;
}

.hero {
  margin: 36px 0 48px;
  padding: 48px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: var(--highlight);
  color: var(--ink);
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 48px;
}

.magazine-col {
  flex: 1 1 320px;
  min-width: 280px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.feature-card.highlight {
  background: var(--soft);
}

.image-box {
  border-radius: 14px;
  overflow: hidden;
  background-color: #d6cdc1;
}

.section-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}

.inline-cta {
  font-weight: 600;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}

.pricing-item span {
  font-weight: 600;
}

.form-panel {
  padding: 26px;
  border-radius: 18px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
}

button {
  cursor: pointer;
}

.site-footer {
  margin-top: 60px;
  padding: 32px 28px 60px;
  background: #111111;
  color: #f5f5f5;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid a {
  color: #f5f5f5;
}

.footer-note {
  font-size: 12px;
  color: #cfcfcf;
  margin-top: 20px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-actions .reject {
  background: var(--highlight);
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
}

.bg-seasonal {
  background-image: url("https://images.unsplash.com/photo-1506354666786-959d6d497f1a?w=1400&q=80");
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1466637574441-749b8f19452f?w=1400&q=80");
}

.soft-panel {
  padding: 28px;
  border-radius: 18px;
  background: var(--soft);
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  background: var(--highlight);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 32px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
