@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #111217;
  --muted: #4b5563;
  --accent: #1f3a5f;
  --accent-light: #dbe7f5;
  --warm: #f5f1ea;
  --paper: #fdfbf7;
  --line: #e3e6ee;
  --cta: #c34f2d;
  --cta-soft: #ffe7df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background-color: #e4e8f2;
}

.page-wrap {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 0 12px;
  gap: 24px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-block .brand {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-block .tagline {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 260px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.ad-label {
  font-size: 0.75rem;
  padding: 6px 10px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 24px 0 64px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 16px;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0;
}

.hero-text p {
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  border: none;
  background: var(--cta);
  color: white;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
}

.btn.secondary {
  background: var(--cta-soft);
  color: var(--cta);
}

.hero-media {
  flex: 0 0 44%;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-media .frame {
  background: #d8e1f1;
  padding: 10px;
  border-radius: 26px;
  transform: translateY(18px);
}

.hero-media img {
  width: 100%;
  height: 420px;
  border-radius: 22px;
}

.offset-strip {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding: 30px 0 60px;
}

.offset-strip .strip-text {
  flex: 1;
  padding: 20px;
  background: var(--warm);
  border-radius: 18px;
}

.offset-strip .strip-text h2 {
  margin-top: 0;
}

.offset-strip .strip-media {
  flex: 0 0 38%;
  margin-top: -36px;
  background: #e7ecf7;
  padding: 12px;
  border-radius: 22px;
}

.offset-strip img {
  width: 100%;
  height: 300px;
  border-radius: 18px;
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0 60px;
}

.asym-card {
  flex: 1 1 280px;
  padding: 20px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.asym-card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background: #e4e8f2;
}

.asym-card .price {
  font-weight: 600;
  color: var(--accent);
}

.section-split {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 20px 0 60px;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-split .split-text {
  flex: 1;
  padding: 24px;
  border-radius: 18px;
  background: var(--accent-light);
}

.section-split .split-media {
  flex: 0 0 40%;
  background: #e8ebe1;
  padding: 12px;
  border-radius: 24px;
  transform: translateY(14px);
}

.section-split img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 10px 0 50px;
}

.metric {
  flex: 1 1 200px;
  padding: 18px;
  background: #f1f5f0;
  border-radius: 16px;
}

.cta-panel {
  display: flex;
  gap: 24px;
  padding: 28px;
  border-radius: 24px;
  background: var(--accent);
  color: white;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.bg-insight {
  background-color: #24334a;
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.bg-contrast {
  background-color: #2b2b2b;
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.cta-panel p {
  margin: 0;
  color: #e6ecf7;
}

.form-section {
  display: flex;
  gap: 28px;
  padding: 30px 0 70px;
  align-items: stretch;
}

.form-card {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--line);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-side {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 20px;
  background: var(--warm);
}

.form-side img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  background: #efe6da;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 24px;
  background: var(--accent);
  padding: 8px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}

.sticky-cta a {
  color: white;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cta);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 40;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: white;
}

.cookie-actions .reject {
  background: var(--accent-light);
  color: var(--accent);
}

.contact-grid {
  display: flex;
  gap: 24px;
  padding: 20px 0 60px;
  align-items: flex-start;
}

.contact-box {
  flex: 1;
  padding: 20px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
}

.legal {
  padding: 10px 0 60px;
}

.legal h2 {
  margin-top: 28px;
}

.plain-list {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 920px) {
  .hero,
  .offset-strip,
  .section-split,
  .form-section,
  .contact-grid {
    flex-direction: column;
  }

  .hero-media,
  .offset-strip .strip-media,
  .section-split .split-media,
  .form-side {
    flex: 1;
    margin-top: 0;
    transform: none;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
