* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2933;
  background-color: #f5f3f0;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px 6vw 10px;
  gap: 16px;
  background: #efeae3;
  border-bottom: 1px solid #d8d2c9;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #4b5563;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f9f7f3;
  border: 1px solid #e2ded7;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding: 60px 6vw 40px;
  background-color: #f6f0ea;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.hero-content {
  flex: 1.1;
  gap: 18px;
}

.hero-content h1 {
  font-size: 40px;
  margin: 0;
}

.hero-content p {
  font-size: 16px;
  max-width: 520px;
}

.hero-panel {
  flex: 0.9;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(31, 41, 51, 0.12);
  align-self: flex-start;
  transform: translateY(20px);
}

.hero-panel img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.hero-panel .panel-body {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f2933;
  color: #fef9f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.button.secondary {
  background: #f0d9b5;
  color: #1f2933;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.asym {
  background-color: #ffffff;
}

.split-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #fdfbf7;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(31, 41, 51, 0.08);
  transform: translateY(-20px);
}

.image-frame {
  background-color: #e6e0d8;
  border-radius: 18px;
  overflow: hidden;
  flex: 1;
  min-width: 260px;
}

.image-frame img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat {
  background: #efeae3;
  padding: 16px;
  border-radius: 16px;
  min-width: 180px;
  flex: 1;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #f9f6f1;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.service-card img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
}

.service-info {
  flex: 1;
}

.price {
  font-weight: 700;
  color: #243b53;
}

.layered-section {
  background-color: #f1e7dc;
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.backdrop-section {
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f2933;
}

.backdrop-section .offset-card {
  background: rgba(255, 255, 255, 0.92);
}

.layered-section::after {
  content: "";
  position: absolute;
  right: 8vw;
  top: 30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.form-wrap {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 20px 32px rgba(31, 41, 51, 0.1);
  max-width: 560px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
}

select,
input {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9d3cb;
  font-size: 14px;
}

.inline-link {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #1f2933;
  color: #fef9f4;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 50;
}

.footer {
  margin-top: auto;
  background: #efeae3;
  padding: 24px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-note {
  color: #4b5563;
}

.page-hero {
  padding: 40px 6vw;
  background-color: #f4ede5;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.page-hero img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

.simple-section {
  padding: 30px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  flex: 1;
  min-width: 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 420px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(31, 41, 51, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #1f2933;
  color: #fef9f4;
}

.cookie-reject {
  background: #e2d5c5;
  color: #1f2933;
}

.spacer {
  height: 12px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-panel {
    transform: translateY(0);
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
