* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  background: #1c1c1c;
  color: #f7f4ef;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 70vh;
  background: #0f1d24;
  color: #f7f4ef;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 0 0 20px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 540px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: #f6c453;
  color: #1c1c1c;
}

.button.secondary {
  background: transparent;
  border-color: #1c1c1c;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: #ffffff;
}

.section.texture {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1444418776041-9c7e33cc5a9c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4ef;
}

.section.texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 29, 36, 0.75);
}

.section.texture .container {
  position: relative;
}

.section.texture .note {
  color: #f7f4ef;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-20px);
}

.img-frame {
  background: #d7d2c8;
  padding: 12px;
}

.img-frame img {
  width: 100%;
  height: 320px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #fefaf5;
  padding: 20px;
  border: 1px solid #e5e0d7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  padding: 8px 14px;
  background: #1c1c1c;
  color: #f7f4ef;
  border-radius: 999px;
  font-size: 0.85rem;
}

.testimonial {
  background: #1c1c1c;
  color: #f7f4ef;
  padding: 22px;
  flex: 1 1 220px;
}

.form-wrap {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #c9c3b8;
  font-size: 1rem;
}

.form-status {
  font-size: 0.9rem;
  color: #a34b2b;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 24px;
  background: #1c1c1c;
  color: #f7f4ef;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

footer {
  margin-top: auto;
  padding: 40px 0 60px;
  background: #0f1d24;
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.banner-hidden {
  display: none;
}

.page-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.compact-section {
  padding: 50px 0;
}

.note {
  font-size: 0.95rem;
  color: #3f3f3f;
}

@media (max-width: 860px) {
  .hero-content {
    padding: 60px 0;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
