:root {
  --ink: #1e1f23;
  --muted: #5b616b;
  --accent: #1f5d7a;
  --accent-2: #a5523a;
  --bg: #f6f4f1;
  --surface: #ffffff;
  --line: #d9d4cc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 4px 8px;
  border: 1px dashed var(--line);
}

.hero {
  padding: 48px 0 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-item {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #e6e0d8;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame.tall img {
  width: 100%;
  height: 420px;
}

.section {
  padding: 48px 0;
}

.section-light {
  background: var(--surface);
}

.section-press {
  background-image: url("https://images.unsplash.com/photo-1729944950511-e9c71556cfd4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1c2026;
  color: #f7f4f0;
}

.section-press .overlay {
  background: rgba(24, 26, 32, 0.7);
  padding: 40px;
  border-radius: 18px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f0e7de;
  color: var(--accent-2);
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-btn.alt {
  background: var(--accent-2);
}

.cta-btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.form-wrap {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-grid .field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

footer {
  background: #1c1f24;
  color: #e6e0d8;
  padding: 32px 0;
}

footer a {
  color: #e6e0d8;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--surface);
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.section-compact {
  padding: 32px 0;
}

.notice {
  background: #fff4e6;
  border: 1px solid #f0d9c0;
  border-radius: 14px;
  padding: 16px;
}

.list-plain {
  margin: 0;
  padding-left: 18px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-16 {
  margin-top: 16px;
}

.full-span {
  flex: 1 1 100%;
}

@media (max-width: 720px) {
  .image-frame.tall img {
    height: 280px;
  }
  .sticky-cta {
    left: 16px;
    right: 16px;
  }
}
