* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #111111;
  --muted: #5a5a5a;
  --paper: #f7f4ef;
  --accent: #d5652f;
  --accent-dark: #b15025;
  --sage: #cfd6cc;
  --sky: #e6eef5;
  --night: #1d1f22;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-bottom: 80px;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-cta {
  border: 1px solid var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1.1;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.hero-visual {
  flex: 1 1 360px;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  position: absolute;
  bottom: -24px;
  left: 10%;
  background: var(--white);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: min(260px, 70%);
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-panel h2,
.section-panel h3 {
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  line-height: 1.2;
}

.section-panel p {
  color: var(--muted);
}

.accent-block {
  background: var(--sage);
  border-radius: 24px;
  padding: 32px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 14px;
}

.quote {
  font-style: italic;
  color: var(--night);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  border-radius: 20px;
  padding: 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card.active {
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(213, 101, 47, 0.18);
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-shell {
  background: var(--night);
  color: var(--white);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-shell label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  margin-top: 8px;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-message {
  font-size: 0.9rem;
  color: #f4c6b0;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  z-index: 4;
}

.footer {
  background: var(--night);
  color: var(--white);
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.legal-note {
  font-size: 0.85rem;
  opacity: 0.75;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: var(--white);
  border: none;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 60px 0;
}

.page-hero .hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-hero .hero-image {
  flex: 1 1 320px;
  border-radius: 22px;
  overflow: hidden;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sky);
  font-size: 0.85rem;
  color: var(--night);
}

.section-layer {
  background: var(--sky);
  padding: 60px 0;
}

.section-layer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visual-bg {
  background-image: linear-gradient(
      rgba(230, 238, 245, 0.9),
      rgba(230, 238, 245, 0.9)
    ),
    url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cta-inline {
  color: var(--accent-dark);
  text-decoration: underline;
}

.spacer {
  height: 20px;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
