@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #1e1f24;
  --muted: #5b6069;
  --paper: #f7f6f2;
  --accent: #2f4edb;
  --accent-soft: #e6ebff;
  --highlight: #f2e7d8;
  --panel: #ffffff;
  --shadow: rgba(20, 22, 28, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0 64px;
}

header {
  background: var(--panel);
  border-bottom: 1px solid rgba(30, 31, 36, 0.08);
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.lead-section {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.lead-story {
  flex: 1 1 520px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 18px 45px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-story h1 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.2;
}

.lead-story p {
  margin: 0;
  color: var(--muted);
}

.lead-aside {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.aside-card {
  background: var(--highlight);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.image-frame {
  background-color: #e3e1dc;
  border-radius: 16px;
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.two-column {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.two-column.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--panel);
  padding: 28px;
  box-shadow: 0 18px 40px var(--shadow);
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1473187983305-f615310e7daa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.background-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 25, 40, 0.55);
}

.background-panel > * {
  position: relative;
}

.section-title {
  margin-top: 0;
  font-size: 1.6rem;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--panel);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px var(--shadow);
}

.service-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.top-gap {
  margin-top: 18px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.story-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.story-card {
  flex: 1 1 260px;
  background: var(--accent-soft);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: var(--panel);
  border-left: 4px solid var(--accent);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-section {
  background: #f0f2ff;
  padding: 32px;
  border-radius: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(30, 31, 36, 0.16);
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-row > * {
  flex: 1 1 200px;
}

.legal-note {
  font-size: 0.9rem;
  color: var(--muted);
}

footer {
  background: #1a1b20;
  color: #f5f5f5;
  padding: 32px 0;
}

.footer-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-links a {
  color: #f5f5f5;
  text-decoration: none;
  margin-right: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: var(--panel);
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.plain-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 64px;
  background: var(--panel);
  box-shadow: 0 18px 40px var(--shadow);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--highlight);
  padding: 20px;
}

.banner-image {
  min-height: 260px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}
