* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f1;
  --surface: #ffffff;
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --accent: #2d6cdf;
  --accent-dark: #1f4fa6;
  --warm: #f0e6da;
  --line: #e1d8ce;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  background: var(--warm);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1771681744660-d3ff70bc24a2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2f2a25;
  color: var(--surface);
}

.hero-overlay {
  background: rgba(20, 20, 20, 0.55);
  padding: 70px 0 80px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.copy {
  flex: 1 1 52%;
}

.visual {
  flex: 1 1 40%;
}

.image-frame {
  background-color: #dcd4cb;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.hero h1 {
  font-size: clamp(2.4rem, 2.1rem + 1vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  color: #f3f3f3;
  margin-bottom: 22px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-row.tight {
  margin-top: 18px;
}

.btn {
  background: var(--accent);
  color: var(--surface);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fdfdfd;
}

.btn.dark {
  background: var(--accent-dark);
}

.btn:hover {
  background: #3b78e7;
}

.inline-link {
  color: #ffffff;
  text-decoration: underline;
}

.inline-link.dark {
  color: var(--accent-dark);
  text-decoration: underline;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--surface);
}

.story-bg {
  background-image: url("https://images.unsplash.com/photo-1769356815043-ca0e8c571830?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2d2a27;
  color: var(--surface);
}

.story-bg .section-overlay {
  background: rgba(15, 15, 15, 0.6);
  padding: 70px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.eyebrow.light {
  color: #e6e0d8;
}

.section h2 {
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.4rem);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
  margin-bottom: 14px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill-row.tight {
  margin-top: 14px;
}

.pill {
  background: var(--warm);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.1rem;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 14px;
  color: var(--muted);
}

.testimonial.tight {
  margin-top: 20px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--surface);
  border-radius: 50%;
  font-weight: 700;
}

.form-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

.form-card label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-top: 6px;
}

.form-card button {
  margin-top: 14px;
  width: 100%;
  border: none;
  cursor: pointer;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: var(--surface);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 5;
}

.site-footer {
  background: #1f1f1f;
  color: #f5f5f5;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 14px;
}

.footer-note {
  color: #d4d4d4;
  font-size: 13px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: none;
  z-index: 6;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--accent);
  color: var(--surface);
}

.cookie-actions .secondary {
  background: #dad1c6;
  color: #1f1f1f;
}

.page-hero {
  padding: 60px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 1.6rem + 1vw, 2.6rem);
  margin-bottom: 10px;
}

.simple-section {
  padding: 50px 0;
}

.simple-section.alt {
  background: var(--surface);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--surface);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
