* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1c1c;
  --muted: #5f5a57;
  --accent: #2a5d5a;
  --accent-soft: #e4efee;
  --surface: #f7f4f0;
  --surface-alt: #f0ebe6;
  --outline: #d8d0c8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--surface-alt);
}

.hero {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero .hero-panel {
  background: rgba(24, 23, 23, 0.78);
  padding: 36px 40px;
  max-width: 520px;
}

.hero .hero-panel p {
  color: #e9e5e2;
}

.asym-layout {
  display: flex;
  align-items: center;
  gap: 48px;
}

.asym-layout.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #ffffff;
  border: 1px solid var(--outline);
  padding: 28px;
  margin-top: -24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.offset-card.small {
  margin-top: 12px;
}

.image-frame {
  background-color: #d9d3c9;
  padding: 12px;
  border-radius: 6px;
}

.image-frame img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.highlight-band {
  display: flex;
  align-items: stretch;
  gap: 0;
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.highlight-band .band-text {
  background: rgba(26, 26, 26, 0.78);
  padding: 36px;
  max-width: 480px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border: 1px solid var(--outline);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.light {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid #ffffff;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-compact {
  padding: 10px 18px;
  font-size: 0.92rem;
}

.inline-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  color: var(--accent);
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.form-panel {
  background: #ffffff;
  border: 1px solid var(--outline);
  padding: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--outline);
  font-size: 1rem;
}

.divider {
  height: 1px;
  background: var(--outline);
  margin: 28px 0;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 260px;
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
}

.footer {
  padding: 48px 0;
  background: #181818;
  color: #f7f4f0;
}

.footer a {
  color: #f7f4f0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--outline);
  padding: 18px 20px;
  max-width: 360px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.page-hero {
  padding: 72px 0 40px;
}

.page-hero.with-image {
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.page-hero .page-hero-inner {
  background: rgba(26, 26, 26, 0.78);
  padding: 28px 32px;
  max-width: 560px;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1722942115965-e8826b4e953a?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw1OHx8U21hbGwtYXBhcnRtZW50JTIwc3RvcmFnZSUyMHN5c3RlbXMlMjBkZXNpZ25lZCUyMGFuZCUyMGluc3RhbGxlZCUyMHRvJTIwZml0JTIwcmVhbCUyMGxpZmUufGVufDB8MHx8fDE3ODIyMzE0MzV8MA&ixlib=rb-4.1.0&q=80&w=1080");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
}

.page-hero .subtitle {
  max-width: 560px;
  color: var(--muted);
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-card {
  flex: 1 1 280px;
  background: #ffffff;
  border: 1px solid var(--outline);
  padding: 22px;
}

.legal-body {
  max-width: 780px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 860px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .asym-layout {
    flex-direction: column;
  }

  .highlight-band {
    flex-direction: column;
  }

  .floating-cta {
    right: 16px;
    bottom: 16px;
  }
}
