* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f23;
  background: #f6f4f0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  background: #f1ede7;
  border-bottom: 1px solid #d9d5cf;
}

.nav-group {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a {
  text-decoration: none;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ad-label {
  font-size: 11px;
  background: #1b1f23;
  color: #f9f7f3;
  padding: 6px 10px;
  border-radius: 999px;
}

.main {
  flex: 1;
}

.hero {
  display: flex;
  gap: 30px;
  padding: 40px 8% 20px;
  align-items: stretch;
}

.hero-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  margin: 0;
  font-size: 42px;
}

.hero-panel {
  flex: 1;
  background: #e0e6ea;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(27, 31, 35, 0.2), rgba(27, 31, 35, 0.75));
}

.hero-panel .overlay-text {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #ffffff;
  font-size: 14px;
  max-width: 80%;
}

.section {
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.split {
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.section-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(27, 31, 35, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-card.highlight {
  background: #1b1f23;
  color: #f9f7f3;
}

.section-card h2,
.section-card h3,
.section-card p {
  margin: 0;
}

.flow-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.flow-columns .column {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background-color: #e0e6ea;
  border-radius: 14px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-sand {
  background-color: #e4e1d9;
}

.bg-mist {
  background-color: #dbe4ea;
}

.bg-forest {
  background-color: #dfe6e2;
}

.bg-lilac {
  background-color: #e6e4ef;
}

.bg-cream {
  background-color: #ece3da;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 18px rgba(27, 31, 35, 0.08);
}

.service-card h3 {
  margin: 0;
}

.service-card .price {
  font-weight: 700;
  font-size: 18px;
}

.btn {
  background: #1b1f23;
  color: #f9f7f3;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn.light {
  background: #f9f7f3;
  color: #1b1f23;
  border: 1px solid #1b1f23;
}

.btn.link {
  background: transparent;
  color: #1b1f23;
  border: 1px solid #1b1f23;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-block label {
  font-weight: 600;
}

.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c8c8;
  font-size: 14px;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-grid .field {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  background: #1b1f23;
  color: #f9f7f3;
  padding: 30px 8%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  color: #f9f7f3;
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #f9f7f3;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(27, 31, 35, 0.2);
  padding: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta span {
  font-size: 12px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(27, 31, 35, 0.2);
  width: min(360px, 90%);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.magazine-band {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.magazine-band .band-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

.secondary-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  text-transform: uppercase;
}

.note {
  font-size: 13px;
  color: #596068;
}

.wide-highlight {
  background: #f1ede7;
  border-left: 4px solid #1b1f23;
  padding: 18px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .section.split {
    flex-direction: column;
  }
}
