* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f2ed;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #d66a3c;
  --deep: #1d2f3f;
  --soft: #eef1f3;
  --card: #ffffff;
  --line: #e2ddd6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 18px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  background: var(--deep);
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  position: relative;
  color: #fff;
  padding: 70px 0 90px;
  background-size: cover;
  background-position: center;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1765894103859-5a063ecaa4bc?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(19, 28, 38, 0.85), rgba(19, 28, 38, 0.2));
}

.hero .container {
  position: relative;
  z-index: 2;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 12px 0 16px;
}

.hero p {
  max-width: 460px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn.dark {
  background: var(--deep);
  color: #fff;
}

section {
  padding: 70px 0;
}

.layered {
  background: var(--soft);
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(214, 106, 60, 0.12);
  top: -80px;
  right: 10%;
}

.bg-panel {
  color: #fff;
  background-image: linear-gradient(120deg, rgba(25, 36, 48, 0.92), rgba(25, 36, 48, 0.55)),
    url("https://images.unsplash.com/photo-1532505282875-aff2e0311d4f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-panel .form-note,
.bg-panel .inline-link {
  color: rgba(255, 255, 255, 0.8);
}

.image-frame {
  background: #d7d1c8;
  padding: 6px;
  border-radius: 14px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
}

.service-card .price {
  font-weight: 700;
  color: var(--deep);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(29, 47, 63, 0.08);
  color: var(--deep);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.form-box {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 15px;
  background: #fff;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  z-index: 8;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.footer {
  margin-top: auto;
  padding: 40px 0 50px;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.footer .split {
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-box {
  background: rgba(214, 106, 60, 0.08);
  padding: 14px;
  border-radius: 12px;
}

.simple-hero {
  padding: 70px 0 40px;
}

.simple-hero h1 {
  margin-bottom: 12px;
}

.page-image {
  border-radius: 16px;
  overflow: hidden;
  background: #d7d1c8;
}

.page-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
