*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  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;
  background: #f7f4ef;
}

.brand {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 60px;
  background: #f0e7db;
}

.hero-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin: 0;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  font-size: 0.95rem;
  background: #1d1d1f;
  color: #fff;
  transition: transform 0.2s ease;
}

.button.outline {
  background: transparent;
  color: #1d1d1f;
}

.button:hover {
  transform: translateY(-2px);
}

.magazine-section {
  padding: 56px 6vw;
  background: #f7f4ef;
  position: relative;
}

.magazine-section.alt {
  background: #ffffff;
}

.magazine-section.deep {
  background: #151515;
  color: #f7f4ef;
}

.magazine-section::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 6vw;
  width: 80px;
  height: 6px;
  background: #1d1d1f;
}

.magazine-section.deep::before {
  background: #f7f4ef;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  opacity: 0.7;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.pull-quote {
  border-left: 3px solid #1d1d1f;
  padding-left: 16px;
  font-size: 1.1rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: #1f1f1f;
  color: #f7f4ef;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  border: 1px solid #d9d1c5;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-price {
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
}

.service-button.active {
  background: #1d1d1f;
  color: #fff;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c0b5;
  font-size: 0.95rem;
}

.footer {
  padding: 40px 6vw;
  background: #0d0d0d;
  color: #f7f4ef;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #ff5f2e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  background: transparent;
  cursor: pointer;
  font-size: 0.85rem;
}

.cookie-button.primary {
  background: #1d1d1f;
  color: #fff;
}

.hidden {
  display: none;
}

@media (min-width: 900px) {
  .hero-columns {
    flex-direction: row;
    align-items: center;
  }

  .columns {
    flex-direction: row;
  }

  .card-row,
  .service-grid,
  .footer-columns {
    flex-direction: row;
  }

  .card,
  .service-card,
  .footer-block {
    flex: 1;
  }
}
