* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1b1f;
  --muted: #5b5f66;
  --soft: #f2f1ee;
  --accent: #1f5f5b;
  --accent-dark: #164846;
  --sand: #efe8dd;
  --stone: #e2e5ea;
  --border: #d5d8de;
  --shadow: 0 24px 60px rgba(28, 27, 31, 0.12);
}

html,
body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 1.2rem;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent-dark);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 8px;
  border-radius: 6px;
}

.nav a:hover,
.nav a:focus {
  background: var(--soft);
}

.sticky-cta {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 12px 6%;
}

.sticky-cta a {
  color: #ffffff;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.hero,
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 70px 6%;
  align-items: center;
}

.hero {
  background: var(--sand);
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.split-content h1,
.split-content h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.split-content p {
  margin-bottom: 16px;
  color: var(--muted);
}

.split-content .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: var(--accent);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.media-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-shell {
  background-color: #d5dbe2;
  overflow: hidden;
}

.image-shell img {
  width: 100%;
  height: 100%;
}

.media-card .image-shell {
  height: 320px;
}

.media-card .media-note {
  padding: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.layered {
  position: relative;
  background: var(--stone);
}

.soft {
  background: var(--soft);
}

.layered::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 6%;
  background: #ffffff;
}

.card {
  flex: 1 1 240px;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .image-shell {
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.form-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 70px 6%;
  background: var(--soft);
}

.form-panel,
.form-info {
  flex: 1 1 320px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.service-pill {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.service-pill.active {
  border-color: var(--accent);
  color: var(--accent);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 50px 6%;
  background: #1f1f23;
  color: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer a {
  color: #f5f5f5;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  width: min(360px, 90vw);
  z-index: 20;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.section-bg {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  background-color: #2f333a;
}

.section-bg .split-content p,
.section-bg .split-content h2 {
  color: #ffffff;
}

.panel {
  background: rgba(28, 27, 31, 0.6);
  padding: 36px;
  border-radius: 16px;
}

.centered-hero {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sand);
}

.centered-hero .image-shell {
  height: 280px;
  border-radius: 18px;
}

.simple-section {
  padding: 60px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.simple-section .content {
  flex: 1 1 320px;
}

.simple-section .image-shell {
  flex: 1 1 320px;
  height: 260px;
  border-radius: 16px;
}

.policy {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy h1 {
  font-size: 2rem;
}

.policy ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.references a {
  color: #ffffff;
}

.thanks {
  padding: 80px 6%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--soft);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 60px 6%;
}

.contact-card {
  flex: 1 1 260px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
}

.tagline {
  font-weight: 600;
  color: var(--accent-dark);
}

.bg-1 {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-2 {
  background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1400&q=80");
}

.bg-3 {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
}

.bg-4 {
  background-image: url("https://images.unsplash.com/photo-1487528278747-ba99ed528ebc?w=1400&q=80");
}

.bg-5 {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.bg-6 {
  background-image: url("https://images.pexels.com/photos/29763051/pexels-photo-29763051.jpeg");
}

.bg-7 {
  background-image: url("https://images.unsplash.com/photo-1523287562758-66c7fc58967f?w=1400&q=80");
}

.bg-8 {
  background-image: url("https://images.unsplash.com/photo-1450101215322-bf5cd27642fc?w=1400&q=80");
}
