* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2933;
  --muted: #52606d;
  --paper: #f7f5f2;
  --accent: #0f6a6f;
  --accent-soft: #e3f2f2;
  --warm: #f2e8db;
  --stone: #dde4ea;
  --shadow: 0 18px 40px rgba(20, 30, 40, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 28px 6vw 10px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-disclosure {
  font-size: 0.9rem;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-link {
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--paper);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 36px 6vw 64px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 360px;
  max-width: 520px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero-copy p {
  color: var(--muted);
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 28px;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-image {
  flex: 1 1 360px;
  min-height: 360px;
  border-radius: 26px;
  background: var(--warm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: stretch;
  padding: 70px 6vw;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 360px;
}

.split-text h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.split-text p {
  color: var(--muted);
}

.split-media {
  border-radius: 22px;
  background: var(--stone);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
}

.card-image {
  flex: 0 0 110px;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}

.card-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.section-band {
  background: var(--paper);
}

.quote {
  font-style: italic;
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd2d9;
  font-size: 0.95rem;
  font-family: inherit;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

footer {
  padding: 40px 6vw 60px;
  background: #0f1f24;
  color: #f4f7fa;
}

footer a {
  color: #f4f7fa;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-note {
  font-size: 0.88rem;
  color: #d9e2ec;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 26px;
  padding: 12px 20px;
  cursor: pointer;
  z-index: 40;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 6vw 20px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.simple-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.page-body {
  padding: 20px 6vw 60px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.table-row strong {
  min-width: 140px;
}

@media (max-width: 820px) {
  .hero,
  .split-section {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
