:root {
  color-scheme: light;
  --bg: #f6f2ee;
  --ink: #1e1a17;
  --muted: #5b524c;
  --accent: #e86a3f;
  --accent-dark: #b94a24;
  --soft: #fff6ef;
  --line: #d9cfc7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.top-nav {
  padding: 1.5rem 0;
}

.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: var(--accent);
}

.hero {
  padding: 2rem 0 4rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.split-media {
  flex: 1 1 360px;
  position: relative;
}

.split-media img {
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(30, 26, 23, 0.18);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: var(--soft);
}

.section.layered {
  position: relative;
}

.section.layered::before {
  content: "";
  position: absolute;
  inset: 8% 12% auto 12%;
  height: 65%;
  background: #fff;
  border-radius: 32px;
  z-index: 0;
}

.section.layered .container {
  position: relative;
  z-index: 1;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.inline-link {
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--line);
}

.card img {
  border-radius: 16px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat {
  flex: 1 1 160px;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--ink);
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.6rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.service-row + .service-row {
  margin-top: 1.6rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.side-cta {
  align-self: flex-start;
  position: sticky;
  top: 1.5rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--line);
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(30, 26, 23, 0.2);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.cookie-actions .button {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
}

.sticky-link {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(30, 26, 23, 0.2);
  z-index: 5;
}

@media (max-width: 900px) {
  .sticky-link {
    position: static;
    display: inline-flex;
    margin: 1.2rem 0 0;
  }

  .side-cta {
    position: static;
  }
}

@media (max-width: 720px) {
  .top-nav .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }
}
