* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2421;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw 8px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.brand {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
}

.container {
  width: min(1200px, 88vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
  position: relative;
}

.section.offset {
  padding: 92px 0 64px;
}

.section-alt {
  background: #eae1d6;
}

.section-dark {
  background: #1f2421;
  color: #f6f3ef;
}

.section-border {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.asym-row.two {
  gap: 48px;
}

.asym-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-card {
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  margin-left: 8vw;
}

.offset-card.small {
  margin-left: 4vw;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #8a7f74;
}

.hero {
  padding: 40px 0 90px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.button {
  padding: 12px 22px;
  border-radius: 40px;
  border: 1px solid #1f2421;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.button.filled {
  background: #1f2421;
  color: #f6f3ef;
}

.button.light {
  border-color: #f6f3ef;
  color: #f6f3ef;
}

.floating-stamp {
  position: absolute;
  right: 8vw;
  top: -24px;
  background: #b98c5f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.split-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 20px;
  border-left: 4px solid #b98c5f;
}

.service-price {
  font-weight: 700;
  font-size: 18px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.cta-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #1f2421;
  color: #f6f3ef;
  padding: 24px;
}

.form-wrapper {
  background: #fff;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d2c8bd;
  background: #fdfbf8;
  font-size: 16px;
}

.form textarea {
  min-height: 110px;
}

.form button {
  border: none;
  cursor: pointer;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 48px;
  background: #eae1d6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #b98c5f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #1f2421;
  color: #f6f3ef;
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #b98c5f;
  color: #fff;
}

.cookie-actions .reject {
  background: #f6f3ef;
  color: #1f2421;
}

.hero-image {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack .overlay {
  margin-left: 8vw;
  margin-top: -30px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hours {
  background: #fff;
  padding: 18px;
}

@media (min-width: 900px) {
  .asym-row,
  .asym-row.reverse {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
    align-items: flex-start;
  }
}
