/* Base */
:root {
  --ink: #1f2430;
  --muted: #5b6575;
  --accent: #3a61ff;
  --accent-soft: #eef1ff;
  --sand: #f6f4f1;
  --mint: #ecf6f2;
  --sun: #fff3d9;
  --stroke: #e4e6eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.split > * {
  flex: 1 1 320px;
}

.section {
  padding: 64px 0;
  position: relative;
}

.offset-box {
  padding: 32px;
  background: var(--sand);
  border-radius: 18px;
  position: relative;
  z-index: 2;
}

.overlap-card {
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(31, 36, 48, 0.08);
}

.img-frame {
  background: #e8edf7;
  border-radius: 18px;
  overflow: hidden;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.hero {
  background: var(--sand);
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 360px;
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #ded7ce;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.bg-story {
  background-color: #2f2f3a;
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-story .offset-box {
  background: rgba(31, 36, 48, 0.7);
  color: #ffffff;
}

.bg-lightwash {
  background-color: #e7e6e4;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-lightwash::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
}

.bg-lightwash > .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin: 16px 0;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.nav {
  padding: 24px 0 12px;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px dashed var(--stroke);
  padding: 6px 10px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--stroke);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  background: #e9eef9;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 18px;
  font-weight: 700;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.layered {
  background: var(--mint);
}

.layered::before {
  content: "";
  position: absolute;
  inset: 0 0 0 55%;
  background: #ffffff;
  z-index: 0;
}

.layered > .container {
  position: relative;
  z-index: 1;
}

.numbers {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.numbers .num {
  flex: 1 1 200px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--stroke);
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 12px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--stroke);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
  font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  font-size: 15px;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--stroke);
  background: #fafafb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  padding: 8px;
  box-shadow: 0 10px 25px rgba(31, 36, 48, 0.12);
  z-index: 40;
}

.sticky-cta .btn {
  padding: 10px 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(31, 36, 48, 0.15);
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.page-hero {
  background: var(--sun);
}

.page-hero .split img {
  height: 260px;
  border-radius: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 22px;
}

.legal {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  padding: 24px;
}

@media (max-width: 860px) {
  .layered::before {
    display: none;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
    border-radius: 16px;
  }
}
