* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f1ea;
  --ink: #1f1a17;
  --muted: #6f625a;
  --accent: #c1462e;
  --accent-dark: #8b2c1d;
  --paper: #ffffff;
  --sand: #efe3d5;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
[hidden] {
  display: none !important;
}
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 1.5rem 5vw 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.topnav a {
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.topnav a:hover,
.topnav a:focus {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 5vw 3rem;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.1;
}

.hero-text p {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 3.5rem 5vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section--paper {
  background: var(--paper);
}

.section--sand {
  background: var(--sand);
}

.section--dark {
  background: #1f1a17;
  color: #f4eee7;
}

.section--texture {
  background-image: url("texture.svg");
  background-size: cover;
  background-position: center;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--muted);
}

.mag-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mag-columns .column {
  flex: 1;
}

.pull-quote {
  font-size: 1.6rem;
  font-style: italic;
  color: var(--accent-dark);
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--paper);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 1rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  display: flex;
  gap: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed rgba(31, 26, 23, 0.2);
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--paper);
  border-radius: 1.2rem;
}

.service-row .price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.2rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  padding: 1.2rem 1.4rem;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--paper);
  padding: 2rem;
  border-radius: 1.5rem;
}

.form-card {
  background: var(--paper);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(31, 26, 23, 0.2);
  font-size: 1rem;
  background: #fff;
}

footer {
  padding: 2rem 5vw 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #171310;
  color: #f4eee7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  max-width: 320px;
  background: #fff;
  color: #201c19;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-actions button {
  flex: 1;
  border-radius: 0.8rem;
  border: none;
  padding: 0.6rem 0.8rem;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #e1d6c9;
  color: #362c26;
}

.page-title {
  padding: 2.5rem 5vw 1.5rem;
}

.page-title h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 900px) {
  .topbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-text,
  .hero-media {
    flex: 1;
  }

  .mag-columns {
    flex-direction: row;
  }

  .mag-columns .column:nth-child(2) {
    flex: 1.2;
  }

  .feature-cards {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-row {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .two-col {
    flex-direction: row;
  }

  .timeline-item {
    align-items: center;
  }
}
