* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1b;
  --muted: #5b5f6a;
  --paper: #f5f2ee;
  --stone: #e2ddd6;
  --accent: #d55b3e;
  --accent-dark: #b44b32;
  --teal: #0f6e6e;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.hero {
  display: flex;
  padding: 48px 6vw 24px;
  gap: 36px;
  align-items: stretch;
  background: var(--white);
}

.hero-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-text h1 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.2;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-media {
  flex: 1 1 50%;
  display: flex;
  background: #d8d2cb;
  border-radius: 18px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: var(--white);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--accent);
  color: var(--white);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 50%;
}

.panel.card {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.panel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  background-color: #d0cbc6;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--stone);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: #d6d1cb;
}

.service-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.flow-blocks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.flow-item {
  flex: 1 1 220px;
  background: var(--paper);
  border-left: 3px solid var(--teal);
  padding: 16px 18px;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.bg-story .panel.card {
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight .panel.card {
  background: rgba(255, 255, 255, 0.9);
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.bg-trust .panel.card {
  background: rgba(15, 110, 110, 0.85);
  color: var(--white);
}

.form-wrap {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  width: 100%;
  background: var(--white);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer {
  background: var(--white);
  padding: 32px 6vw;
  margin-top: auto;
  border-top: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--teal);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #0c5555;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.content-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.content-columns .column {
  flex: 1 1 260px;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
}

.hero-sub {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-sub .stat {
  background: var(--stone);
  padding: 12px 16px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
