* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a37;
  --muted: #5c6b7a;
  --accent: #1e5b8f;
  --accent-strong: #173f63;
  --bg: #f4f6f9;
  --card: #ffffff;
  --soft: #e7edf3;
  --sand: #f7f2ec;
  --mint: #eef6f3;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.top-note {
  background: var(--accent-strong);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.top-note .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  background: #fff;
  border-bottom: 1px solid var(--soft);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-strong);
  border: 1px solid var(--accent-strong);
}

.btn.ghost {
  background: transparent;
  border: 1px solid #ffffff;
  color: #fff;
}

.btn:hover {
  filter: brightness(0.95);
}

.hero {
  background: #fff;
  padding: 56px 0 72px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1;
}

.hero-card {
  background: var(--sand);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-wrap {
  background: var(--soft);
  border-radius: 18px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--sand);
}

.section.mint {
  background: var(--mint);
}

.section.white {
  background: #fff;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(26px, 4vw, 36px);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  color: var(--muted);
}

.stat-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 180px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--soft);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--soft);
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image-wrap {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
}

.card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-strong);
}

.form-wrap {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd6df;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row .field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.divider {
  height: 1px;
  background: var(--soft);
  margin: 24px 0;
}

.footer {
  background: #0f1720;
  color: #e2e8f0;
  padding: 46px 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent-strong);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--soft);
  border-radius: 16px;
  padding: 16px;
  width: min(360px, 90vw);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
  z-index: 12;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  background: #fff;
  padding: 46px 0 60px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.simple-list li {
  margin-left: 18px;
}

.hero-bg {
  min-height: 340px;
  background-color: var(--soft);
  background-size: cover;
  background-position: center;
  border-radius: 22px;
}

.page-home .hero-bg {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

.page-about .hero-bg {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
}

.page-services .hero-bg {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.page-contact .hero-bg {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
}

.page-legal .hero-bg {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
