* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1c1f;
  --muted: #5a646e;
  --accent: #1b5b5f;
  --accent-soft: #e7f2f2;
  --sand: #f4f1ec;
  --deep: #0f2c2e;
  --line: #e2e6ea;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent);
}

button {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  padding: 18px 0 8px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 380px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 14px 0 20px;
  border-bottom: 1px solid var(--line);
}

.nav-row a {
  font-size: 0.95rem;
  color: var(--ink);
}

.hero {
  padding: 64px 0 40px;
}

.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-media {
  flex: 1 1 360px;
  min-height: 320px;
  background-color: #d9e4e2;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
}

.hero-media.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  background: #154548;
  border-color: #154548;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--accent-soft);
}

.section {
  padding: 64px 0;
}

.section-muted {
  background: var(--sand);
}

.section-deep {
  background: var(--deep);
  color: #fefefe;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-18px);
}

.offset-card p {
  color: var(--muted);
}

.image-frame {
  flex: 1 1 280px;
  background-color: #e6ecea;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}

.image-frame.tall {
  min-height: 320px;
}

.image-frame.short {
  min-height: 200px;
}

.image-frame.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-18 {
  margin-top: 18px;
}

.service-card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  height: 160px;
  background-color: #dde7e6;
}

.service-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.highlight {
  flex: 1 1 220px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight h3 {
  margin-bottom: 8px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
  border-radius: 12px;
}

.timeline-step:nth-child(even) {
  margin-left: 40px;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  padding: 20px 22px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.quote p {
  color: var(--muted);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  padding: 24px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.form-panel label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  background: #ffffff;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.service-chooser {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.service-chooser button {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 10px 16px;
  background: #ffffff;
  cursor: pointer;
}

.service-chooser button:hover,
.service-chooser button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.form-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #fafafa;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  display: inline-flex;
  margin-right: 12px;
  margin-top: 6px;
  color: var(--muted);
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 30;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plain-page {
  padding: 50px 0 80px;
}

.plain-page h1 {
  margin-bottom: 18px;
}

.plain-page p + p {
  margin-top: 14px;
}

@media (max-width: 880px) {
  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .timeline-step:nth-child(even) {
    margin-left: 0;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
  }
}
