* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4f0;
  --ink: #1f1f1f;
  --muted: #5c5c5c;
  --accent: #2b5c6b;
  --accent-2: #c08e52;
  --panel: #ffffff;
  --soft: #efe8de;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 8%;
  background: var(--panel);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.split {
  padding: 56px 8%;
}

.bg-section {
  background-color: #1f2c33;
  background-image: linear-gradient(
      120deg,
      rgba(31, 44, 51, 0.85),
      rgba(31, 44, 51, 0.65)
    ),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
}

.split.reverse .split-inner {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel {
  background: var(--panel);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.stacked-panel {
  margin-top: 24px;
}

.hero {
  background: linear-gradient(120deg, rgba(43, 92, 107, 0.9), rgba(192, 142, 82, 0.75)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1400&q=80") center/cover no-repeat;
  color: #fff;
}

.hero .panel {
  background: rgba(0, 0, 0, 0.18);
  box-shadow: none;
}

.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
  color: var(--muted);
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent-2);
  color: #1f1f1f;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid #fff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.image-frame {
  background: #d6d0c7;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 150px;
  background: var(--panel);
  padding: 16px;
  border-radius: 14px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: var(--panel);
  padding: 16px;
  border-radius: 14px;
}

.service-card img {
  width: 160px;
  height: 120px;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5d0c7;
  background: #fff;
  font-size: 14px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.form-error {
  font-size: 13px;
  color: #7a2d2d;
}

.footer {
  padding: 40px 8%;
  background: var(--panel);
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-page {
  padding: 40px 8%;
}

.simple-page .panel {
  max-width: 960px;
  margin: 0 auto;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--soft);
  border-radius: 999px;
  font-size: 12px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 720px) {
  h1 {
    font-size: 32px;
  }

  .split {
    padding: 40px 6%;
  }

  header {
    padding: 20px 6%;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
