*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0d1b2a;
  --muted: #4a5568;
  --panel: #f4f6f9;
  --accent: #1b4b7a;
  --accent-2: #0f766e;
  --warm: #f6efe8;
  --border: #d9e0ea;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

header {
  padding: 28px 6vw 16px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 6vw 60px;
  align-items: stretch;
}

.hero-copy,
.hero-media {
  flex: 1 1 320px;
}

.hero-card {
  background: var(--panel);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-media {
  background: #cbd5f5;
  border-radius: 28px;
  overflow: hidden;
  min-height: 340px;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.alt {
  background: var(--accent-2);
}

main {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding-bottom: 80px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 0 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
}

.media-card {
  background: #e3ebf4;
  border-radius: 26px;
  padding: 18px;
}

.media-card img {
  border-radius: 20px;
  width: 100%;
  height: 360px;
}

.bg-ice {
  background-color: #d9e6f2;
}

.bg-mist {
  background-color: #dfe7f1;
}

.bg-slate {
  background-color: #d7e2ee;
}

.bg-warm {
  background-color: #f6efe8;
}

.bg-photo {
  background-image: url("https://images.pexels.com/photos/8761553/pexels-photo-8761553.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-photo .content {
  background: rgba(255, 255, 255, 0.92);
  padding: 22px;
  border-radius: 18px;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--warm);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 6vw;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  min-width: 240px;
}

.card img {
  border-radius: 14px;
  height: 170px;
  width: 100%;
  background-color: #d8e1ec;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.form-section {
  background: var(--panel);
  margin: 0 6vw;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.two-col > div {
  flex: 1 1 220px;
}

.inline-link {
  color: var(--accent-2);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  z-index: 20;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

footer {
  padding: 40px 6vw 60px;
  background: #0f172a;
  color: #e2e8f0;
}

footer a {
  color: #dbeafe;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-grid > div {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111827;
  color: #f8fafc;
  padding: 16px 6vw;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent-2);
  color: #fff;
}

.cookie-reject {
  background: #f87171;
  color: #1f2937;
}

.page-hero {
  padding: 28px 6vw 12px;
}

.page-hero .hero-panel {
  background: var(--warm);
  border-radius: 24px;
  padding: 24px;
}

.list-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 6vw;
}

.list-split > div {
  flex: 1 1 260px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.contact-panel {
  background: #f8fafc;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.references a {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
