* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-banner {
  background: #111111;
  color: #f6f4f1;
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
  text-align: center;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 2rem 1rem;
  background: #f6f4f1;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid #1f1f1f;
}

.hero {
  background: linear-gradient(115deg, rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.2)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
  padding: 5rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: 2.6rem;
  max-width: 650px;
}

.hero p {
  max-width: 520px;
  font-size: 1.1rem;
}

.cta-button {
  background: #f6f4f1;
  color: #111111;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.section {
  padding: 4rem 2rem;
}

.section-dark {
  background: #1f1f1f;
  color: #f6f4f1;
}

.section-light {
  background: #fff;
}

.section-visual {
  background: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
}

.offset-wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.offset-text {
  flex: 1 1 300px;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-top: -3rem;
}

.offset-image {
  flex: 1 1 280px;
  background-color: #d8d1c8;
  border-radius: 24px;
  overflow: hidden;
}

.offset-image img {
  width: 100%;
  height: 100%;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.service-card .card-media {
  background-color: #c7c2b8;
  height: 160px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price-tag {
  font-weight: 600;
  color: #2d2a26;
}

.split-stack {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-row .text-block {
  flex: 1 1 280px;
}

.split-row .image-block {
  flex: 1 1 280px;
  background-color: #c8c1b7;
  border-radius: 18px;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 100%;
}

.quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.quote-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  border-left: 4px solid #1f1f1f;
}

.form-section {
  background: #f0ede8;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.form-note {
  flex: 1 1 240px;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #b8b3aa;
  font-size: 1rem;
}

button {
  cursor: pointer;
  border: none;
  background: #1f1f1f;
  color: #f6f4f1;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
}

.cta-band {
  background: #1f1f1f;
  color: #f6f4f1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 24px;
  padding: 2rem;
}

.cta-band a {
  background: #f6f4f1;
  color: #1f1f1f;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.site-footer {
  padding: 3rem 2rem;
  background: #111111;
  color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d8d1c8;
}

.sticky-cta {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: #1f1f1f;
  color: #f6f4f1;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.sticky-cta a {
  color: inherit;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f6f4f1;
  color: #1f1f1f;
  border-top: 2px solid #1f1f1f;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.cookie-actions button {
  background: #1f1f1f;
  color: #f6f4f1;
}

.cookie-actions .secondary {
  background: #d8d1c8;
  color: #1f1f1f;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 3.5rem 2rem;
  background: #f0ede8;
}

.content-section {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.content-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.2rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-block {
  flex: 1 1 240px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.about-hero {
  background: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
}

.services-hero {
  background: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
}

.contact-hero {
  background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
}

.legal-hero {
  background: url("https://images.unsplash.com/photo-1508921912186-1d1a45ebb3c1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
}

.thanks-hero {
  background: url("https://images.unsplash.com/photo-1482062364825-616fd23b8fc1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1,
.legal-hero h1,
.thanks-hero h1 {
  max-width: 600px;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.offset-panel {
  flex: 1 1 260px;
  background: #fff;
  padding: 1.8rem;
  border-radius: 18px;
  margin-top: 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.offset-panel.highlight {
  margin-top: -1.5rem;
  background: #1f1f1f;
  color: #f6f4f1;
}

.image-strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.image-strip .strip-item {
  flex: 1 1 200px;
  background-color: #c8c1b7;
  border-radius: 14px;
  overflow: hidden;
  height: 160px;
}

.strip-item img {
  width: 100%;
  height: 100%;
}
