* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c1b1a;
  background-color: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
  gap: 16px;
}

.nav-brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-disclosure {
  font-size: 0.82rem;
  background: #efe6dc;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 48px 0 64px;
}

.hero-content {
  flex: 1 1 320px;
  padding: 18px 12px 18px 0;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero-card {
  flex: 1 1 320px;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #d9d1c6;
  position: relative;
  margin-top: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  pointer-events: none;
}

.section {
  padding: 54px 0;
  position: relative;
}

.section-dark {
  background: #1f1d1a;
  color: #f8f3ee;
}

.section-soft {
  background: #efe6dc;
}

.section-angled {
  background: #fef9f2;
}

.asym-block {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym-block.reverse {
  flex-direction: row-reverse;
}

.offset-panel {
  flex: 1 1 320px;
  padding: 28px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin-left: 48px;
}

.offset-panel.tight {
  margin-left: 0;
  margin-right: 48px;
}

.image-panel {
  flex: 1 1 320px;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #cfc6bb;
  position: relative;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.badge {
  background: #f4ece2;
  color: #4a3f32;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .card-image {
  height: 160px;
  background-color: #d6cec3;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2f2a24;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f1d1a;
  color: #fffdf8;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: inherit;
  border: 1px solid #1f1d1a;
}

.btn.light {
  background: #fff7ee;
  color: #1f1d1a;
  border: 1px solid #fff7ee;
}

.btn:hover,
.btn:focus,
.nav-links a:hover,
.nav-links a:focus,
.text-link:hover,
.text-link:focus {
  opacity: 0.82;
}

.text-link {
  text-decoration: underline;
  font-weight: 600;
}

.quote-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.quote-card {
  flex: 1 1 280px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

select,
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d3cdc4;
  font-size: 0.95rem;
  background: #fffaf4;
}

textarea {
  min-height: 110px;
}

.footer {
  padding: 48px 0 60px;
  font-size: 0.9rem;
  color: #53483d;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer a {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: #1f1d1a;
  color: #fffefc;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover,
.sticky-cta:focus {
  opacity: 0.85;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff7ee;
  color: #2a2520;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.page-hero {
  padding: 52px 0 36px;
}

.page-hero .hero-title {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.image-strip .image-panel {
  flex: 1 1 200px;
  min-height: 180px;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1493809842364-78817add7ffb?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1772967306119-b70168ab64a6?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwyNHx8RWxpdGUlMjByZW50YWwlMjBob21lcyUyMGluJTIwTGl2ZXJwb29sJTJDJTIwY3VyYXRlZCUyMHdpdGglMjBkaXNjcmV0aW9uJTIwYW5kJTIwbG9jYWwlMjBpbnNpZ2h0LnxlbnwwfDB8fHwxNzgzOTQ3NjE4fDA&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1451976426598-a7593bd6d0b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: rgba(31, 29, 26, 0.45);
  color: #fffefc;
  padding: 60px 0;
}

.hero-overlay .container {
  max-width: 900px;
}

@media (max-width: 900px) {
  .offset-panel,
  .offset-panel.tight {
    margin: 0;
  }

  .hero {
    padding-top: 24px;
  }

  .sticky-cta,
  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
