*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f6f1ec;
  --dark: #1e1a1a;
  --accent: #b35b6c;
  --accent-dark: #8f3f4d;
  --muted: #7a6e69;
  --light: #fffaf6;
  --shadow: 0 18px 40px rgba(26, 20, 18, 0.12);
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw 12px;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 8vw 60px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.hero-title {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--light);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  bottom: -12px;
  left: 18px;
  background: var(--light);
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 13px;
  box-shadow: var(--shadow);
  max-width: 200px;
}

.section {
  padding: 56px 8vw;
}

.section-dark {
  background: var(--dark);
  color: var(--light);
}

.section-light {
  background: var(--light);
}

.section-title {
  font-size: 30px;
  margin: 0 0 18px;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 26px;
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-card {
  background: var(--light);
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.offset-card.dark {
  background: #2a2223;
  color: var(--light);
}

.offset-card p {
  margin: 12px 0 0;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  background: var(--light);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
}

.service-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  align-self: flex-start;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-item img {
  border-radius: 20px;
}

.testimonial-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--light);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-panel label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e2d6d0;
  font-size: 15px;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 14px;
  z-index: 10;
}

.footer {
  padding: 36px 8vw 50px;
  background: #151112;
  color: var(--light);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--light);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(179, 91, 108, 0.15);
  color: var(--accent-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.callout {
  background: var(--accent);
  color: var(--light);
  padding: 26px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.page-header {
  padding: 30px 8vw 10px;
}

.page-header h1 {
  margin: 0;
  font-size: 36px;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 8vw 40px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list article {
  background: var(--light);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list .service-price {
  align-self: flex-start;
}

.simple-card {
  background: var(--light);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .hero-wrap {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .offset-row {
    flex-direction: row;
    align-items: stretch;
  }

  .offset-card {
    flex: 1;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .gallery-row {
    flex-direction: row;
  }

  .gallery-item {
    flex: 1;
  }

  .testimonial-wrap {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .form-panel {
    max-width: 520px;
  }

  .content-block {
    max-width: 880px;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-list article {
    flex: 1 1 calc(50% - 16px);
  }
}
