* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e2732;
  background-color: #f7f5f0;
  line-height: 1.6;
}

a {
  color: #1b4d63;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  background-color: #efe7dd;
  color: #4b3f35;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding-bottom: 80px;
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  min-height: 70vh;
  background-color: #1b2330;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9f7f2;
  position: relative;
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 40, 0.55);
}

.hero-content {
  position: relative;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 2.6rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  border: none;
  background-color: #1b4d63;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
}

.button.secondary {
  background-color: #e8d6c3;
  color: #3b2f27;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-card {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(30, 39, 50, 0.08);
  position: relative;
  transform: translateY(12px);
}

.offset-block {
  margin-left: clamp(0px, 6vw, 80px);
  background-color: #f1e8dd;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  flex: 1 1 280px;
  background-color: #d9d1c7;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.backdrop {
  background-color: #efe7dd;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #1e2732;
}

.backdrop .asym-card {
  background-color: rgba(255, 255, 255, 0.92);
}

.backdrop .image-frame {
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 24px rgba(30, 39, 50, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 600;
  color: #1b4d63;
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  padding: 18px 22px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 20px rgba(30, 39, 50, 0.06);
}

.form-wrap {
  background-color: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 30px rgba(30, 39, 50, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7c7c7;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  background-color: #3b2f27;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
}

.legal {
  background-color: #1e2732;
  color: #e8e4dd;
  padding: 30px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.legal a {
  color: #f7e6d0;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 14px 22px rgba(30, 39, 50, 0.16);
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.subtle {
  color: #5a636d;
}

.simple-hero {
  padding: 60px 6vw 30px;
  background-color: #efe7dd;
}

.simple-hero h1 {
  margin: 0;
}

.content-block {
  max-width: 820px;
}
