* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1d22;
  --muted: #5b6472;
  --accent: #1f6b5c;
  --accent-dark: #15483f;
  --sand: #f5f1ea;
  --mist: #f2f6f7;
  --sun: #f9c96b;
  --line: #e4e8ec;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 8vw;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  padding: 56px 8vw 72px;
  background: linear-gradient(120deg, #f6f5f1 10%, #e8f3ef 90%);
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.light {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid #ffffff;
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  background: url("https://images.unsplash.com/photo-1518459031867-a89b944bffe4?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #ffffff;
}

.hero-media span {
  background: rgba(0, 0, 0, 0.45);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.section {
  padding: 64px 8vw;
}

.section.alt {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split-content {
  flex: 1;
  min-width: 0;
}

.split-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.split-content p {
  color: var(--muted);
  margin-bottom: 12px;
}

.split-media {
  flex: 1;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(21, 24, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.split-media img {
  border-radius: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
  margin-top: 18px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(21, 24, 32, 0.05);
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.card strong {
  font-size: 1.1rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.list span::before {
  content: "•";
  margin-right: 8px;
  color: var(--accent);
}

.cta-panel {
  background: var(--accent);
  color: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-panel a {
  color: #ffffff;
  text-decoration: underline;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.form-shell {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-shell small {
  color: var(--muted);
}

.footer {
  padding: 40px 8vw;
  background: #14171b;
  color: #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #f3f4f6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
  box-shadow: 0 10px 20px rgba(21, 24, 32, 0.18);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f242c;
  color: #f5f7fa;
  padding: 16px 8vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 48px 8vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 8vw 64px;
}

.note-box {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 20px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 8vw 64px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero-split,
  .split-section {
    flex-direction: row;
  }

  .hero-split.reverse,
  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .service-grid {
    flex-direction: row;
  }

  .card,
  .service-item {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid .note-box {
    flex: 1;
  }
}
