* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1a17;
  background: #fbf7f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-bottom: 120px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand span {
  font-size: 14px;
  text-transform: uppercase;
  color: #7c6c60;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
  font-size: 14px;
}

.nav a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: #1f1a17;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 0 6vw;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 24px 32px 0;
}

.hero-copy h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f1a17;
  background: #1f1a17;
  color: #fbf7f3;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.button.secondary {
  background: transparent;
  color: #1f1a17;
}

.hero-image {
  flex: 1 1 320px;
  position: relative;
}

.hero-image img {
  border-radius: 32px 8px 32px 8px;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  right: -12px;
  bottom: 18px;
  background: #efe6dc;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 12px;
  max-width: 180px;
}

.section {
  padding: 0 6vw;
}

.asymmetric-block {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.asymmetric-block.reverse {
  flex-direction: row-reverse;
}

.block-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block-copy h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.block-image {
  flex: 1 1 320px;
  position: relative;
}

.block-image img {
  border-radius: 20px;
}

.floating-card {
  position: absolute;
  left: -18px;
  bottom: 18px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat-card {
  flex: 1 1 180px;
  background: #f4ede6;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-card span {
  font-size: 28px;
  font-weight: 700;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 22px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-card img {
  border-radius: 16px;
  height: 150px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #8f2b12;
}

.cta-strip {
  background: #1f1a17;
  color: #fbf7f3;
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-row img {
  flex: 1 1 180px;
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote-card {
  flex: 1 1 240px;
  background: #fff7f0;
  padding: 20px;
  border-radius: 20px;
  font-size: 14px;
}

.highlight {
  background: #efe0d4;
  padding: 32px;
  border-radius: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.highlight img {
  flex: 1 1 260px;
  border-radius: 22px;
}

.highlight-copy {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap {
  background: #ffffff;
  padding: 32px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #7c6c60;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6c8bc;
  font-family: inherit;
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1f1a17;
  background: #fbf7f3;
  font-size: 13px;
}

.service-pill.active {
  background: #1f1a17;
  color: #fbf7f3;
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  border-top: 1px solid #e1d5c9;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background: #8f2b12;
  color: #fbf7f3;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid #1f1a17;
  background: transparent;
  font-size: 12px;
}

.cookie-actions button.accept {
  background: #1f1a17;
  color: #fbf7f3;
}

.note {
  font-size: 13px;
  color: #7c6c60;
}

.contact-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
}

@media (max-width: 720px) {
  .header {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
