* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f262e;
  --muted: #5b6670;
  --paper: #f6f3ee;
  --accent: #3d5a6c;
  --accent-soft: #dbe4ea;
  --highlight: #f2e6d9;
  --sand: #efe7dc;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 18px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--highlight);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 30px 6vw 80px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: var(--paper);
  padding: 32px;
  max-width: 520px;
  box-shadow: 0 20px 40px rgba(31, 38, 46, 0.12);
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image .img-frame {
  background: var(--accent-soft);
  padding: 12px;
  transform: translateY(20px);
}

.img-frame {
  background: var(--sand);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--paper);
}

.offset-grid {
  display: flex;
  gap: 32px;
  align-items: center;
}

.offset-grid.reverse {
  flex-direction: row-reverse;
}

.offset-panel {
  flex: 1;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(31, 38, 46, 0.1);
  transform: translateY(-24px);
}

.offset-panel.slim {
  max-width: 460px;
}

.copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.services-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.bg-panel {
  background-color: var(--accent-soft);
  padding: 60px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.bg-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
}

.bg-panel-content {
  position: relative;
  display: flex;
  gap: 32px;
  align-items: center;
  z-index: 1;
}

.bg-image-vision {
  background-image: url("https://images.unsplash.com/photo-1523475472560-d2df97ec485c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image-trust {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image-about {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image-services {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.quote-card {
  background: #ffffff;
  padding: 24px;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 280px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border: 1px solid #c5ccd3;
  border-radius: 6px;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(31, 38, 46, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

footer {
  padding: 50px 6vw;
  background: #11161b;
  color: #f8f6f2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-small {
  font-size: 0.85rem;
  color: #c9d0d6;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: var(--ink);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(31, 38, 46, 0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: #ffffff;
  color: var(--accent);
  cursor: pointer;
}

.cookie-btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.page-hero {
  padding: 40px 6vw;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.page-hero .img-frame {
  flex: 0.9;
}

.page-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  padding: 24px;
  max-width: 520px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #e2e6ea;
}

.service-row strong {
  color: var(--accent);
}

.thanks {
  padding: 80px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero,
  .offset-grid,
  .bg-panel-content,
  .page-hero {
    flex-direction: column;
  }

  .offset-panel {
    transform: none;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
