* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --soft: #f5f1ed;
  --accent: #8c5f3f;
  --accent-dark: #6f472e;
  --highlight: #d6c1a5;
  --line: #e3dad1;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fcfaf8;
}

img {
  max-width: 100%;
  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 6vw;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 48px 6vw 36px;
  gap: 32px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card h1 {
  font-size: clamp(2.2rem, 2vw + 1.6rem, 3.4rem);
  margin: 0;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.hero-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17, 17, 17, 0.4), rgba(17, 17, 17, 0.1));
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw;
  background: var(--white);
}

.split-section:nth-of-type(even) {
  background: var(--soft);
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-text h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 1.4vw + 1.2rem, 2.4rem);
}

.split-text p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.split-highlight {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--line);
}

.split-highlight span {
  font-weight: 600;
}

.split-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(28, 28, 28, 0.12);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--highlight);
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: var(--white);
}

.form-section {
  background: #fdf7f1;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.form-shell label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-shell textarea {
  min-height: 110px;
  resize: vertical;
}

.form-shell button {
  align-self: flex-start;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 24px 6vw 32px;
  padding: 14px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.sticky-cta a {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  border-top: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.page-header {
  padding: 36px 6vw;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(2rem, 1.5vw + 1.4rem, 2.8rem);
}

.page-content {
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  width: min(92vw, 520px);
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(21, 21, 21, 0.18);
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.hidden {
  display: none;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card,
  .hero-media {
    flex: 1;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(33% - 20px);
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}
