* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1f23;
  --muted: #5b616a;
  --accent: #1b6f6a;
  --accent-dark: #0f4c48;
  --sand: #f6f1ea;
  --mist: #eef3f2;
  --rose: #f8e7e1;
  --line: #e2e5e9;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header,
section,
footer {
  padding: 56px 6vw;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 6vw;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 28, 0.55);
}

.hero-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel.media {
  background: var(--mist);
  padding: 18px;
  border-radius: 18px;
}

.panel.media img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.card .media {
  background: var(--sand);
}

.card .media img {
  width: 100%;
  height: 180px;
}

.card .body {
  padding: 18px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.muted {
  color: var(--muted);
}

.section-alt {
  background: var(--sand);
}

.section-mist {
  background: var(--mist);
}

.section-rose {
  background: var(--rose);
}

.form-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 6vw;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 16px;
  border-radius: 999px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  width: 320px;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}

@media (max-width: 840px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
