* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #b24b2a;
  --accent-dark: #8f3b20;
  --sand: #f5efe8;
  --mist: #f1f4f7;
  --ink: #0f1d24;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background: var(--ink);
  color: #f7f2ed;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  color: #f7f2ed;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.sidebar .cta-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #f7f2ed;
  font-weight: 600;
  background: transparent;
  color: #f7f2ed;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 72px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section--sand {
  background: var(--sand);
}

.section--mist {
  background: var(--mist);
}

.section--ink {
  background: var(--ink);
  color: #f7f2ed;
}

.section--compact {
  padding: 48px 8vw;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.section--ink .eyebrow {
  color: #d9c6bb;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button--ghost {
  background: transparent;
  color: var(--accent);
}

.button--light {
  background: #f7f2ed;
  color: var(--ink);
  border-color: #f7f2ed;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split > div,
.split > img {
  flex: 1 1 260px;
}

.tag-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d9d1ca;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(15, 29, 36, 0.08);
}

.card img {
  border-radius: 14px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.6;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-shell label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d2cc;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(15, 29, 36, 0.2);
  z-index: 20;
}

.footer {
  padding: 32px 8vw 48px;
  background: #0c1419;
  color: #e8dfd7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 18px 38px rgba(15, 29, 36, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d7d2cc;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.page-title {
  font-size: 2.2rem;
  margin: 0;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--mist);
  padding: 20px;
  border-radius: 18px;
}

@media (max-width: 860px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar .cta-link {
    margin-top: 0;
  }

  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
