* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #585858;
  --light: #f5f3ee;
  --accent: #1f6f8b;
  --accent-2: #d08f70;
  --panel: #ffffff;
  --outline: #e2ded6;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 48px 6vw 96px;
}

header {
  padding: 28px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--outline);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--panel);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 0.95rem;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.half {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  padding: 32px;
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  background-color: #d8d1c7;
  min-height: 280px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12rem;
  color: var(--accent);
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 18px;
  border: 1px solid var(--outline);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.05rem;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.highlight {
  background: #fff6ee;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #f0d8c6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 48px 6vw;
  background: #121212;
  color: #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f1f1f1;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 4;
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

@media (max-width: 780px) {
  header {
    gap: 10px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
