:root {
  --ink: #1a1f24;
  --muted: #4b5563;
  --bg: #f6f3ef;
  --accent: #1f5a66;
  --accent-strong: #133b44;
  --card: #ffffff;
  --line: #e6e0d8;
  --sand: #efe7dd;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

header {
  padding: 28px 6vw 10px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 54px;
  padding: 0 6vw 70px;
}

section {
  padding: 24px 0;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

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

.split .text-block {
  flex: 1 1 320px;
}

.split .media-block {
  flex: 1 1 320px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 340px;
}

.hero-visual {
  flex: 1 1 360px;
  min-height: 340px;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  background-color: #d7d1c7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.75rem;
  color: var(--accent-strong);
}

h1,
h2,
h3 {
  margin: 0 0 12px;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent-strong);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.link-button {
  background: transparent;
  color: var(--accent-strong);
}

.button:hover,
.link-button:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
  color: #fff;
}

.inline-link {
  color: var(--accent-strong);
  text-decoration: underline;
}

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

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

.card-media {
  background-color: #ddd4ca;
  border-radius: 16px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

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

.image-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

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

.metric {
  flex: 1 1 160px;
  background: var(--sand);
  padding: 16px;
  border-radius: 16px;
}

.cta-band {
  padding: 30px;
  border-radius: 24px;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #5b5f64;
}

.form-panel {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

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

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

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.footer {
  padding: 40px 6vw 60px;
  background: #1c2329;
  color: #f5f2ed;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  color: var(--ink);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  display: none;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

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

.notice {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
