* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}
:root {
  --ink: #1d1d1b;
  --muted: #6b6b66;
  --cream: #f6f2ea;
  --stone: #ece6db;
  --pine: #1c3d34;
  --accent: #b56b3e;
  --mist: #e7efe9;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  border-bottom: 1px solid #d9d4c8;
  background: #fffaf3;
}

.nav-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 13px;
  color: var(--pine);
  background: var(--mist);
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
}

.hero-copy {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-image {
  flex: 1;
  background: #d8d1c5;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--pine);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
}

.btn-light {
  background: transparent;
  border: 1px solid var(--pine);
  color: var(--pine);
}

.magazine-split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.magazine-split.reverse {
  flex-direction: row-reverse;
}

.magazine-split .text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.magazine-split .image-block {
  flex: 1;
  background: #dfe4dc;
  border-radius: 18px;
  overflow: hidden;
}

.feature-columns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 220px;
  background: var(--stone);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card img {
  border-radius: 14px;
  background: #d4c9b9;
}

.image-shell {
  background: #d8d1c5;
  border-radius: 16px;
  overflow: hidden;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.services-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border: 1px solid #e3ddd2;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 16px;
  background: #d8d0c1;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.layered {
  position: relative;
  background: var(--mist);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 12%;
  width: 160px;
  height: 160px;
  background: #fff;
  opacity: 0.4;
  border-radius: 50%;
}

.layered-inner {
  position: relative;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-section {
  display: flex;
  gap: 28px;
  align-items: stretch;
  background: #fffaf3;
  border-radius: 24px;
  padding: 28px;
}

.form-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d0c4;
  font-size: 15px;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  border-top: 1px solid #ddd5c9;
  padding: 32px 24px 80px;
  background: #fffaf3;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #dcd4c7;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
  display: none !important;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-page {
  background: #ffffff;
  border: 1px solid #e7dfd3;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-block {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  background: var(--stone);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simple-hero {
  background: var(--cream);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stacked-media {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.media-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border: 1px solid #e3ddd2;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-card img {
  border-radius: 12px;
  background: #dcd2c1;
}

.small-note {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .magazine-split,
  .form-section {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
