* {
  box-sizing: border-box;
}

:root {
  --ink: #1e1f22;
  --muted: #5c6470;
  --accent: #2f5d50;
  --accent-light: #e2eee9;
  --surface: #f6f4f1;
  --sand: #efe6dc;
  --warm: #d7c3b3;
  --stone: #d1d6dc;
  --line: #c9c7c3;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, 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;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7vw;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.brand strong {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--muted);
  border-radius: 999px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.hero {
  display: flex;
  padding: 80px 7vw 40px;
  gap: 6vw;
  background: linear-gradient(120deg, #ffffff 40%, var(--sand) 40%);
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-image {
  flex: 1;
  position: relative;
  align-self: center;
  padding: 16px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.offset-panel {
  display: flex;
  gap: 4vw;
  padding: 60px 7vw;
  background: #ffffff;
}

.offset-panel.reverse {
  flex-direction: row-reverse;
  background: var(--surface);
}

.panel-card {
  flex: 1;
  padding: 28px;
  background: var(--accent-light);
  border-radius: 24px;
}

.panel-card h2 {
  margin-top: 0;
}

.panel-image {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
}

.panel-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.services {
  padding: 60px 7vw;
  background: #ffffff;
}

.services h2 {
  margin: 0 0 28px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card figure {
  margin: 0;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
}

.form-section {
  padding: 70px 7vw;
  background: var(--accent-light);
  display: flex;
  gap: 6vw;
  align-items: center;
}

.form-section aside {
  flex: 1;
}

.form-panel {
  flex: 1.1;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(23, 26, 30, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--ink);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 10;
}

.testimonial-band {
  padding: 60px 7vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
}

.split-callout {
  display: flex;
  gap: 4vw;
  padding: 60px 7vw;
  background: #ffffff;
  align-items: center;
}

.split-callout.reverse {
  flex-direction: row-reverse;
  background: var(--surface);
}

.split-callout .copy {
  flex: 1;
}

.split-callout .image-wrap {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
}

.bg-warm {
  background: var(--warm);
}

.bg-sand {
  background: var(--sand);
}

.bg-stone {
  background: var(--stone);
}

.bg-surface {
  background: var(--surface);
}

.bg-line {
  background: var(--line);
}

.split-callout img {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.footer {
  margin-top: auto;
  padding: 40px 7vw;
  background: var(--ink);
  color: #ffffff;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer small {
  color: #cfd3d8;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 420px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--ink);
}

.simple-hero {
  padding: 60px 7vw 40px;
  background: var(--sand);
}

.simple-hero h1 {
  margin-top: 0;
}

.content-section {
  padding: 50px 7vw;
  background: #ffffff;
}

.content-section.alt {
  background: var(--surface);
}

.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
}

.legal-page {
  padding: 50px 7vw;
  background: #ffffff;
}

.legal-page h1 {
  margin-top: 0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-pill {
  padding: 12px 16px;
  background: var(--surface);
  border-radius: 14px;
}

@media (max-width: 900px) {
  .hero,
  .offset-panel,
  .form-section,
  .split-callout {
    flex-direction: column;
  }

  .floating-cta {
    position: static;
    margin: 20px 7vw 0;
    align-self: flex-start;
  }
}
