* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1c1c1c;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

header {
  border-bottom: 1px solid #ded9d4;
  background: #faf7f3;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 7%;
  gap: 24px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #1c1c1c;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 72px 7% 40px;
  gap: 28px;
}

.hero-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.hero-title {
  flex: 1 1 320px;
  font-size: 2.7rem;
  line-height: 1.2;
}

.hero-side {
  flex: 1 1 260px;
  background: #111111;
  color: #f6f3ef;
  padding: 24px;
  border-radius: 18px;
}

.hero-image {
  flex: 1 1 300px;
  border-radius: 20px;
  overflow: hidden;
  align-self: stretch;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1c1c1c;
  color: #f6f3ef;
  font-weight: 600;
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  font-weight: 600;
}

.section {
  padding: 64px 7%;
}

.section.alt {
  background: #faf7f3;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.split-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.panel {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(10, 10, 10, 0.08);
}

.panel.dark {
  background: #1c1c1c;
  color: #f6f3ef;
}

.panel img {
  border-radius: 12px;
  margin-bottom: 18px;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

.magazine-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.mag-col {
  flex: 1 1 280px;
  background: #fff;
  padding: 24px;
  border-radius: 14px;
}

.mag-col.wide {
  flex: 2 1 420px;
}

.tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.services-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #eee5dd;
}

.service-card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #111111;
  color: #f6f3ef;
  padding: 28px;
  border-radius: 18px;
}

.form-wrap label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

.form-wrap button {
  border: none;
  cursor: pointer;
}

.highlight-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(120deg, #1c1c1c, #3a2f27);
  color: #f6f3ef;
  border-radius: 22px;
  padding: 32px;
}

.highlight-strip .cta-outline {
  border-color: #f6f3ef;
  color: #f6f3ef;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
  background: #ffcf66;
  color: #1c1c1c;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  font-weight: 700;
}

footer {
  background: #1c1c1c;
  color: #f6f3ef;
  padding: 40px 7%;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1c1c1c;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1c1c1c;
  color: #f6f3ef;
}

.cookie-actions .reject {
  background: #e8e1db;
  color: #1c1c1c;
}

.page-hero {
  padding: 60px 7% 30px;
  background: #faf7f3;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.content-block {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.content-block .text-box {
  flex: 1 1 300px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
}

.content-block .image-box {
  flex: 1 1 260px;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-top {
    flex-direction: column;
    flex: 1 1 55%;
  }

  .hero-image {
    flex: 1 1 45%;
  }
}
