*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f1f22;
  background: #f6f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f6f3ee;
  border-bottom: 1px solid #e2ded6;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  border-color: #1f1f22;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(12, 12, 12, 0.08);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f1f22;
  color: #ffffff;
  font-weight: 600;
}

.section {
  padding: 48px 6vw;
}

.section-alt {
  background: #efeae2;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.magazine-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.columns .card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e2ded6;
}

.highlight {
  background: #1f1f22;
  color: #ffffff;
  padding: 24px;
  border-radius: 20px;
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

.media-row img {
  border-radius: 18px;
  height: 260px;
  object-fit: cover;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list strong {
  display: inline-block;
  min-width: 120px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2ded6;
}

.service-card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.service-price {
  font-weight: 700;
  color: #0f5132;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-outline {
  border: 1px solid #1f1f22;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cta-light {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-left: 4px solid #1f1f22;
  background: #ffffff;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e2ded6;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc8be;
  font-size: 1rem;
}

button {
  border: none;
  cursor: pointer;
}

.submit-btn {
  background: #1f1f22;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
}

.form-status {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #6b1f1f;
}

.footer {
  margin-top: auto;
  padding: 36px 6vw;
  background: #1f1f22;
  color: #f6f3ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2ded6;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(12, 12, 12, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 80px;
  background: #0f5132;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(12, 12, 12, 0.16);
  z-index: 25;
}

.subtle {
  color: #5a5a60;
}

.split-band {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2ded6;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.contact-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e2ded6;
}

@media (min-width: 820px) {
  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-image img {
    height: 420px;
  }

  .magazine-columns {
    flex-direction: row;
  }

  .magazine-columns > div {
    flex: 1;
  }

  .columns {
    flex-direction: row;
  }

  .columns .card {
    flex: 1;
  }

  .media-row {
    flex-direction: row;
  }

  .media-row img {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(33% - 16px);
  }

  .split-band {
    flex-direction: row;
  }
}
