* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1d1c1b;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 16px;
  gap: 24px;
}

.logo {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.split-nav {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.split-nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.split-nav a:hover {
  border-color: #1d1c1b;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 32px 6vw 48px;
  gap: 24px;
}

.hero .hero-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  margin: 0;
  line-height: 1.1;
}

.hero p {
  margin: 0;
  max-width: 640px;
}

.hero .hero-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.magazine-section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.magazine-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.magazine-columns.two {
  display: flex;
  flex-direction: column;
}

.magazine-columns.three {
  display: flex;
  flex-direction: column;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #6b6154;
}

.callout {
  background: #fff3db;
  padding: 24px;
  border-radius: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ddd2c3;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ece5da;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.highlight {
  background: #1d1c1b;
  color: #f7f4ef;
  padding: 32px;
  border-radius: 18px;
}

.magazine-image {
  border-radius: 16px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 20px;
  background: #1d1c1b;
  color: #f7f4ef;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1d1c1b;
  border: 1px solid #1d1c1b;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #ece5da;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6ba;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: #ff6b4a;
  color: #1d1c1b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 30;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ddd2c3;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.info-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid #ddd2c3;
}

@media (min-width: 860px) {
  .hero .hero-columns,
  .magazine-columns.two,
  .magazine-columns.three,
  .info-table {
    flex-direction: row;
  }

  .hero .hero-columns > * {
    flex: 1;
  }

  .magazine-columns.two > * {
    flex: 1;
  }

  .magazine-columns.three > * {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }
}
