* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #4f5966;
  --sand: #f3efe8;
  --steel: #e3e7ec;
  --fog: #f7f8fa;
  --accent: #1b5e5b;
  --accent-dark: #124341;
  --highlight: #f0d9b5;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 18px;
  gap: 16px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent);
}

.ad-disclosure {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  display: flex;
  gap: 40px;
  padding: 40px 0 60px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.05;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 10px 20px 0;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  line-height: 1.1;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-card {
  background: var(--fog);
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-media {
  flex: 1;
  position: relative;
  background: #c7cfd8;
  border-radius: 22px 22px 22px 90px;
  overflow: hidden;
  min-height: 420px;
}

.hero-media .overlay-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 16px;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.secondary:hover {
  background: var(--accent);
  color: #fff;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 60px 0;
}

.section.offset {
  background: var(--sand);
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin-bottom: 18px;
}

.split {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel p {
  color: var(--muted);
}

.media-card {
  background: #cdd5de;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--fog);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .media {
  background: #c7d0d9;
  height: 150px;
}

.service-card .content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.offset-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  margin-left: 20px;
}

.offset-card:nth-child(2) {
  margin-left: 60px;
}

.offset-card:nth-child(3) {
  margin-left: 10px;
}

.highlight-band {
  background: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80") center/cover no-repeat;
  background-color: #2b2b2b;
  color: #fff;
  position: relative;
}

.highlight-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.highlight-band .page {
  position: relative;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d4dbe3;
  font-size: 1rem;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid #e2e6ec;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  width: min(1100px, 92vw);
  background: #fff;
  border: 1px solid #e1e4ea;
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.sticky-cta p {
  margin: 0;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  width: min(320px, 88vw);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-page .section-title {
  margin-bottom: 8px;
}

.legal-page p {
  margin-bottom: 14px;
  color: var(--muted);
}

.simple-hero {
  padding: 50px 0 30px;
}

.simple-hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.contact-card {
  background: var(--fog);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card strong {
  color: var(--ink);
}

.notice {
  background: var(--highlight);
  padding: 18px;
  border-radius: 18px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .hero-media {
    min-height: 320px;
  }

  .offset-card {
    margin-left: 0;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
