* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1f2a;
  --muted: #5b6472;
  --paper: #f5f4f0;
  --accent: #1e5b7a;
  --accent-dark: #11405a;
  --sand: #efe7db;
  --night: #121826;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fbfaf7;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  padding: 28px 6vw 10px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand span {
  color: var(--muted);
  font-size: 14px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

nav a,
nav span {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
}

nav a {
  background: #f0f0ed;
}

nav a:hover {
  background: #e1e0dc;
}

.ad-label {
  background: #fff4d2;
  color: #6e4a00;
}

.hero {
  display: flex;
  flex-direction: column;
  min-height: 70vh;
  background-image: linear-gradient(90deg, rgba(17, 24, 38, 0.75), rgba(17, 24, 38, 0.2)), url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 6vw;
  gap: 30px;
}

.hero h1 {
  font-size: 42px;
  max-width: 620px;
  margin: 0;
}

.hero p {
  max-width: 540px;
  font-size: 18px;
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  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;
}

.button.secondary {
  background: #fff;
  color: var(--accent-dark);
}

.button:hover {
  background: var(--accent-dark);
  color: #fff;
}

.button.secondary:hover {
  background: #e8edf1;
  color: var(--accent-dark);
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 6vw 80px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--sand);
  border-radius: 999px;
  font-size: 13px;
  color: #4f463a;
}

.image-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: #dde4ea;
  height: 320px;
}

.image-wrap.small {
  height: 200px;
}

.image-wrap.tall {
  height: 420px;
}

.layered {
  background: var(--paper);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.insight {
  background-image: linear-gradient(120deg, rgba(239, 231, 219, 0.94), rgba(239, 231, 219, 0.8)), url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 50px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #d6d6d0;
  border-radius: 12px;
}

.service-option input {
  accent-color: var(--accent);
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6d6d0;
  font-size: 15px;
  font-family: inherit;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
}

.sticky-cta a {
  background: var(--night);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
}

footer {
  background: var(--night);
  color: #e3e6ea;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #e3e6ea;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 13px;
  color: #b5bac3;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.simple-hero {
  padding: 50px 6vw;
  background: var(--paper);
}

.simple-hero h1 {
  margin: 0;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #eceae6;
  padding-bottom: 8px;
}

.table-list span {
  color: var(--muted);
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
[hidden] {
  display: none !important;
}