* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background: #faf8f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3b3b3b;
}

.hero {
  position: relative;
  padding: 72px 0 120px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(245, 234, 221, 0.9), rgba(255, 255, 255, 0.1));
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  flex: 1.05;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 18px;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-media {
  flex: 0.95;
  position: relative;
}

.hero-media img {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(40, 27, 15, 0.2);
}

.hero-tag {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #1e1e1e;
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1e1e1e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn.light {
  background: #fff;
  color: #1e1e1e;
  border: 1px solid #d9cbb6;
}

.btn.inline {
  background: transparent;
  color: #1e1e1e;
  border-bottom: 2px solid #c69f73;
  border-radius: 0;
  padding: 4px 0;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section.alt {
  background: #f1ebe3;
}

.section.dark {
  background: #1e1e1e;
  color: #f7f3ee;
}

.offset-block {
  display: flex;
  gap: 36px;
  align-items: center;
}

.offset-block.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1;
  padding: 20px;
  margin-left: 24px;
}

.offset-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 12px;
}

.offset-card {
  flex: 1;
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(40, 27, 15, 0.12);
  transform: translateY(-18px);
}

.offset-card img {
  border-radius: 18px;
  margin-bottom: 16px;
}

.badge-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge {
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.4px;
  border: 1px solid #e2d6c5;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c69f73;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.floating-gallery {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.floating-gallery img {
  width: 180px;
  border-radius: 16px;
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(40, 27, 15, 0.18);
}

.quote-strip {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  color: #1e1e1e;
  padding: 28px;
  border-radius: 24px;
  transform: translateX(24px);
}

.quote {
  font-style: italic;
  font-size: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(40, 27, 15, 0.1);
}

.service-card h3 {
  margin: 12px 0 8px;
}

.price {
  font-weight: 700;
  color: #b06c2f;
  font-size: 18px;
}

.form-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.form-card {
  flex: 1 1 320px;
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(40, 27, 15, 0.1);
}

.form-card label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dbc7b0;
  margin-bottom: 16px;
  font-size: 15px;
}

.form-note {
  flex: 1;
  padding: 24px;
  background: #1e1e1e;
  color: #f7f3ee;
  border-radius: 24px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #c69f73;
  color: #1e1e1e;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(40, 27, 15, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(40, 27, 15, 0.2);
  z-index: 30;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer {
  padding: 60px 0 30px;
  background: #efe7dc;
}

.footer-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
}

.subtle {
  color: #6a5d52;
  font-size: 14px;
}

.page-title {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 12px;
}

.content-block {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.content-panel {
  flex: 1 1 280px;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(40, 27, 15, 0.1);
}

.contact-card {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(40, 27, 15, 0.1);
  margin-top: 20px;
}

.legal-text {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
}

@media (max-width: 900px) {
  .hero-inner,
  .offset-block {
    flex-direction: column;
  }

  .offset-text {
    margin-left: 0;
  }

  .quote-strip {
    transform: none;
  }
}
