/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a33;
  --muted: #5a6b75;
  --accent: #1b4d8c;
  --accent-soft: #e7eff8;
  --surface: #f7f5f1;
  --surface-strong: #efe9df;
  --line: #d7d3cc;
  --warm: #c78b52;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.layout {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
}

.sidebar {
  width: 280px;
  padding: 32px 28px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--muted);
}

.brand h1 {
  font-size: 26px;
  line-height: 1.2;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 600;
}

.sidebar-cta {
  background: var(--accent);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.sidebar small {
  color: var(--muted);
  font-size: 13px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.tight {
  padding: 48px 72px;
}

.section.alt {
  background: var(--surface);
}

.section.warm {
  background: var(--surface-strong);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

.headline {
  font-size: 40px;
  line-height: 1.2;
  max-width: 640px;
}

.subhead {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
}

.hero {
  background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: #ffffff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 27, 43, 0.72);
}

.hero .hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  min-width: 160px;
}

.button.outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.button.light {
  background: #ffffff;
  color: var(--accent);
  border-color: #ffffff;
}

.pill {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split > div {
  flex: 1;
  min-width: 250px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 150px;
  object-fit: cover;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  color: var(--warm);
  font-weight: 700;
}

.quote {
  border-left: 3px solid var(--warm);
  padding-left: 16px;
  color: var(--muted);
}

.form-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1;
  min-width: 220px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.inline-cta {
  font-weight: 600;
}

.footer {
  padding: 40px 72px;
  border-top: 1px solid var(--line);
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  font-weight: 600;
  z-index: 5;
}

.badge-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.badge {
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--accent);
  font-weight: 600;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-stack img {
  border-radius: 18px;
}

.service-price {
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-grid > div {
  flex: 1;
  min-width: 240px;
}

.policy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.cookie-banner p {
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .secondary {
  background: transparent;
  color: var(--accent);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .footer {
    padding: 48px 28px;
  }

  .headline {
    font-size: 32px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
