* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2328;
  --muted: #5a646f;
  --accent: #c96b3c;
  --accent-dark: #a0542f;
  --cream: #f6f2ee;
  --sand: #efe5dc;
  --slate: #2e353f;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #faf8f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8%;
  background: #fff;
  border-bottom: 1px solid #eee4da;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.brand {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 64px 8%;
  position: relative;
}

.section.sand {
  background: var(--sand);
}

.section.cream {
  background: var(--cream);
}

.section.dark {
  background: var(--slate);
  color: #f5f5f5;
}

.section img.overlay {
  position: absolute;
  right: -40px;
  top: -20px;
  width: 160px;
  opacity: 0.4;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
}

.asymmetric-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asymmetric-row.reverse {
  flex-direction: column-reverse;
}

.asymmetric-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(34, 34, 34, 0.08);
}

.accent-block {
  background: var(--accent);
  color: #fff;
  padding: 32px;
  border-radius: 18px;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.dark {
  background: #1f1f1f;
}

.link-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.split-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-panel {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  transform: translateX(0);
}

.offset-panel.highlight {
  background: #fff4ed;
  border: 1px solid #f2d8c8;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #efe5dc;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.card img {
  width: 64px;
  height: 64px;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stacked-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stacked-list li {
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.form-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(34, 34, 34, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8cfc6;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 36px 8%;
  background: #1c1f23;
  color: #f2f2f2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f2f2f2;
  opacity: 0.8;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2328;
  color: #fff;
  padding: 16px 8%;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #f1b79a;
  color: #1c1f23;
}

.cookie-actions .reject {
  background: transparent;
  border: 1px solid #f1b79a;
  color: #f1b79a;
}

@media (min-width: 860px) {
  .asymmetric-row,
  .split-visual,
  .two-column {
    flex-direction: row;
    align-items: center;
  }

  .asymmetric-row.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .offset-panel {
    transform: translateX(40px);
  }

  .offset-panel.left {
    transform: translateX(-40px);
  }
}
