* {
  box-sizing: border-box;
}

:root {
  --ink: #171717;
  --muted: #5f5f5f;
  --paper: #f6f4f1;
  --accent: #1f4d8b;
  --accent-soft: #d9e6f5;
  --sun: #f3c05b;
  --coal: #202125;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: var(--sun);
  color: #2b1b00;
  font-size: 0.85rem;
  border-radius: 999px;
}

.hero {
  background: linear-gradient(120deg, rgba(246, 244, 241, 0.95), rgba(246, 244, 241, 0.7)), url("https://images.unsplash.com/photo-1769981281734-4d8cf9fe7b75?w=1400&q=80") center/cover no-repeat;
  padding: 72px 0 96px;
  position: relative;
}

.hero-grid {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 340px;
  max-width: 520px;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
  margin-top: 32px;
}

.hero-card .img-frame {
  border-radius: 14px;
  overflow: hidden;
  background-color: #e6e2dc;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-secondary {
  background: var(--coal);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.asym-section {
  padding: 72px 0;
  position: relative;
}

.asym-wrap {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-block {
  flex: 1 1 280px;
  background: var(--paper);
  padding: 28px;
  border-radius: 24px;
  position: relative;
  top: -18px;
}

.tall-block {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.img-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #e9e4df;
}

.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin: 0 0 16px;
}

.muted {
  color: var(--muted);
}

.story-slice {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.story-copy {
  flex: 1 1 320px;
}

.story-image {
  flex: 1 1 320px;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card .img-frame {
  border-radius: 14px;
  overflow: hidden;
  background-color: #e1e4ea;
}

.service-meta {
  font-weight: 600;
}

.quote-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 220px;
  background: var(--accent-soft);
  border-radius: 20px;
  padding: 20px;
}

.pricing-shell {
  background: #111319;
  color: #ffffff;
  padding: 60px 0;
}

.pricing-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 220px;
  border-radius: 18px;
  background: #1b202b;
  padding: 20px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-shell {
  background: var(--paper);
  padding: 64px 0;
}

.form-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

label {
  font-weight: 600;
  display: block;
  margin: 14px 0 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7c7c7;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-note {
  background: #f3f6fb;
  border-radius: 16px;
  padding: 18px;
}

.footer {
  background: #0f1117;
  color: #e5e8ef;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer a {
  color: #c7d5ff;
}

.legal {
  font-size: 0.85rem;
  color: #b4b9c4;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #111319;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta button {
  background: var(--sun);
  color: #2b1b00;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
}

.cookie-actions .reject {
  background: #adb5bd;
  color: #1d1d1d;
}

.simple-hero {
  background: var(--paper);
  padding: 52px 0;
}

.simple-hero .hero-grid {
  align-items: flex-start;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.notice {
  background: #f0f3f9;
  padding: 16px;
  border-radius: 14px;
}

.two-col {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 280px;
}

.list {
  padding-left: 18px;
}
