* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f3ef;
  --ink: #1b1b1f;
  --muted: #5f5e5a;
  --accent: #6f2f4f;
  --accent-2: #2f5a6f;
  --light: #ffffff;
  --shadow: 0 18px 40px rgba(15, 16, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 12px;
  gap: 24px;
}

.top-nav .brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.top-nav .links {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
}

.top-nav .links a {
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.top-nav .links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 6vw 64px;
  background: url("../images/hero-wave.svg") right bottom / cover no-repeat;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: var(--accent-2);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--light);
}

.section.dark {
  background: #1c1c22;
  color: #f8f4ef;
}

.section-title {
  font-size: 1.9rem;
  margin: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  flex: 1;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  align-self: flex-start;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #efe6df;
}

.stat strong {
  font-size: 1.4rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--light);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 14px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: #f0edea;
}

.service .price {
  font-weight: 700;
}

.testimonial {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #f3edf7;
}

.form-wrap {
  background: var(--light);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1c8c0;
  font-size: 1rem;
  font-family: inherit;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.footer {
  padding: 32px 6vw 48px;
  background: #141417;
  color: #e7e1db;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  color: #1b1b1f;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-text,
  .hero .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .story-grid,
  .stat-row,
  .card-row,
  .service-list {
    flex-direction: row;
  }

  .card,
  .service,
  .stat {
    flex: 1;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
