* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --text: #1f2933;
  --muted: #52606d;
  --accent: #0f766e;
  --accent-dark: #0b4f4b;
  --bg: #f7f5f2;
  --soft: #e9eef2;
  --sand: #f0e6d6;
  --ink: #101418;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f5f9;
}

.nav-links a:hover {
  background: #e2e8f0;
}

.ad-label {
  font-size: 0.82rem;
  color: #7c2d12;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 6px 10px;
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 40px 6vw 80px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Poppins", "Inter", sans-serif;
  margin: 0 0 14px;
  color: var(--ink);
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.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;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.outline {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}

.panel {
  padding: 36px;
  border-radius: 24px;
  color: #ffffff;
  min-height: 240px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.panel p {
  color: #fdf4ff;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-media {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--soft);
  padding: 18px;
  border-radius: 18px;
}

.inline-media img {
  width: 160px;
  height: 120px;
  border-radius: 14px;
}

.form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e2e8f0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 32px 6vw 60px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1d4ed8;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.2);
}

.sticky-cta:hover {
  background: #1e40af;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.hero-image {
  background-color: #dfe7ef;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 360px;
}

.media-box {
  background-color: #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
}

.media-box img {
  width: 100%;
  height: 320px;
}

.soft-section {
  background: var(--sand);
  padding: 26px;
  border-radius: 20px;
}

.notice {
  font-size: 0.92rem;
  color: var(--muted);
}

.legal-section {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  padding: 24px;
}

.bg-coast {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.bg-slate {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
}

.image-fallback {
  background-color: #d8e3ea;
}

@media (max-width: 760px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
