* {
  box-sizing: border-box;
}

:root {
  --text: #1e2328;
  --muted: #5f6b73;
  --accent: #f4b000;
  --accent-dark: #d49400;
  --bg: #f7f4ef;
  --panel: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  padding: 6px 0;
}

.ad-label {
  background: #1e2328;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  padding: 40px 0 20px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
}

.panel.media {
  min-height: 320px;
}

.image-wrap {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #dde4e8;
  box-shadow: var(--shadow);
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  margin-bottom: 14px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  background: var(--accent);
  border: none;
  color: #1b1b1b;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #1e2328;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: #101214;
}

.section {
  padding: 52px 0;
}

.section.alt {
  background: #ffffff;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 250px;
  background: var(--panel);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .image-wrap {
  min-height: 180px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.split-note {
  background: var(--panel);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e2db;
}

.service-row:last-child {
  border-bottom: none;
}

.form-card {
  background: var(--panel);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccd5db;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
}

body.cookie-open .sticky-cta {
  bottom: 90px;
}

.bg-sun {
  background-image: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-sun .split-note,
.bg-sun .btn.secondary {
  border-color: #fff;
  color: #fff;
}

.bg-sun .btn.secondary:hover,
.bg-sun .btn.secondary:focus {
  background: rgba(255, 255, 255, 0.2);
}

.bg-overlay {
  background: rgba(20, 24, 28, 0.65);
  padding: 40px;
  border-radius: var(--radius);
}

.footer {
  padding: 32px 0 60px;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1e2328;
  color: #fff;
  padding: 16px 0;
  display: none;
  z-index: 40;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  background: #fff;
  border: none;
  color: #1e2328;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-btn.secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.page-hero {
  padding: 34px 0 10px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.two-column .panel {
  flex: 1 1 300px;
}

.notice {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.stack-gap {
  margin-top: 18px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
