* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #4a5850;
  --sage: #d7e2d8;
  --moss: #7b8f6c;
  --clay: #e7dfd4;
  --mist: #f5f6f4;
  --accent: #305a3a;
  --accent-soft: #e2efe6;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 18px;
  background: var(--mist);
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 6px 10px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 80px 6vw 60px;
  background: url("https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?w=1400&q=80") center/cover no-repeat;
  position: relative;
  min-height: 460px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 246, 244, 0.78);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.7rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
  transition: transform 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.floating-card {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  background: var(--clay);
  padding: 24px;
  border-radius: 18px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(30, 40, 32, 0.12);
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.alt {
  background: var(--sage);
}

.section.light {
  background: white;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.asymmetric-row {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-block {
  flex: 1 1 320px;
  background: var(--accent-soft);
  padding: 26px;
  border-radius: 16px;
  transform: translateY(-30px);
}

.offset-block.moss {
  background: var(--moss);
  color: white;
  transform: translateY(20px);
}

.media-card {
  flex: 1 1 280px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.media-card .image-wrap {
  background: #c9d5c3;
}

.media-card img {
  width: 100%;
  height: 220px;
}

.media-card .content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 230px;
}

.service-card .image-wrap {
  background: #cfe0d3;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.form-panel {
  background: white;
  padding: 30px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cdd6ce;
  font-size: 1rem;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(32, 54, 38, 0.25);
}

.site-footer {
  padding: 50px 6vw 70px;
  background: #111c14;
  color: #f2f5f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #f2f5f0;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus {
  border-bottom-color: #f2f5f0;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1 1 auto;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: white;
  padding: 22px;
  border-radius: 14px;
}

.legal-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero-stats div {
  background: white;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
