* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1e1b;
  --muted: #5d5a54;
  --cream: #f6f1e8;
  --sage: #dbe5d3;
  --rust: #c96a4a;
  --sky: #d7e6ee;
  --sun: #f4d08b;
  --stone: #ebe6dd;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
  text-align: right;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  display: flex;
  gap: 36px;
  align-items: stretch;
  padding: 60px 0 40px;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.hero-title {
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  line-height: 1.1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: var(--rust);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.hero-image {
  flex: 1.1;
  border-radius: 26px;
  background-color: var(--stone);
  overflow: hidden;
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 30, 27, 0.1);
}

.hero-image img {
  height: 100%;
}

.section {
  padding: 70px 0;
}

.section-intro {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  margin-bottom: 18px;
}

.section-note {
  color: var(--muted);
}

.feature-slab {
  display: flex;
  gap: 30px;
  align-items: stretch;
  padding: 40px;
  background: var(--cream);
  border-radius: 30px;
  position: relative;
}

.feature-slab::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 14%;
  width: 160px;
  height: 6px;
  background: var(--sun);
  border-radius: 999px;
}

.feature-image {
  flex: 1;
  background-color: var(--sage);
  border-radius: 24px;
  overflow: hidden;
}

.feature-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-stack {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.stack-card {
  flex: 1;
  padding: 26px;
  border-radius: 24px;
  background: var(--sky);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stack-card:nth-child(2) {
  background: var(--sage);
  margin-top: 26px;
}

.stack-card:nth-child(3) {
  background: var(--sun);
  margin-top: 8px;
}

.service-wrap {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.service-card {
  display: flex;
  gap: 26px;
  align-items: stretch;
  background: var(--stone);
  border-radius: 26px;
  padding: 24px;
}

.service-card:nth-child(even) {
  flex-direction: row-reverse;
  background: var(--cream);
}

.service-card img {
  width: 220px;
  height: 180px;
  border-radius: 20px;
  background-color: var(--sage);
}

.price {
  font-weight: 700;
  color: var(--rust);
}

.inline-cta {
  color: var(--rust);
  font-weight: 600;
  text-decoration: underline;
}

.form-panel {
  background: var(--ink);
  color: #fff;
  padding: 40px;
  border-radius: 26px;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.form-panel .form-copy {
  flex: 1;
}

.form-panel form {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  background: #fff;
  color: var(--ink);
}

.form-panel button {
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: var(--sun);
  color: var(--ink);
  font-weight: 700;
}

.testimonial {
  display: flex;
  gap: 22px;
  align-items: center;
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 12px 26px rgba(31, 30, 27, 0.08);
}

.testimonial img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--sun);
}

.image-strip {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.image-strip img {
  width: 100%;
  border-radius: 20px;
  background-color: var(--stone);
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--rust);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  padding: 50px 0;
  background: var(--ink);
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer small {
  color: #d5d1c8;
}

.legal-block {
  padding: 60px 0;
}

.legal-block h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.legal-block h2 {
  font-size: 1.2rem;
  margin-top: 26px;
  margin-bottom: 10px;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
}

.legal-block ul {
  padding-left: 18px;
}

.contact-grid {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 240px;
  background: var(--cream);
  padding: 26px;
  border-radius: 20px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(31, 30, 27, 0.18);
  max-width: 320px;
  display: none;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.cookie-accept {
  background: var(--sun);
}

.cookie-reject {
  background: var(--stone);
}

@media (max-width: 960px) {
  .hero,
  .section-intro,
  .feature-slab,
  .split-stack,
  .service-card,
  .form-panel,
  .testimonial {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-disclosure {
    text-align: left;
    max-width: none;
  }

  .hero-image {
    min-height: 260px;
  }

  .service-card img {
    width: 100%;
    height: 200px;
  }
}
