* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f1;
  --ink: #1b1b1b;
  --muted: #5f615c;
  --accent: #2c4a9a;
  --accent-soft: #e7ecfb;
  --warm: #f3ebe2;
  --card: #ffffff;
  --line: #d9d2c8;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 28px 24px;
  background: var(--card);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--warm);
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content {
  flex: 1;
  padding: 40px 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1;
  background: #dfe6f5;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 30px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.section-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
}

.image-frame {
  flex: 1;
  background: #dde4d8;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
}

.bg-sand {
  background: #efe7de;
}

.bg-sky {
  background: #e7eef6;
}

.bg-clay {
  background: #e8e2da;
}

.bg-olive {
  background: #e2e8d8;
}

.bg-mist {
  background: #edf1f8;
}

.bg-lilac {
  background: #efe8f4;
}

.bg-sea {
  background: #e6eef0;
}

.bg-stone {
  background: #e8edf6;
}

.bg-fog {
  background: #e9eef5;
}

.bg-leaf {
  background: #e6ece8;
}

.bg-dusk {
  background: #e9e6f0;
}

.bg-paper {
  background: #e7e2da;
}

.bg-glass {
  background: #e6ecef;
}

.bg-cream {
  background: #ece6e0;
}

.bg-ink {
  background: #e8e9f2;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}

.service-card .image-frame {
  width: 180px;
  min-width: 180px;
  min-height: 120px;
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-inline {
  font-weight: 600;
  color: var(--accent);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-wrap {
  background: var(--card);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.sticky-cta {
  position: sticky;
  bottom: 24px;
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
}

.footer {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.mobile-toggle {
  display: none;
}

@media (max-width: 980px) {
  main {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    padding: 32px 20px 56px;
  }

  .hero {
    flex-direction: column;
  }

  .section-row {
    flex-direction: column;
  }

  .section-row.reverse {
    flex-direction: column;
  }

  .service-card {
    flex-direction: column;
  }

  .service-card .image-frame {
    width: 100%;
    min-width: 0;
  }

  .mobile-toggle {
    display: inline-flex;
  }
}
