* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5b6470;
  --accent: #2b5c7a;
  --accent-soft: #e5eff6;
  --surface: #f7f5f2;
  --surface-strong: #ebe6df;
  --border: #d7d3cc;
  --shadow: 0 14px 30px rgba(20, 20, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 40px 6vw 120px;
}

header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 6vw 0;
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.ad-label {
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 18px;
  padding: 6px 12px;
  font-size: 12px;
  border: 1px solid #c2d5e2;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel h1,
.panel h2,
.panel h3 {
  margin: 0;
}

.panel p {
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-button,
.cta-link {
  text-decoration: none;
  font-weight: 600;
  border-radius: 22px;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: #ffffff;
}

.cta-link {
  border-color: transparent;
  padding-left: 0;
}

.surface {
  background: var(--surface);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.image-frame {
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #dfe7ec;
  display: flex;
  align-items: stretch;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.bg-section {
  background: var(--surface-strong);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bg-mood {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-mood::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 28, 0.55);
  border-radius: 32px;
}

.bg-mood > * {
  position: relative;
  z-index: 1;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border-radius: 26px;
  padding: 24px;
  border: 1px solid var(--border);
}

.form-shell label {
  font-size: 14px;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
}

.form-shell button {
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.footer {
  padding: 40px 6vw 80px;
  background: #111418;
  color: #e6eaee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e6eaee;
  text-decoration: none;
}

.footer .legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.notice {
  font-size: 13px;
  color: #c7ced6;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 260px;
  color: var(--muted);
}

.cookie-banner button {
  border-radius: 18px;
  padding: 8px 14px;
  border: 1px solid var(--accent);
  background: #ffffff;
  color: var(--accent);
  font-weight: 600;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}

.page-hero h1 {
  margin: 0;
}

.mini-image {
  max-width: 420px;
  border-radius: 20px;
}

.details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.align-right {
  align-self: flex-end;
}

@media (max-width: 860px) {
  .sticky-cta {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}
