* {
  box-sizing: border-box;
}

:root {
  --ink: #0f1c2e;
  --muted: #536177;
  --accent: #1c6fe8;
  --accent-dark: #1656b5;
  --paper: #f7f4ef;
  --sand: #efe9df;
  --slate: #1f2b3d;
  --fog: #e6ecf4;
  --mint: #e7f2ef;
  --sun: #f6efe3;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  padding: 0 6vw 6vw;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e2e6ee;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--sun);
  color: #7a4b00;
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 0.85rem;
}

.hero {
  background: linear-gradient(120deg, rgba(15, 28, 46, 0.7), rgba(15, 28, 46, 0.1)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 7vw 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero p {
  max-width: 520px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.magazine-col {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel {
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15, 28, 46, 0.08);
}

.panel.slate {
  background: var(--slate);
  color: #ffffff;
}

.panel.sand {
  background: var(--sand);
}

.panel.mint {
  background: var(--mint);
}

.panel.fog {
  background: var(--fog);
}

.panel-title {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.image-frame {
  background: #d6dee8;
  border-radius: 12px;
  overflow: hidden;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(15, 28, 46, 0.08);
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-inline {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 48px rgba(15, 28, 46, 0.12);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cdd6e4;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  background: #0f1c2e;
  color: #dbe4f3;
  padding: 36px 6vw;
}

.footer a {
  color: #c4d9ff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 18px 40px rgba(15, 28, 46, 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent-dark);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(15, 28, 46, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--fog);
  padding: 4vw 6vw;
}

.legal-content {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  margin: 32px 0;
}

.contact-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(15, 28, 46, 0.12);
}

.newsletter-strip {
  background: var(--mint);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.small-note {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
  }

  .hero {
    padding: 12vw 6vw;
  }
}
