* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #4c4c4c;
  --soft: #f3f1ee;
  --accent: #0f3a5f;
  --accent-light: #dfe8ef;
  --warm: #f4efe9;
  --line: #e2ddd6;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-frame {
  background: #dcd6cf;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--soft);
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 30px 6vw 60px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 10px 10px 0 0;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 2.5vw, 3.4rem);
  margin: 0;
}

.hero-image {
  flex: 1 1 360px;
  background: #d5dde4;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  background: #0c2e4b;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section-alt {
  background: var(--soft);
}

.section-warm {
  background: var(--warm);
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  padding: 20px;
}

.asym-media {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #d8d2cc;
}

.offset-card {
  background: var(--card);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.08);
  margin-top: -40px;
  max-width: 420px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.service-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card img {
  height: 180px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.inline-cta:hover,
.inline-cta:focus {
  border-color: var(--accent);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.trust-strip span {
  font-weight: 600;
  color: var(--muted);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c9c9;
  margin-bottom: 16px;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta button {
  border: none;
  cursor: pointer;
}

.footer {
  background: #121212;
  color: #f5f5f5;
  padding: 40px 6vw;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #f5f5f5;
}

.legal {
  font-size: 0.9rem;
  color: #c2c2c2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: var(--ink);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  display: none;
  gap: 12px;
  flex-direction: column;
  max-width: 320px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e6e6e6;
  color: #303030;
}

.page-hero {
  padding: 40px 6vw 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero img {
  border-radius: 20px;
  height: 260px;
}

.content-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.content-card {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  flex: 1 1 260px;
}

.contact-box {
  background: var(--soft);
  border-radius: 18px;
  padding: 22px;
}

@media (max-width: 720px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 0 6vw 30px;
  }
}
