/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding: 40px 0;
}

.accent-bg {
  background: #0f2b2c;
  color: #f7f4ef;
}

.paper-bg {
  background: #fff8f0;
}

.divider {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

/* Navigation */
.mag-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.mag-nav .logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mag-nav .tagline {
  font-size: 0.95rem;
  max-width: 260px;
}

.mag-nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.mag-nav .nav-cta {
  padding: 10px 18px;
  border: 1px solid #1b1b1b;
  border-radius: 999px;
  font-weight: 600;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0;
}

.hero .hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .hero-card {
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero .hero-image {
  border-radius: 24px;
  overflow: hidden;
}

/* Magazine columns */
.mag-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mag-columns .column {
  flex: 1;
}

.mag-columns .column.highlight {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
}

.pull-quote {
  font-size: 1.4rem;
  font-weight: 600;
}

.inline-cta {
  border-bottom: 2px solid #1b1b1b;
  font-weight: 600;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
}

/* Cards */
.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #0f2b2c;
  color: #f7f4ef;
  font-weight: 600;
}

.cta-outline {
  border: 1px solid #0f2b2c;
  color: #0f2b2c;
  background: transparent;
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

/* Form */
.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
}

button[type="submit"] {
  border: none;
  cursor: pointer;
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1b1b1b;
  color: #f7f4ef;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta a {
  background: #f7f4ef;
  color: #1b1b1b;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1b1b1b;
  color: #f7f4ef;
}

/* Media */
@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: flex-end;
  }

  .hero .hero-grid {
    flex-direction: row;
  }

  .hero .hero-card,
  .hero .hero-image {
    flex: 1;
  }

  .mag-columns {
    flex-direction: row;
    align-items: stretch;
  }

  .card-row {
    flex-direction: row;
  }

  .timeline {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
