* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 0 18px;
}

.brand {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1b1b1b;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 42px 0 64px;
}

.hero .hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero .hero-visual img {
  width: 88%;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.hero-tag {
  max-width: 620px;
  font-size: 1.1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  max-width: 680px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #fefefe;
  font-weight: 600;
}

.btn.alt {
  background: transparent;
  color: #1b1b1b;
}

.section {
  padding: 56px 0;
}

.section h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  margin-bottom: 18px;
}

.section p {
  margin-bottom: 12px;
}

.asym-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.offset-box {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(20, 20, 20, 0.1);
  transform: translateY(16px);
}

.layered {
  position: relative;
  background: linear-gradient(125deg, #f9f7f1, #e7e2dc);
}

.layered::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 12px;
  margin-bottom: 16px;
}

.accent {
  background: #1b1b1b;
  color: #fefefe;
}

.accent .btn.alt {
  border-color: #fefefe;
  color: #fefefe;
}

.bg-echo {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da6?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.quote-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #2f2f2f;
}

.quote-strip span {
  background: #fff;
  padding: 10px 16px;
  border-radius: 20px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #fefefe;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: #464646;
}

.two-col {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 0 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #1b1b1b;
  color: #fefefe;
  padding: 18px;
  border-radius: 18px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  border-color: #fefefe;
}

.cta-stack {
  margin-top: 18px;
}

.image-wall {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.image-wall img {
  flex: 1 1 160px;
  border-radius: 16px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-visual {
    width: 50%;
  }

  .hero .hero-text {
    width: 50%;
  }

  .two-col {
    flex-wrap: nowrap;
  }
}
