:root {
  --bg: #f7f6f1;
  --paper: #ffffff;
  --paper-soft: #fbfaf6;
  --ink: #182124;
  --muted: #667174;
  --line: rgba(24, 33, 36, 0.11);
  --brand: #c9822d;
  --brand-dark: #8f531c;
  --green: #173f35;
  --green-soft: #e9f2ee;
  --cream: #fff4df;
  --blue: #dfeef1;
  --shadow: 0 22px 60px rgba(24, 33, 36, 0.12);
  --shadow-strong: 0 34px 90px rgba(24, 33, 36, 0.18);
  --radius: 18px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(24, 33, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 33, 36, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fffdf8 0%, #f7f6f1 48%, #eef5f2 100%);
  background-size: 72px 72px, 72px 72px, auto;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 68px 0;
}

.topbar {
  color: rgba(255, 255, 255, 0.82);
  background: #173f35;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff3d8;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(24, 33, 36, 0.08);
  backdrop-filter: blur(20px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 48px rgba(24, 33, 36, 0.12);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
  padding: 7px 14px 7px 7px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 33, 36, 0.09);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(24, 33, 36, 0.13);
}

.site-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-label {
  max-width: 180px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f6f1;
}

.nav-links a {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #364346;
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.22s var(--ease), background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(24, 33, 36, 0.10);
  transform: translateY(-1px);
}

.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)) !important;
  box-shadow: 0 14px 28px rgba(201, 130, 45, 0.26) !important;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(24, 33, 36, 0.10);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.18s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 72px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  padding: 9px 13px;
  border: 1px solid rgba(201, 130, 45, 0.18);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 33, 36, 0.08);
}

.eyebrow span,
.section-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--green));
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.hero-actions,
.section-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.trust-row span,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #344346;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(24, 33, 36, 0.07);
}

.hero-media,
.media-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #e9e4d8;
  box-shadow: var(--shadow-strong);
}

.hero-media {
  min-height: 585px;
}

.hero-media::before,
.media-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
}

.hero-media img,
.media-panel img,
.reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.hero-media img {
  min-height: 585px;
}

.hero-media:hover img,
.media-panel:hover img,
.reference-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.floating-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 18px 44px rgba(24, 33, 36, 0.16);
  backdrop-filter: blur(16px);
}

.floating-note strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
}

.floating-note span {
  color: var(--muted);
  font-size: 13px;
}

.btn {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  padding: 0 24px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: translateX(-120%);
  transition: opacity 0.2s ease, transform 0.65s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 18px 40px rgba(201, 130, 45, 0.28);
}

.btn-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 33, 36, 0.10);
}

.full-width {
  width: 100%;
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .section-kicker {
  justify-content: center;
}

.section-head h2,
.media-copy-panel h2,
.split-copy h2,
.contact-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(33px, 4.4vw, 56px);
  font-weight: 950;
  line-height: 1.04;
}

.section-head p,
.media-copy-panel p,
.split-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.stats-band {
  padding: 22px 0;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item,
.info-card,
.reference-card,
.contact-card,
.page-cta-box,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(24, 33, 36, 0.08);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s ease;
}

.stat-item {
  min-height: 118px;
  padding: 22px;
}

.stat-item:hover,
.info-card:hover,
.reference-card:hover,
.testimonial-card:hover {
  transform: translateY(-7px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(201, 130, 45, 0.28);
  box-shadow: var(--shadow);
}

.stat-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 26px;
  font-weight: 950;
  line-height: 1.05;
}

.stat-item span {
  color: var(--muted);
  font-size: 14px;
}

.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.flip-card {
  min-height: 265px;
  border: 0;
  background: transparent;
  perspective: 1200px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: transform 0.75s var(--ease);
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card.is-flipped .flip-front {
  opacity: 0;
  visibility: hidden;
}

.flip-card.is-flipped .flip-back {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) and (pointer: fine) {
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  .flip-card:hover .flip-front {
    opacity: 0;
    visibility: hidden;
  }

  .flip-card:hover .flip-back {
    opacity: 1;
    visibility: visible;
  }

  .flip-card:hover .flip-face {
    border-color: rgba(201, 130, 45, 0.28);
    box-shadow: 0 22px 54px rgba(24, 33, 36, 0.13);
  }
}

.flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(24, 33, 36, 0.10);
  transform: rotateY(0deg) translateZ(0);
}

.flip-face::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 15%, rgba(201, 130, 45, 0.14), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(23, 63, 53, 0.12), transparent 36%);
}

.flip-back {
  position: absolute;
  justify-content: flex-start;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  background: linear-gradient(135deg, #173f35, #25594c);
  transform: rotateY(180deg) translateZ(0);
}

.flip-face > * {
  position: relative;
  z-index: 1;
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, #fff4df, #f4cc8d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 24px rgba(201, 130, 45, 0.16);
}

.icon::before {
  content: "";
  width: 31px;
  height: 31px;
  background: var(--brand-dark);
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon.paint { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 4h13a3 3 0 1 1 0 6h-3v2.5a2.5 2.5 0 0 1-2 2.45V22H7v-7.05a2.5 2.5 0 0 1-2-2.45V10H3V4Zm2 2v2h11a1 1 0 1 0 0-2H5Zm2 4v2.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5V10H7Z'/%3E%3C/svg%3E"); }
.icon.facade { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 21V8l9-6 9 6v13h-7v-6h-4v6H3Zm2-2h3v-6h8v6h3V9.07l-7-4.66-7 4.66V19Zm3-8h3V8H8v3Zm5 0h3V8h-3v3Z'/%3E%3C/svg%3E"); }
.icon.lacquer { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h8l4 4v15a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a4 4 0 0 1 4-4Zm0 2a2 2 0 0 0-2 2v3h12V6.83L13.17 4H6Zm-2 7v9h12v-9H4Zm3 2h6v2H7v-2Z'/%3E%3C/svg%3E"); }
.icon.wallpaper { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h9a4 4 0 0 1 4 4v16H8V8H5V5a3 3 0 0 1 1-3Zm2 4h3a4 4 0 0 1 4-4h-5a3 3 0 0 0-2 4Zm2 14h7V6a2 2 0 1 0-4 0v2h-3v12Z'/%3E%3C/svg%3E"); }
.icon.trowel { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 18.5 14.5 7 17 9.5 5.5 21H3v-2.5ZM16 5.5l1.5-1.5a3.54 3.54 0 0 1 5 5L21 10.5l-5-5ZM4 4h9v2H4V4Zm0 4h6v2H4V8Z'/%3E%3C/svg%3E"); }
.icon.renovate { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M21 7.5a5.5 5.5 0 0 1-7.15 5.25l-6.6 6.6a3.18 3.18 0 0 1-4.5-4.5l6.6-6.6A5.5 5.5 0 0 1 16.5 1.1L13 4.6l2.4 2.4 3.5-3.5A5.47 5.47 0 0 1 21 7.5ZM5 17.95a1.18 1.18 0 1 0 0-2.36 1.18 1.18 0 0 0 0 2.36Z'/%3E%3C/svg%3E"); }
.icon.advice { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a8 8 0 0 1 5 14.25V20a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2v-3.75A8 8 0 0 1 12 2Zm-3 15v1h6v-1H9Zm0 3h6v-1H9v1Zm3-16a6 6 0 0 0-3.3 11H15.3A6 6 0 0 0 12 4Z'/%3E%3C/svg%3E"); }
.icon.clean { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2c3.2 3.2 6 6.63 6 10a6 6 0 1 1-12 0c0-3.37 2.8-6.8 6-10Zm0 3.05C9.7 7.65 8 10.1 8 12a4 4 0 1 0 8 0c0-1.9-1.7-4.35-4-6.95ZM5 3h2v2H5V3Zm12 1h3v2h-3V4ZM3 8h3v2H3V8Z'/%3E%3C/svg%3E"); }
.icon.phone { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.2 3.5 9.4 2a2.6 2.6 0 0 1 3.55.72l1.1 1.62a2.6 2.6 0 0 1-.42 3.43l-1.05.98a12.2 12.2 0 0 0 2.67 2.67l.98-1.05a2.6 2.6 0 0 1 3.43-.42l1.62 1.1a2.6 2.6 0 0 1 .72 3.55l-1.5 2.2a4 4 0 0 1-4.3 1.68A16.8 16.8 0 0 1 4.52 7.8 4 4 0 0 1 7.2 3.5Z'/%3E%3C/svg%3E"); }
.icon.mail { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5h18a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 2v.45l9 5.4 9-5.4V7H3Zm0 2.8V17h18V9.8l-9 5.4-9-5.4Z'/%3E%3C/svg%3E"); }

.flip-face h3 {
  font-size: 24px;
  font-weight: 950;
  line-height: 1.12;
}

.flip-front p {
  color: var(--muted);
  font-weight: 750;
}

.flip-back p {
  color: rgba(255, 255, 255, 0.80);
}

.mini-link {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px 8px 0;
  color: inherit;
  font-weight: 950;
  line-height: 1.15;
  pointer-events: auto;
}

.mini-link::after {
  content: " ->";
}

.flip-back .card-cta-link-zone {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  z-index: 20;
  width: 100%;
  min-height: 0;
  height: 22%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 24px 24px;
  box-sizing: border-box;
  pointer-events: auto;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.media-panel {
  min-height: 420px;
}

.media-copy-panel,
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 33, 36, 0.08);
}

.media-copy-panel ul,
.check-list,
.reference-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.media-copy-panel li,
.check-list li,
.reference-list li {
  position: relative;
  padding-left: 25px;
  color: #39484b;
  font-weight: 800;
}

.media-copy-panel li::before,
.check-list li::before,
.reference-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--green));
  box-shadow: 0 0 0 5px rgba(201, 130, 45, 0.11);
}

.media-badge,
.reference-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  backdrop-filter: blur(14px);
}

.info-grid,
.reference-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

.info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.testimonial-card {
  padding: 26px;
}

.info-card h3,
.testimonial-card h3 {
  margin: 18px 0 10px;
  font-size: 23px;
  font-weight: 950;
  line-height: 1.12;
}

.info-card p,
.testimonial-card p {
  color: var(--muted);
}

.reference-grid {
  grid-template-columns: repeat(3, 1fr);
}

.reference-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.reference-image {
  position: relative;
  height: 300px;
  min-height: 300px;
  overflow: hidden;
  background: #ece8df;
}

.reference-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reference-card:nth-child(2) .reference-image img {
  object-fit: cover;
  object-position: center center;
}

.reference-card:nth-child(5) .reference-image img {
  object-fit: cover;
  object-position: center 38%;
}

.reference-body {
  flex: 1;
  padding: 24px;
}

.reference-body h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.12;
}

.reference-body p,
.reference-meta {
  color: var(--muted);
}

.reference-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-points div {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.80);
  font-weight: 850;
}

.contact-card {
  padding: clamp(26px, 4vw, 36px);
}

.contact-card h3 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 950;
}

.contact-card form {
  display: grid;
  gap: 14px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  background: #fbfaf6;
  color: var(--ink);
  padding: 16px 18px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(201, 130, 45, 0.48);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(201, 130, 45, 0.12);
}

.contact-card textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-page .handwerker-chatbot-launcher,
.contact-page [id^="handwerker-chatbot-root-"] {
  display: none !important;
}

.contact-hero {
  padding: 76px 0 46px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.contact-hero-copy {
  max-width: 820px;
}

.contact-hero h1 {
  margin-bottom: 22px;
  color: var(--green);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-hero-copy p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.contact-hero-visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
}

.contact-hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 0 3%;
  background:
    radial-gradient(circle at 62% 24%, rgba(201, 130, 45, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(23, 63, 53, 0.08), rgba(201, 130, 45, 0.10));
  border-radius: 32px;
  filter: blur(1px);
  opacity: 0.72;
  transform: rotate(-3deg);
}

.contact-hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(24, 33, 36, 0.14));
}

.contact-chat-section {
  padding-top: 34px;
}

.contact-chat-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-width: 0;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 15%, rgba(201, 130, 45, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 246, 0.96));
  box-shadow: var(--shadow);
}

.chat-benefits h2 {
  max-width: 420px;
  margin-bottom: 34px;
  color: var(--green);
  font-size: clamp(33px, 4.2vw, 48px);
  font-weight: 950;
  line-height: 1.08;
}

.chat-benefit-list {
  display: grid;
  gap: 28px;
}

.chat-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.chat-benefit .icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
}

.chat-benefit h3 {
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.22;
}

.chat-benefit p {
  max-width: 46ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.embedded-chatbot-card {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 51, 44, 0.14);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(8, 35, 30, 0.18), 0 8px 22px rgba(15, 51, 44, 0.10);
}

.embedded-chatbot-header {
  flex: 0 0 auto;
  padding: 14px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f332c, #08231e);
  box-shadow: 0 10px 24px rgba(8, 35, 30, 0.18);
}

.embedded-chatbot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.embedded-chatbot-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.embedded-chatbot-icon::before {
  width: 30px;
  height: 30px;
  background: #b8892f;
}

.embedded-chatbot-brand strong,
.embedded-chatbot-brand span {
  display: block;
}

.embedded-chatbot-brand strong {
  font-size: 18px;
  font-weight: 850;
  line-height: 1.15;
}

.embedded-chatbot-brand span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.35;
}

.embedded-chatbot-frame-wrap {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #ffffff;
}

.embedded-chatbot-card iframe {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  flex: 1 1 auto;
  min-height: 0;
  border: 0;
  display: block;
  background: #ffffff;
}

.contact-personal-section {
  padding-top: 0;
  padding-bottom: 38px;
}

.contact-personal-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-personal-copy h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 950;
  line-height: 1.12;
}

.contact-personal-copy p {
  color: var(--muted);
  font-size: 17px;
}

.contact-options-section {
  padding-top: 18px;
}

.icon.chat { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5.5A7.5 7.5 0 0 1 11.5 2h1A7.5 7.5 0 0 1 20 9.5v.35a7.5 7.5 0 0 1-7.5 7.5h-1.3L5.4 21a1 1 0 0 1-1.52-.85l.47-5.08A7.45 7.45 0 0 1 4 9.85V5.5Zm7.5-1.5A5.5 5.5 0 0 0 6 9.5v.35c0 1.48.58 2.87 1.63 3.92l.34.34-.29 3.17 2.94-1.93h1.88A5.5 5.5 0 0 0 18 9.85V9.5A5.5 5.5 0 0 0 12.5 4h-1Z'/%3E%3C/svg%3E"); }
.icon.shield { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4 5.2v6.2c0 5.05 3.42 9.75 8 10.9 4.58-1.15 8-5.85 8-10.9V5.2L12 2Zm0 2.15 6 2.4v4.85c0 3.98-2.48 7.63-6 8.8-3.52-1.17-6-4.82-6-8.8V6.55l6-2.4Z'/%3E%3C/svg%3E"); }
.icon.clock { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm1 3v5.1l3.45 2.05-1 1.72L11 13.22V7h2Z'/%3E%3C/svg%3E"); }

.page-cta-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 130, 45, 0.18), transparent 36%),
    linear-gradient(135deg, #fff, #f3eee4);
}

.page-cta-box h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.06;
}

.page-cta-box p {
  color: var(--muted);
}

.subhero {
  padding: 56px 0 34px;
}

.subhero .section-head {
  margin-bottom: 0;
}

.footer {
  margin-top: 28px;
  padding: 42px 0;
  color: #fff;
  background: linear-gradient(135deg, #173f35, #25594c 58%, #182124);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 950;
}

.footer p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links a {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
  transition: transform 0.22s var(--ease), background 0.22s ease;
}

.footer-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 750;
}

.footer-legal a:hover {
  color: #fff;
}

.legal-panel {
  max-width: 900px;
}

.legal-panel h3 {
  margin: 28px 0 10px;
  font-size: 24px;
  font-weight: 950;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
  font-weight: 750;
}

.legal-panel ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .nav-links a {
    padding: 0 10px;
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reference-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-left {
    display: none;
  }

  .nav-inner {
    min-height: 72px;
  }

  .brand-label {
    max-width: 150px;
    font-size: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    margin-left: 0;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(24, 33, 36, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.22s var(--ease), visibility 0.22s var(--ease), transform 0.22s var(--ease);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    background: #f8f6f0;
    font-size: 15px;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 52px 0 58px;
  }

  .hero-media,
  .hero-media img {
    min-height: 440px;
  }

  .trust-row,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 72px 0;
  }

  .media-panel {
    min-height: 340px;
  }

  .page-cta-box,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .topbar-inner {
    min-height: 32px;
    font-size: 12px;
  }

  .topbar-right {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .logo {
    max-width: calc(100% - 58px);
    padding: 6px 8px 6px 6px;
  }

  .site-logo {
    width: 42px;
    height: 42px;
  }

  .brand-label {
    max-width: 118px;
    font-size: 11px;
  }

  .hero {
    padding: 38px 0 48px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text,
  .section-head p,
  .split-copy p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-row,
  .stats-grid,
  .flip-grid,
  .reference-grid,
  .info-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 350px;
    border-radius: 22px;
  }

  .floating-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .flip-card {
    min-height: 238px;
  }

  .flip-face,
  .info-card,
  .reference-body,
  .testimonial-card,
  .contact-card,
  .media-copy-panel,
  .split-copy {
    padding: 22px;
  }

  .section-head h2,
  .media-copy-panel h2,
  .split-copy h2,
  .contact-copy h2,
  .page-cta-box h2 {
    font-size: 31px;
  }

  .media-panel {
    min-height: 280px;
    border-radius: 22px;
  }

  .page-cta-box {
    padding: 24px;
    border-radius: 20px;
  }
}

/* Index hero matched to the provided visual reference. */
.home-hero {
  padding: 64px 0 76px;
  background:
    linear-gradient(rgba(24, 33, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 33, 36, 0.035) 1px, transparent 1px),
    #fdfbf6;
  background-size: 86px 86px, 86px 86px, auto;
}

.home-hero .container {
  width: min(1310px, calc(100% - 76px));
}

.home-hero-grid {
  grid-template-columns: minmax(560px, 590px) minmax(540px, 670px);
  gap: 68px;
  align-items: start;
}

.home-hero .hero-copy {
  padding-top: 32px;
}

.home-hero .eyebrow {
  width: min(100%, 526px);
  min-height: 62px;
  align-items: center;
  margin-bottom: 52px;
  padding: 13px 18px;
  border-color: rgba(126, 86, 42, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  color: #6b4319;
  box-shadow: 0 18px 42px rgba(72, 50, 28, 0.10);
  font-size: 14px;
  line-height: 1.38;
}

.home-hero .eyebrow span {
  width: 36px;
  height: 2px;
  flex: 0 0 auto;
  background: #20342f;
}

.home-hero h1 {
  max-width: 590px;
  margin-bottom: 28px;
  color: #172025;
  font-size: clamp(66px, 6.1vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.home-hero h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #bd812f, #1e3f34);
}

.home-hero .hero-text {
  max-width: 560px;
  margin-bottom: 48px;
  color: #657173;
  font-size: 22px;
  line-height: 1.48;
}

.home-hero .hero-actions {
  gap: 20px;
  margin-bottom: 0;
}

.home-hero .btn {
  min-height: 62px;
  border-radius: 15px;
  padding: 0 24px;
  font-size: 16px;
  box-shadow: 0 16px 34px rgba(24, 33, 36, 0.11);
}

.home-hero .btn span {
  margin-left: 12px;
  font-size: 24px;
  line-height: 1;
}

.home-hero .btn-primary {
  min-width: 322px;
  background: linear-gradient(135deg, #cc8e38, #9b611e);
  box-shadow: 0 18px 38px rgba(156, 98, 31, 0.28);
}

.home-hero .btn-secondary {
  min-width: 246px;
  border-color: rgba(24, 33, 36, 0.10);
}

.home-hero .trust-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 62px;
}

.trust-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 25px 22px;
  border: 1px solid rgba(24, 33, 36, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(24, 33, 36, 0.09);
}

.trust-card strong {
  display: block;
  margin-top: 24px;
  color: #172025;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.04;
}

.trust-card p {
  margin-top: 16px;
  color: #657173;
  font-size: 16px;
  line-height: 1.48;
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: #bd812f;
  -webkit-mask: var(--trust-icon) center / contain no-repeat;
  mask: var(--trust-icon) center / contain no-repeat;
}

.trust-shield {
  --trust-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Zm0 2.2 6 2.25V11c0 3.85-2.45 7.52-6 8.9-3.55-1.38-6-5.05-6-8.9V6.45l6-2.25Zm3.7 5.1-4.7 4.7-2.2-2.2-1.4 1.4 3.6 3.6 6.1-6.1-1.4-1.4Z'/%3E%3C/svg%3E");
}

.trust-clock {
  --trust-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm1 3h-2v6l5 3 1-1.73-4-2.27V7Z'/%3E%3C/svg%3E");
}

.trust-roller {
  --trust-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 4h13a3 3 0 1 1 0 6h-3v2.5a2.5 2.5 0 0 1-2 2.45V22H7v-7.05a2.5 2.5 0 0 1-2-2.45V10H3V4Zm2 2v2h11a1 1 0 1 0 0-2H5Zm2 4v2.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5V10H7Z'/%3E%3C/svg%3E");
}

.home-hero .hero-media {
  min-height: 956px;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: 0 30px 74px rgba(24, 33, 36, 0.14);
}

.home-hero .hero-media::before {
  display: none;
}

.home-hero .hero-media img {
  width: 100%;
  height: 956px;
  min-height: 956px;
  object-fit: cover;
  object-position: 92% center;
}

.home-hero .hero-media:hover img {
  transform: none;
  filter: none;
}

.home-hero .floating-note {
  position: absolute;
  z-index: 4;
  left: 32px;
  right: 32px;
  bottom: 46px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 19px 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 56px rgba(24, 33, 36, 0.16);
  backdrop-filter: blur(18px);
}

.home-hero .floating-note strong {
  color: #172025;
  font-size: 19px;
}

.home-hero .floating-note span {
  color: #667174;
  font-size: 14px;
}

.floating-note-icon {
  width: 43px;
  height: 43px;
  background: #bd812f;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3V2Zm13 8H4v10h16V10ZM4 8h16V6h-3v2h-2V6H9v2H7V6H4v2Zm2 4h3v3H6v-3Zm5 0h3v3h-3v-3Zm5 0h2v3h-2v-3Zm-10 5h3v2H6v-2Zm5 0h3v2h-3v-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3V2Zm13 8H4v10h16V10ZM4 8h16V6h-3v2h-2V6H9v2H7V6H4v2Zm2 4h3v3H6v-3Zm5 0h3v3h-3v-3Zm5 0h2v3h-2v-3Zm-10 5h3v2H6v-2Zm5 0h3v2h-3v-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.home-hero .floating-note .pill {
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #cc8e38, #9b611e);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 16px 30px rgba(156, 98, 31, 0.24);
}

@media (max-width: 1180px) {
  .home-hero .container {
    width: min(100% - 48px, 980px);
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero .hero-copy {
    padding-top: 0;
  }

  .home-hero .hero-media,
  .home-hero .hero-media img {
    height: auto;
    min-height: 720px;
  }
}

@media (max-width: 760px) {
  .home-hero {
    padding: 38px 0 48px;
  }

  .home-hero .container {
    width: min(100% - 28px, var(--container));
  }

  .home-hero .eyebrow {
    min-height: auto;
    margin-bottom: 34px;
    border-radius: 16px;
    font-size: 12px;
  }

  .home-hero h1 {
    font-size: 46px;
  }

  .home-hero .hero-text {
    margin-bottom: 30px;
    font-size: 18px;
  }

  .home-hero .hero-actions {
    display: grid;
    gap: 12px;
  }

  .home-hero .btn,
  .home-hero .btn-primary,
  .home-hero .btn-secondary {
    width: 100%;
    min-width: 0;
  }

  .home-hero .trust-row {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .trust-card {
    min-height: auto;
  }

  .home-hero .hero-media,
  .home-hero .hero-media img {
    min-height: 520px;
    height: 520px;
  }

  .home-hero .hero-media img {
    object-position: 94% center;
  }

  .home-hero .floating-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 42px 1fr;
    padding: 14px;
  }

  .home-hero .floating-note .pill {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }
}

/* Screenshot-matched start page header and hero. */
body:has(.screenshot-hero) {
  background:
    linear-gradient(rgba(24, 33, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 33, 36, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fffdf8 0%, #f7f6f1 48%, #eef5f2 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

body:has(.screenshot-hero) .stats-band + .section {
  padding-top: 28px;
}

body:has(.screenshot-hero) .stats-band {
  display: none;
}

body:has(.screenshot-hero) .stats-band + .section {
  padding-top: 58px;
}

body:has(.screenshot-hero) .stats-band + .section .flip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body:has(.screenshot-hero) .stats-band + .section .flip-card {
  min-height: 292px;
}

body:has(.screenshot-hero) .stats-band + .section .flip-face {
  padding: 26px;
}

body:has(.screenshot-hero) .stats-band + .section .flip-front {
  justify-content: flex-start;
}

body:has(.screenshot-hero) .stats-band + .section .flip-card .icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
}

body:has(.screenshot-hero) .stats-band + .section .flip-card .icon::before {
  width: 32px;
  height: 32px;
}

body:has(.screenshot-hero) .stats-band + .section .flip-front h3 {
  position: absolute;
  top: 128px;
  left: 26px;
  right: 26px;
  margin: 0;
}

body:has(.screenshot-hero) .stats-band + .section .flip-front p {
  position: absolute;
  top: 178px;
  left: 26px;
  right: 26px;
  margin: 0;
}

body:has(.screenshot-hero) .stats-band + .section .flip-back h3 {
  margin-bottom: 24px;
}

.stats-band + .section,
.section + .page-cta,
.reference-grid + .section {
  padding-top: 36px;
}

.section:has(.section-head.center) {
  padding-top: 58px;
}

body:has(.main-logo) .topbar {
  height: 46px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(90deg, #173f35, #102e28);
}

body:has(.main-logo) .topbar .container,
body:has(.main-logo) .navbar .container,
.screenshot-hero .container {
  width: min(100% - 144px, 1634px);
}

body:has(.main-logo) .topbar-inner {
  min-height: 46px;
  font-size: 15px;
  font-weight: 850;
}

body:has(.main-logo) .topbar-left {
  gap: 48px;
}

body:has(.main-logo) .topbar-right {
  gap: 28px;
}

.topbar-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.topbar-item::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: #d7a55a;
  -webkit-mask: var(--top-icon) center / contain no-repeat;
  mask: var(--top-icon) center / contain no-repeat;
}

.topbar-time { --top-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm1 3h-2v6l5 3 1-1.73-4-2.27V7Z'/%3E%3C/svg%3E"); }
.topbar-location { --top-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a8 8 0 0 0-8 8c0 5.5 8 12 8 12s8-6.5 8-12a8 8 0 0 0-8-8Zm0 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z'/%3E%3C/svg%3E"); }
.topbar-phone { --top-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.2 3.5 9.4 2a2.6 2.6 0 0 1 3.55.72l1.1 1.62a2.6 2.6 0 0 1-.42 3.43l-1.05.98a12.2 12.2 0 0 0 2.67 2.67l.98-1.05a2.6 2.6 0 0 1 3.43-.42l1.62 1.1a2.6 2.6 0 0 1 .72 3.55l-1.5 2.2a4 4 0 0 1-4.3 1.68A16.8 16.8 0 0 1 4.52 7.8 4 4 0 0 1 7.2 3.5Z'/%3E%3C/svg%3E"); }

.topbar-number {
  color: #d7a55a;
  font-weight: 950;
  letter-spacing: 0.02em;
}

body:has(.main-logo) .navbar {
  height: 116px;
  position: relative;
  top: auto;
  border-bottom: 0;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

body:has(.main-logo) .nav-inner {
  min-height: 116px;
}

.main-logo {
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.main-logo:hover {
  transform: none;
  box-shadow: none;
}

.main-logo-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    radial-gradient(circle at 36% 20%, rgba(191, 132, 50, 0.12), transparent 55%) border-box;
  box-shadow: 0 18px 42px rgba(24, 33, 36, 0.08);
  position: relative;
}

.main-logo-icon::before {
  content: "";
  position: absolute;
  inset: 14px;
  background: #bd812f;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 4h13a3 3 0 1 1 0 6h-3v2.5a2.5 2.5 0 0 1-2 2.45V22H7v-7.05a2.5 2.5 0 0 1-2-2.45V10H3V4Zm2 2v2h11a1 1 0 1 0 0-2H5Zm2 4v2.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5V10H7Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 4h13a3 3 0 1 1 0 6h-3v2.5a2.5 2.5 0 0 1-2 2.45V22H7v-7.05a2.5 2.5 0 0 1-2-2.45V10H3V4Zm2 2v2h11a1 1 0 1 0 0-2H5Zm2 4v2.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5V10H7Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.main-logo-text strong {
  display: block;
  color: #172025;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.18;
}

.main-logo-text small {
  display: block;
  margin-top: 7px;
  color: #a26a24;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body:has(.main-logo) .nav-links {
  gap: 12px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body:has(.main-logo) .nav-links a {
  min-height: 58px;
  padding: 0 19px;
  color: #172025;
  font-size: 17px;
  font-weight: 950;
  border-radius: 999px;
  box-shadow: none;
  white-space: nowrap;
}

body:has(.main-logo) .nav-links a:hover,
body:has(.main-logo) .nav-links a.active {
  background: #f0ece6;
  box-shadow: 0 18px 42px rgba(24, 33, 36, 0.10);
}

body:has(.main-logo) .nav-links .nav-cta {
  min-width: 226px;
  color: #fff !important;
  background: linear-gradient(135deg, #c58a39, #95601f) !important;
  box-shadow: 0 18px 40px rgba(156, 98, 31, 0.25) !important;
}

body:has(.main-logo) .nav-links .nav-cta::after {
  content: "→";
  margin-left: 20px;
}

.screenshot-hero {
  min-height: 674px;
  padding: 14px 0 0;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      #ffffff 0%,
      #ffffff 39%,
      rgba(255, 255, 255, 0.98) 47%,
      rgba(255, 255, 255, 0.78) 55%,
      rgba(255, 255, 255, 0.36) 64%,
      rgba(255, 255, 255, 0.04) 73%),
    url("images/Maler Mainpage.png") right bottom / auto 100% no-repeat;
  background-color: #fff;
}

.screenshot-hero-inner {
  display: block;
}

.screenshot-hero .hero-copy {
  max-width: 770px;
}

.screenshot-hero .eyebrow {
  gap: 13px;
  min-height: auto;
  margin-bottom: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #1d3832;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.45;
}

.screenshot-hero .eyebrow span {
  width: 58px;
  height: 3px;
  background: #bd812f;
}

.screenshot-hero h1 {
  max-width: 770px;
  margin-bottom: 30px;
  color: #172825;
  font-size: clamp(64px, 5.15vw, 86px);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: -0.025em;
}

.screenshot-hero h1 span {
  color: #bd812f;
}

.screenshot-hero .hero-text {
  max-width: 640px;
  margin-bottom: 32px;
  color: #687578;
  font-size: 22px;
  line-height: 1.55;
}

.screenshot-hero .hero-actions {
  gap: 26px;
  margin-bottom: 54px;
}

.screenshot-hero .btn {
  min-height: 68px;
  border-radius: 16px;
  padding: 0 33px;
  font-size: 17px;
}

.screenshot-hero .btn-primary {
  min-width: 354px;
  background: linear-gradient(135deg, #c78b39, #9b621f);
}

.screenshot-hero .btn-secondary {
  min-width: 260px;
}

.screenshot-trust {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 0;
}

.trust-line-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 20px;
  min-width: 230px;
  padding-right: 42px;
  margin-right: 42px;
  border-right: 1px solid rgba(24, 33, 36, 0.18);
}

.trust-line-item:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.trust-line-item .trust-icon {
  width: 44px;
  height: 44px;
}

.trust-line-item strong {
  color: #172025;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  body:has(.main-logo) .topbar .container,
  body:has(.main-logo) .navbar .container,
  .screenshot-hero .container {
    width: min(100% - 42px, var(--container));
  }

  body:has(.main-logo) .navbar {
    height: auto;
  }

  body:has(.main-logo) .nav-inner {
    min-height: 94px;
  }

  body:has(.main-logo) .menu-toggle {
    display: block;
  }

  body:has(.main-logo) .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(24, 33, 36, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
  }

  body:has(.main-logo) .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  body:has(.main-logo) .nav-links a {
    min-height: 50px;
    justify-content: flex-start;
    border-radius: 14px;
    font-size: 16px;
  }

  .screenshot-hero {
    background-position: right center;
  }
}

@media (max-width: 760px) {
  body:has(.main-logo) .topbar {
    height: auto;
  }

  body:has(.main-logo) .topbar-inner {
    min-height: 34px;
    font-size: 12px;
  }

  body:has(.main-logo) .topbar-left {
    display: none;
  }

  .main-logo-icon {
    width: 54px;
    height: 54px;
  }

  .main-logo-text strong {
    font-size: 17px;
  }

  .main-logo-text small {
    font-size: 10px;
  }

  .screenshot-hero {
    min-height: auto;
    padding: 42px 0 46px;
    background:
      linear-gradient(90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.98) 52%,
        rgba(255, 255, 255, 0.76) 72%,
        rgba(255, 255, 255, 0.32) 100%),
      url("images/Maler Mainpage.png") right center / auto 92% no-repeat;
  }

  .screenshot-hero .eyebrow {
    font-size: 12px;
  }

  .screenshot-hero h1 {
    font-size: 43px;
  }

  .screenshot-hero .hero-text {
    font-size: 17px;
  }

  .screenshot-hero .hero-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 34px;
  }

  .screenshot-hero .btn,
  .screenshot-hero .btn-primary,
  .screenshot-hero .btn-secondary {
    width: 100%;
    min-width: 0;
  }

  .screenshot-trust {
    display: grid;
    gap: 14px;
  }

  .trust-line-item {
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 33, 36, 0.14);
  }

  .trust-line-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  body:has(.main-logo) .topbar .container,
  body:has(.main-logo) .navbar .container,
  .screenshot-hero .container,
  .container {
    width: min(100% - 26px, var(--container));
  }

  body:has(.main-logo) .topbar-inner {
    min-height: 36px;
    justify-content: center;
    padding: 4px 0;
    font-size: 12px;
    line-height: 1.2;
  }

  body:has(.main-logo) .topbar-right {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .topbar-item {
    gap: 7px;
  }

  .topbar-item::before {
    width: 15px;
    height: 15px;
  }

  body:has(.main-logo) .nav-inner {
    min-height: 70px;
    gap: 10px;
  }

  .main-logo {
    max-width: calc(100% - 56px);
    gap: 10px;
  }

  .main-logo-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
  }

  .main-logo-icon::before {
    inset: 10px;
  }

  .main-logo-text strong {
    font-size: 14px;
    line-height: 1.14;
  }

  .main-logo-text small {
    margin-top: 4px;
    font-size: 8.5px;
    letter-spacing: 0.14em;
  }

  body:has(.main-logo) .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  body:has(.main-logo) .nav-links {
    top: calc(100% + 8px);
    left: 13px;
    right: 13px;
    gap: 7px;
    padding: 10px;
    border-radius: 18px;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  body:has(.main-logo) .nav-links a {
    min-height: 46px;
    padding: 0 14px;
    font-size: 15px;
  }

  body:has(.main-logo) .nav-links .nav-cta {
    min-width: 0;
    justify-content: center;
  }

  .screenshot-hero {
    padding: 32px 0 280px;
    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(255, 255, 255, 0.86) 64%,
        rgba(255, 255, 255, 0.38) 100%),
      url("images/Maler Mainpage.png") right bottom / auto 330px no-repeat;
  }

  .screenshot-hero .eyebrow {
    gap: 9px;
    margin-bottom: 20px;
    font-size: 11px;
    line-height: 1.35;
  }

  .screenshot-hero .eyebrow span {
    width: 34px;
  }

  .screenshot-hero h1 {
    max-width: 350px;
    margin-bottom: 18px;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.02;
  }

  .screenshot-hero .hero-text {
    max-width: 360px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .screenshot-hero .hero-actions {
    gap: 10px;
    margin-bottom: 26px;
  }

  .screenshot-hero .btn {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 15px;
  }

  .screenshot-trust {
    gap: 8px;
  }

  .trust-line-item {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 10px 0;
  }

  .trust-line-item .trust-icon {
    width: 34px;
    height: 34px;
  }

  .trust-line-item strong {
    font-size: 15px;
    line-height: 1.22;
  }

  .subhero {
    padding: 46px 0 24px;
  }

  .section {
    padding: 50px 0;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section-head h2,
  .media-copy-panel h2,
  .split-copy h2,
  .contact-copy h2,
  .page-cta-box h2 {
    font-size: clamp(29px, 8vw, 36px);
    line-height: 1.08;
  }

  .section-head p,
  .media-copy-panel p,
  .split-copy p,
  .contact-copy p {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .flip-grid,
  .reference-grid,
  .info-grid,
  .contact-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .media-panel {
    min-height: 260px;
    border-radius: 20px;
  }

  .media-panel img,
  .reference-image img {
    object-position: center;
  }

  .reference-image {
    height: 230px;
    min-height: 230px;
  }

  .flip-card {
    min-height: 225px;
  }

  .flip-face,
  .info-card,
  .reference-body,
  .testimonial-card,
  .contact-card,
  .media-copy-panel,
  .split-copy {
    padding: 20px;
  }

  .page-cta-box {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  body:has(.main-logo) .topbar-inner {
    font-size: 11px;
  }

  .topbar-number {
    letter-spacing: 0;
  }

  .main-logo-text strong {
    font-size: 13px;
  }

  .main-logo-text small {
    font-size: 8px;
  }

  .screenshot-hero {
    padding-bottom: 250px;
    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.98) 55%,
        rgba(255, 255, 255, 0.78) 70%,
        rgba(255, 255, 255, 0.32) 100%),
      url("images/Maler Mainpage.png") right bottom / auto 290px no-repeat;
  }

  .screenshot-hero h1 {
    font-size: 38px;
  }

  .reference-image {
    height: 210px;
    min-height: 210px;
  }
}

/* Premium mobile refinement layer. Desktop styling above stays intact. */
.mobile-hero-image {
  display: none;
}

@media (max-width: 900px) {
  .home-color-consulting {
    display: none;
  }

  body:has(.screenshot-hero) .stats-band {
    display: none;
  }

  .home-why .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-why .info-card {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .home-why .info-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
  }

  .home-why .info-card:first-child .icon {
    grid-row: span 2;
  }

  .home-why .info-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: linear-gradient(135deg, #fff4df, #e9f2ee);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 12px 24px rgba(23, 63, 53, 0.10);
  }

  .home-why .info-card .icon::before {
    width: 28px;
    height: 28px;
    background: var(--brand-dark);
  }

  .home-why .info-card h3 {
    margin: 14px 0 7px;
    font-size: 20px;
    line-height: 1.12;
  }

  .home-why .info-card:first-child h3 {
    margin-top: 0;
  }

  .home-why .info-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-shell {
    overflow-x: clip;
  }

  .container,
  body:has(.main-logo) .topbar .container,
  body:has(.main-logo) .navbar .container,
  .screenshot-hero .container {
    width: min(100% - 32px, var(--container));
  }

  body:has(.main-logo) .topbar {
    height: auto;
  }

  body:has(.main-logo) .topbar-inner {
    min-height: 58px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    text-align: left;
  }

  body:has(.main-logo) .topbar-left {
    display: contents;
  }

  body:has(.main-logo) .topbar-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    justify-items: start;
    min-width: 0;
  }

  .topbar-item {
    min-width: 0;
    gap: 9px;
    line-height: 1.25;
  }

  .topbar-item::before {
    width: 22px;
    height: 22px;
  }

  .topbar-number {
    padding-left: 31px;
    font-size: inherit;
    line-height: 1.2;
  }

  body:has(.main-logo) .navbar {
    position: sticky;
    top: 0;
    height: auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(24, 33, 36, 0.08);
    box-shadow: 0 16px 42px rgba(24, 33, 36, 0.08);
  }

  body:has(.main-logo) .nav-inner {
    min-height: 88px;
  }

  .main-logo {
    gap: 13px;
  }

  .main-logo-icon {
    width: 58px;
    height: 58px;
  }

  .main-logo-text strong {
    font-size: 19px;
  }

  body:has(.main-logo) .menu-toggle {
    display: grid;
    place-content: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: #fff;
  }

  body:has(.main-logo) .nav-links {
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .subhero {
    padding: 44px 0 20px;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .section-head h2,
  .media-copy-panel h2,
  .split-copy h2,
  .contact-copy h2,
  .page-cta-box h2 {
    font-size: clamp(30px, 7vw, 42px);
    line-height: 1.08;
  }

  .section-head p,
  .media-copy-panel p,
  .split-copy p,
  .contact-copy p {
    max-width: 62ch;
    font-size: 16px;
    line-height: 1.65;
  }

  .stats-grid,
  .flip-grid,
  .reference-grid,
  .info-grid,
  .contact-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-card {
    min-height: 242px;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-face {
    padding: 18px;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-card .icon::before {
    width: 27px;
    height: 27px;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-front h3 {
    top: 96px;
    left: 18px;
    right: 18px;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-front p {
    top: 136px;
    left: 18px;
    right: 18px;
  }

  .stats-band {
    padding: 18px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-item {
    min-height: 0;
    padding: 18px;
  }

  .flip-card {
    min-height: 238px;
  }

  .flip-face,
  .info-card,
  .reference-body,
  .contact-card,
  .media-copy-panel,
  .split-copy,
  .page-cta-box {
    border-radius: 20px;
    padding: 22px;
  }

  .flip-back .card-cta-link-zone {
    padding: 0 22px 22px;
  }

  .media-panel {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .media-panel img,
  .reference-image img {
    object-fit: cover;
    object-position: center;
  }

  .reference-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .contact-card form {
    gap: 12px;
  }

  .contact-card input,
  .contact-card textarea {
    min-height: 52px;
    border-radius: 12px;
    font-size: 16px;
  }

  .contact-card textarea {
    min-height: 132px;
  }

  .page-cta-box {
    align-items: stretch;
    gap: 20px;
  }

  .footer {
    padding: 36px 0 28px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-links {
    width: 100%;
  }

  .footer-links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
  }

  .footer-legal {
    justify-content: flex-start;
    margin-top: 18px;
  }
}

@media (max-width: 768px) {
  .container,
  body:has(.main-logo) .topbar .container,
  body:has(.main-logo) .navbar .container,
  .screenshot-hero .container {
    width: min(100% - 28px, var(--container));
  }

  body:has(.main-logo) .topbar-inner {
    grid-template-columns: 0.95fr 1fr 1.05fr;
    gap: 10px;
    font-size: 12px;
  }

  .topbar-item::before {
    width: 20px;
    height: 20px;
  }

  .topbar-number {
    padding-left: 29px;
    letter-spacing: 0;
  }

  body:has(.main-logo) .nav-inner {
    min-height: 84px;
  }

  .main-logo {
    max-width: calc(100% - 64px);
  }

  .main-logo-icon {
    width: 54px;
    height: 54px;
  }

  .main-logo-text strong {
    font-size: 18px;
    line-height: 1.16;
  }

  .main-logo-text small {
    font-size: 10px;
  }

  .screenshot-hero {
    min-height: 0;
    padding: 34px 0 30px;
    background: #fff;
  }

  .screenshot-hero .hero-copy {
    max-width: 100%;
  }

  .screenshot-hero .eyebrow {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 26px;
    color: #173f35;
    font-size: clamp(15px, 3.8vw, 19px);
    line-height: 1.35;
  }

  .screenshot-hero .eyebrow span {
    width: 72px;
    height: 3px;
  }

  .screenshot-hero h1 {
    max-width: 11ch;
    margin-bottom: 20px;
    font-size: clamp(48px, 13vw, 72px);
    line-height: 1.03;
    letter-spacing: 0;
  }

  .screenshot-hero .hero-text {
    max-width: 35ch;
    margin-bottom: 24px;
    font-size: clamp(18px, 4.5vw, 24px);
    line-height: 1.5;
  }

  .screenshot-hero .hero-actions {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
  }

  .screenshot-hero .btn,
  .screenshot-hero .btn-primary,
  .screenshot-hero .btn-secondary,
  .btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    border-radius: 15px;
    padding: 0 18px;
    font-size: 16px;
    text-align: center;
  }

  .mobile-hero-image {
    display: block;
    overflow: hidden;
    margin: 22px 0 26px;
    border-radius: 18px;
    background: #f0ece6;
    box-shadow: 0 18px 44px rgba(24, 33, 36, 0.10);
  }

  .mobile-hero-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 64% center;
  }

  .screenshot-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 0;
    padding-top: 6px;
  }

  .trust-line-item {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    min-width: 0;
    margin: 0;
    padding: 8px 10px;
    border-right: 1px solid rgba(24, 33, 36, 0.15);
    border-bottom: 0;
    text-align: center;
  }

  .trust-line-item:last-child {
    border-right: 0;
  }

  .trust-line-item .trust-icon {
    width: 40px;
    height: 40px;
  }

  .trust-line-item strong {
    font-size: clamp(14px, 3.5vw, 18px);
    line-height: 1.25;
  }

  .section:has(.section-head.center) {
    padding-top: 44px;
  }

  .section-kicker,
  .eyebrow {
    font-size: 11px;
  }

  .section-head.center {
    text-align: left;
  }

  .section-head.center .section-kicker {
    justify-content: flex-start;
  }

  .flip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .flip-card {
    min-height: 242px;
  }

  .flip-back {
    justify-content: space-between;
    gap: 0;
  }

  .flip-back h3 {
    margin-bottom: 0;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-back h3 {
    margin-bottom: 0;
  }

  .flip-back h3 {
    font-size: 19px;
    line-height: 1.08;
  }

  .flip-back p {
    font-size: 12.5px;
    line-height: 1.36;
  }

  .flip-back .card-cta-link-zone {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    height: auto;
    padding: 0;
    font-size: 16px;
    line-height: 1.05;
  }

  .flip-face {
    padding: 18px;
  }

  .flip-front {
    justify-content: flex-start;
  }

  .flip-front h3 {
    position: absolute;
    top: 96px;
    left: 18px;
    right: 18px;
    min-height: 0;
    margin: 0;
    display: block;
  }

  .flip-front p {
    position: absolute;
    top: 138px;
    left: 18px;
    right: 18px;
    margin: 0;
  }

  .flip-face h3,
  .reference-body h3,
  .info-card h3 {
    font-size: 20px;
  }

  .flip-front p,
  .flip-back p {
    font-size: 13px;
    line-height: 1.45;
  }

  .flip-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .flip-card .icon::before {
    width: 27px;
    height: 27px;
  }

  .reference-card {
    border-radius: 20px;
  }

  .reference-meta {
    gap: 8px;
  }

  .contact-points div {
    border-radius: 13px;
    padding: 14px 15px;
  }

  .legal-panel {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container,
  body:has(.main-logo) .topbar .container,
  body:has(.main-logo) .navbar .container,
  .screenshot-hero .container {
    width: min(100% - 24px, var(--container));
  }

  body:has(.main-logo) .topbar-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    font-size: 10.5px;
  }

  .topbar-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 6px;
  }

  .topbar-item::before {
    width: 21px;
    height: 21px;
  }

  .topbar-number {
    padding-left: 28px;
    font-size: 10.5px;
  }

  body:has(.main-logo) .nav-inner {
    min-height: 78px;
  }

  .main-logo-icon {
    width: 50px;
    height: 50px;
  }

  .main-logo-icon::before {
    inset: 12px;
  }

  .main-logo-text strong {
    font-size: 17px;
  }

  .main-logo-text small {
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  body:has(.main-logo) .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .screenshot-hero {
    padding-top: 28px;
  }

  .screenshot-hero .eyebrow {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
  }

  .screenshot-hero .eyebrow span {
    width: 54px;
  }

  .screenshot-hero h1 {
    font-size: clamp(44px, 13.5vw, 58px);
  }

  .screenshot-hero .hero-text {
    max-width: 31ch;
    font-size: 18px;
  }

  .screenshot-hero .btn,
  .btn {
    min-height: 56px;
    font-size: 15px;
  }

  .mobile-hero-image {
    margin-top: 20px;
    border-radius: 16px;
  }

  .mobile-hero-image img {
    aspect-ratio: 1 / 0.86;
  }

  .trust-line-item {
    padding: 8px 7px;
  }

  .trust-line-item .trust-icon {
    width: 34px;
    height: 34px;
  }

  .trust-line-item strong {
    font-size: 14px;
  }

  .section {
    padding: 44px 0;
  }

  .stats-band {
    padding: 14px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-item {
    min-height: 146px;
    padding: 15px 14px;
    border-radius: 16px;
  }

  .stat-item strong {
    margin-bottom: 7px;
    font-size: clamp(22px, 6.4vw, 27px);
    line-height: 1;
  }

  .stat-item span {
    font-size: 13px;
    line-height: 1.48;
  }

  .section-head h2,
  .media-copy-panel h2,
  .split-copy h2,
  .contact-copy h2,
  .page-cta-box h2 {
    font-size: 30px;
  }

  .flip-card {
    min-height: 226px;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-card {
    min-height: 226px;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-face {
    padding: 16px;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-card .icon {
    width: 42px;
    height: 42px;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-card .icon::before {
    width: 24px;
    height: 24px;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-front h3 {
    top: 88px;
    left: 16px;
    right: 16px;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-front p {
    top: 122px;
    left: 16px;
    right: 16px;
  }

  .flip-back .card-cta-link-zone {
    height: auto;
    padding: 0;
    font-size: 15px;
    line-height: 1.05;
  }

  .flip-back {
    justify-content: space-between;
    gap: 0;
  }

  .flip-back h3 {
    font-size: 17px;
    line-height: 1.08;
    margin-bottom: 0;
  }

  body:has(.screenshot-hero) .stats-band + .section .flip-back h3 {
    margin-bottom: 0;
  }

  .flip-face {
    padding: 16px;
  }

  .flip-front h3 {
    top: 88px;
    left: 16px;
    right: 16px;
  }

  .flip-front p {
    top: 122px;
    left: 16px;
    right: 16px;
  }

  .flip-face h3 {
    font-size: 17px;
  }

  .flip-front p,
  .flip-back p {
    font-size: 12px;
    line-height: 1.34;
  }

  .flip-card .icon {
    width: 42px;
    height: 42px;
  }

  .flip-card .icon::before {
    width: 24px;
    height: 24px;
  }

  .media-panel,
  .reference-image {
    aspect-ratio: 1.12 / 1;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-links a {
    justify-content: center;
    padding: 9px 10px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .home-why .info-grid {
    gap: 10px;
  }

  .home-why .info-card {
    padding: 15px;
  }

  .home-why .info-card .icon {
    width: 42px;
    height: 42px;
  }

  .home-why .info-card .icon::before {
    width: 25px;
    height: 25px;
  }

  .home-why .info-card h3 {
    font-size: 18px;
  }

  .home-why .info-card p {
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .contact-hero-grid,
  .contact-chat-panel {
    grid-template-columns: 1fr;
  }

  .contact-hero-visual {
    min-height: 280px;
  }

  .contact-hero-visual img {
    max-height: 330px;
  }

  .embedded-chatbot-card {
    order: 1;
  }

  .chat-benefits {
    order: 2;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 42px 0 22px;
  }

  .contact-hero h1 {
    max-width: 12ch;
    margin-bottom: 18px;
    font-size: clamp(44px, 12vw, 62px);
    line-height: 1.04;
  }

  .contact-hero-copy p:not(.section-kicker) {
    max-width: 35ch;
    font-size: 17px;
    line-height: 1.58;
  }

  .contact-hero-visual {
    min-height: 0;
    margin-top: 2px;
  }

  .contact-hero-visual::before {
    inset: 18% 6% 5%;
    border-radius: 24px;
  }

  .contact-hero-visual img {
    width: min(100%, 340px);
    max-height: 300px;
  }

  .contact-chat-section {
    padding-top: 18px;
  }

  .contact-chat-panel {
    gap: 30px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .embedded-chatbot-card {
    min-height: 640px;
    border-radius: 20px;
  }

  .embedded-chatbot-header {
    padding: 12px 14px;
  }

  .embedded-chatbot-brand {
    gap: 10px;
  }

  .embedded-chatbot-icon {
    width: 44px;
    height: 44px;
  }

  .contact-page .topbar-inner {
    gap: 5px;
  }

  .contact-page .topbar-item {
    grid-template-columns: 19px minmax(0, 1fr);
    gap: 5px;
    overflow-wrap: anywhere;
  }

  .contact-page .topbar-item::before {
    width: 19px;
    height: 19px;
  }

  .contact-page .topbar-number {
    padding-left: 0;
  }

  .embedded-chatbot-brand strong {
    font-size: 15px;
  }

  .embedded-chatbot-brand span {
    font-size: 11px;
  }

  .chat-benefits h2 {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .chat-benefit-list {
    gap: 20px;
  }

  .chat-benefit {
    gap: 16px;
  }

  .chat-benefit .icon {
    width: 48px;
    height: 48px;
  }

  .contact-personal-section {
    padding-top: 4px;
    padding-bottom: 28px;
  }

  .contact-personal-copy {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: clamp(40px, 12.5vw, 54px);
  }

  .contact-hero-visual img {
    width: min(100%, 300px);
    max-height: 260px;
  }

  .embedded-chatbot-card {
    min-height: 610px;
  }

  .embedded-chatbot-frame-wrap iframe {
    width: 440px !important;
    max-width: none !important;
    height: 122% !important;
    transform: scale(0.82) !important;
    transform-origin: 0 0;
  }

  .embedded-chatbot-brand span {
    max-width: 28ch;
  }

  .embedded-chatbot-icon {
    width: 42px;
    height: 42px;
  }

  .contact-page .topbar-inner {
    gap: 4px;
    font-size: 10px;
  }

  .contact-page .topbar-item {
    grid-template-columns: 17px minmax(0, 1fr);
    gap: 4px;
  }

  .contact-page .topbar-item::before {
    width: 17px;
    height: 17px;
  }

  .contact-page .topbar-number {
    font-size: 10px;
  }

  .contact-page .topbar-phone {
    display: none;
  }

  .embedded-chatbot-icon::before {
    width: 27px;
    height: 27px;
  }

  .chat-benefit {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .chat-benefit .icon {
    width: 42px;
    height: 42px;
  }

  .chat-benefit .icon::before {
    width: 24px;
    height: 24px;
  }

  .contact-personal-copy h2 {
    font-size: 27px;
  }
}

@media (max-width: 360px) {
  .embedded-chatbot-frame-wrap iframe {
    height: 152% !important;
    transform: scale(0.66) !important;
  }
}

/* Card alignment refinement: consistent internal rows without changing the visual theme. */
.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  min-height: 32px;
}

.info-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-card > .icon {
  flex: 0 0 auto;
  margin-bottom: 18px;
}

.info-card h3 {
  min-height: 58px;
  display: flex;
  align-items: flex-start;
  margin: 0 0 10px;
}

.info-card p {
  margin: 0;
}

.info-card > .mini-link {
  margin-top: auto;
  padding-top: 18px;
}

.flip-face {
  justify-content: flex-start;
}

.flip-front,
body:has(.screenshot-hero) .stats-band + .section .flip-front {
  display: grid;
  grid-template-rows: 58px minmax(58px, auto) auto;
  row-gap: 18px;
  align-content: start;
}

body:has(.screenshot-hero) .stats-band + .section .flip-front {
  grid-template-rows: 62px minmax(58px, auto) auto;
  row-gap: 20px;
}

.flip-front h3,
.flip-front p,
body:has(.screenshot-hero) .stats-band + .section .flip-front h3,
body:has(.screenshot-hero) .stats-band + .section .flip-front p {
  position: static;
  inset: auto;
  margin: 0;
}

.flip-back {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flip-back h3,
body:has(.screenshot-hero) .stats-band + .section .flip-back h3 {
  min-height: 58px;
  margin: 0 0 12px;
}

.flip-back p {
  margin: 0;
}

.flip-back .card-cta-link-zone {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: auto;
  height: auto;
  min-height: 44px;
  margin-top: auto;
  padding: 16px 0 0;
}

.reference-card {
  height: 100%;
}

.reference-body {
  display: flex;
  flex-direction: column;
}

.reference-body h3 {
  min-height: 60px;
  margin: 0 0 10px;
}

.reference-body p {
  min-height: 58px;
  margin: 0;
}

.reference-list {
  margin: 20px 0 0;
}

.reference-meta {
  margin-top: auto;
}

@media (max-width: 768px) {
  .flip-front,
  body:has(.screenshot-hero) .stats-band + .section .flip-front {
    grid-template-rows: 48px minmax(42px, auto) auto;
    row-gap: 16px;
  }

  .flip-back h3,
  body:has(.screenshot-hero) .stats-band + .section .flip-back h3 {
    min-height: 44px;
    margin-bottom: 10px;
  }

  .flip-back .card-cta-link-zone {
    min-height: 36px;
    padding-top: 12px;
  }
}

@media (max-width: 620px) {
  .info-card h3,
  .reference-body h3,
  .reference-body p {
    min-height: 0;
  }

  .home-why .info-card:first-child .icon {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .stat-item strong {
    min-height: 0;
  }

  .flip-front,
  body:has(.screenshot-hero) .stats-band + .section .flip-front {
    grid-template-rows: 42px minmax(38px, auto) auto;
    row-gap: 14px;
  }

  .flip-back h3,
  body:has(.screenshot-hero) .stats-band + .section .flip-back h3 {
    min-height: 38px;
    margin-bottom: 8px;
  }
}

