:root {
  --ink: #07111f;
  --ink-soft: #152338;
  --navy: #0b1930;
  --paper: #f6f8fb;
  --line: #dfe6ef;
  --muted: #5e6b7d;
  --cyan: #29d0f2;
  --cyan-deep: #067f9d;
  --orange: #ff7951;
  --orange-soft: #fff0eb;
  --lime: #b9ed66;
  --shadow: 0 24px 65px rgba(7, 17, 31, .13);
  --shadow-soft: 0 12px 32px rgba(7, 17, 31, .08);
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  padding: .75rem 1rem;
  color: var(--ink);
  background: #fff;
  border-radius: .75rem;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 1rem;
}

.site-nav {
  padding: 1.15rem 0;
  transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-nav.is-scrolled {
  padding: .72rem 0;
  background: rgba(246, 248, 251, .92);
  box-shadow: 0 8px 28px rgba(7, 17, 31, .08);
  backdrop-filter: blur(16px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: .72rem;
  font-size: .82rem;
  letter-spacing: -.08em;
  box-shadow: 0 7px 18px rgba(7, 17, 31, .16);
}

.brand-accent {
  color: var(--cyan-deep);
}

.navbar-toggler {
  padding: .5rem .65rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(41, 208, 242, .22) !important;
}

.site-nav .nav-link {
  position: relative;
  padding: .6rem .85rem !important;
  color: #445166;
  font-size: .91rem;
  font-weight: 700;
}

.site-nav .nav-link::after {
  position: absolute;
  right: .85rem;
  bottom: .32rem;
  left: .85rem;
  height: 2px;
  content: "";
  background: var(--cyan-deep);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--ink);
}

.site-nav .nav-link.active::after,
.site-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.btn {
  --bs-btn-font-weight: 800;
  --bs-btn-border-radius: .85rem;
  --bs-btn-padding-x: 1.08rem;
  --bs-btn-padding-y: .72rem;
  font-size: .9rem;
  letter-spacing: -.015em;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.btn-primary {
  --bs-btn-bg: var(--ink);
  --bs-btn-border-color: var(--ink);
  --bs-btn-hover-bg: #132440;
  --bs-btn-hover-border-color: #132440;
  --bs-btn-active-bg: var(--ink);
  --bs-btn-active-border-color: var(--ink);
  box-shadow: 0 10px 22px rgba(7, 17, 31, .16);
}

.btn-cyan {
  --bs-btn-color: var(--ink);
  --bs-btn-bg: var(--cyan);
  --bs-btn-border-color: var(--cyan);
  --bs-btn-hover-color: var(--ink);
  --bs-btn-hover-bg: #7ae5f8;
  --bs-btn-hover-border-color: #7ae5f8;
  --bs-btn-active-color: var(--ink);
  --bs-btn-active-bg: var(--cyan);
  --bs-btn-active-border-color: var(--cyan);
}

.btn-outline-dark {
  --bs-btn-border-color: #cfd8e4;
  --bs-btn-hover-bg: var(--ink);
  --bs-btn-hover-border-color: var(--ink);
}

.btn-link-arrow {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  padding: 0;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 800;
}

.btn-link-arrow i {
  transition: transform .2s ease;
}

.btn-link-arrow:hover i {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: min(52rem, 100vh);
  padding: 10.75rem 0 6.5rem;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -14rem;
  right: -10rem;
  width: 43rem;
  height: 43rem;
  content: "";
  background: radial-gradient(circle, rgba(41, 208, 242, .24) 0%, rgba(41, 208, 242, 0) 67%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  bottom: -15rem;
  left: -15rem;
  width: 33rem;
  height: 33rem;
  content: "";
  background: radial-gradient(circle, rgba(255, 121, 81, .15) 0%, rgba(255, 121, 81, 0) 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  margin-bottom: 1.25rem;
  color: var(--cyan-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: .55rem;
  height: .55rem;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 .3rem rgba(255, 121, 81, .12);
}

.hero h1,
.page-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 6.1vw, 5.55rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.075em;
}

.hero h1 em,
.display-accent {
  color: var(--cyan-deep);
  font-style: normal;
}

.hero-copy {
  max-width: 36rem;
  color: #516075;
  font-size: clamp(1.02rem, 1.7vw, 1.17rem);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.25rem;
  margin-top: 1.85rem;
  padding: 0;
  color: #4a5a6d;
  font-size: .86rem;
  font-weight: 700;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  gap: .38rem;
  align-items: center;
}

.hero-points i {
  color: var(--cyan-deep);
}

.hero-art {
  position: relative;
  margin: 1rem 0 0;
}

.hero-art-main {
  position: relative;
  z-index: 1;
  min-height: 31rem;
  overflow: hidden;
  background: #0a1526;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 65px rgba(7, 17, 31, .22);
}

.hero-art-main img {
  width: 100%;
  height: 100%;
  min-height: 31rem;
  object-fit: cover;
  opacity: .9;
}

.hero-art-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(130deg, rgba(7,17,31,.64) 0%, rgba(7,17,31,.05) 63%, rgba(7,17,31,.36) 100%);
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-card--top {
  top: 1.1rem;
  left: -2rem;
}

.floating-card--bottom {
  right: -1.2rem;
  bottom: 1.4rem;
}

.floating-kicker {
  display: block;
  color: #647184;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.floating-title {
  display: block;
  margin-top: .12rem;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.25;
}

.floating-card i {
  margin-right: .34rem;
  color: var(--cyan-deep);
}

.section {
  padding: 6.25rem 0;
}

.section-sm {
  padding: 4.4rem 0;
}

.section-dark {
  color: #fff;
  background: var(--ink);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-heading h2,
.content-heading {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.06em;
}

.section-heading p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark .section-heading p {
  color: #aab8c9;
}

.surface-card {
  height: 100%;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(7,17,31,.01);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.surface-card:hover {
  border-color: rgba(6, 127, 157, .24);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.icon-tile {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.4rem;
  place-items: center;
  color: var(--ink);
  background: var(--orange-soft);
  border-radius: .9rem;
  font-size: 1.25rem;
}

.surface-card:nth-child(2) .icon-tile {
  background: #e6faff;
}

.surface-card:nth-child(3) .icon-tile {
  background: #f1f9df;
}

.surface-card h3 {
  margin-bottom: .65rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.035em;
}

.surface-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.numbered-step {
  position: relative;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255,255,255,.2);
}

.numbered-step span {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.numbered-step h3 {
  margin-bottom: .6rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.numbered-step p {
  margin: 0;
  color: #aebccd;
  font-size: .92rem;
}

.showcase-section {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #eef5fa 100%);
}

.project-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 0 rgba(7,17,31,.01);
  transition: transform .28s ease, box-shadow .28s ease;
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.project-preview {
  position: relative;
  min-height: 16.25rem;
  padding: 1.15rem;
  overflow: hidden;
}

.project-preview::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .93;
}

.project-preview--landing::before {
  background: linear-gradient(145deg, #243334, #a0d5b1);
}

.project-preview--roof::before {
  background: linear-gradient(145deg, #12243c, #f0a634);
}

.project-preview--garage::before {
  background: linear-gradient(145deg, #131313, #c92d2d);
}

.browser {
  position: relative;
  z-index: 1;
  min-height: 14rem;
  padding: .48rem;
  overflow: hidden;
  background: #fbfcfd;
  border: 4px solid rgba(255,255,255,.38);
  border-radius: .8rem;
  box-shadow: 0 18px 26px rgba(0,0,0,.17);
  transform: rotate(-2.5deg) translateY(.25rem);
}

.browser-bar {
  display: flex;
  gap: .25rem;
  align-items: center;
  height: .85rem;
  padding: 0 .2rem;
  background: #edf1f5;
  border-radius: .3rem;
}

.browser-bar i {
  width: .3rem;
  height: .3rem;
  background: #d1d8e1;
  border-radius: 50%;
}

.mock-layout {
  padding: .75rem;
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .8rem;
}

.mock-logo,
.mock-chip {
  height: .45rem;
  background: #1a2d34;
  border-radius: 99px;
}

.mock-logo {
  width: 2.55rem;
}

.mock-chip {
  width: 1.6rem;
  opacity: .35;
}

.mock-landing {
  display: grid;
  grid-template-columns: 1.2fr .7fr;
  gap: .7rem;
}

.mock-copy {
  padding: .1rem 0;
}

.mock-line {
  height: .38rem;
  margin-bottom: .38rem;
  background: #c5d1d6;
  border-radius: 99px;
}

.mock-line--large {
  width: 90%;
  height: .7rem;
  background: #1a2d34;
}

.mock-line--short {
  width: 66%;
}

.mock-btn {
  width: 2.8rem;
  height: .72rem;
  margin-top: .55rem;
  background: #8abd9e;
  border-radius: 99px;
}

.mock-photo {
  min-height: 6.5rem;
  background: linear-gradient(140deg, #619a7a 0 42%, #d7efce 42% 59%, #fff5db 59%);
  border-radius: .55rem;
}

.mock-lower {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .4rem;
  margin-top: .7rem;
}

.mock-lower div {
  height: 2.2rem;
  background: #eef3ec;
  border-radius: .35rem;
}

.mock-roof .mock-logo,
.mock-roof .mock-line--large {
  background: #192a46;
}

.mock-roof .mock-btn {
  background: #eea62b;
}

.mock-roof .mock-photo {
  background: linear-gradient(148deg, #27415e 0 44%, #f4be58 44% 60%, #e8edf2 60%);
}

.mock-roof .mock-lower div {
  background: #f6eee1;
}

.mock-garage {
  background: #121212;
}

.mock-garage .browser-bar {
  background: #242424;
}

.mock-garage .mock-logo,
.mock-garage .mock-line--large {
  background: #f04a42;
}

.mock-garage .mock-line {
  background: #555;
}

.mock-garage .mock-btn {
  background: #f04a42;
}

.mock-garage .mock-photo {
  background: linear-gradient(148deg, #171717 0 38%, #8f1719 38% 50%, #ef402f 50% 57%, #171717 57%);
}

.mock-garage .mock-lower div {
  background: #292929;
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.55rem;
}

.project-tag {
  margin-bottom: .65rem;
  color: var(--cyan-deep);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-body h3 {
  margin-bottom: .65rem;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -.045em;
}

.project-body p {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: .92rem;
}

.project-body .btn-link-arrow {
  margin-top: auto;
}

.quote-panel {
  position: relative;
  padding: 2.1rem;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #0c1d34, #0f3d51);
  border-radius: var(--radius-xl);
}

.quote-panel::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 19rem;
  height: 19rem;
  content: "";
  background: radial-gradient(circle, rgba(41,208,242,.36), transparent 67%);
}

.quote-panel > * {
  position: relative;
  z-index: 1;
}

.quote-panel h2 {
  max-width: 15ch;
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.7vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.06em;
}

.quote-panel p {
  max-width: 41rem;
  color: #c3d0dc;
}

.page-hero {
  position: relative;
  padding: 10.5rem 0 4.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f4f8fb 100%);
}

.page-hero::after {
  position: absolute;
  top: -9rem;
  right: -8rem;
  width: 30rem;
  height: 30rem;
  content: "";
  background: radial-gradient(circle, rgba(41, 208, 242, .18), rgba(41,208,242,0) 68%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
}

.page-hero p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-panel {
  position: relative;
  padding: clamp(1.8rem, 4vw, 3rem);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-xl);
}

.intro-panel::before {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 19rem;
  height: 19rem;
  content: "";
  background: radial-gradient(circle, rgba(41,208,242,.32), transparent 67%);
}

.intro-panel > * {
  position: relative;
  z-index: 1;
}

.intro-panel .display-quote {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.05em;
}

.intro-panel p {
  max-width: 35rem;
  margin: 1rem 0 0;
  color: #aebdce;
}

.facts-list {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.facts-list li {
  display: flex;
  gap: .8rem;
  align-items: center;
  padding: .82rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
  font-weight: 700;
}

.facts-list li:last-child {
  border: 0;
}

.facts-list i {
  color: var(--cyan-deep);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

.logo-wall span {
  display: grid;
  min-height: 6.8rem;
  place-items: center;
  color: #66758a;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  font-size: .81rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.demo-note {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 2.25rem;
  padding: .95rem 1.1rem;
  color: #43556a;
  background: #eaf8fc;
  border: 1px solid #cceef5;
  border-radius: 1rem;
  font-size: .9rem;
}

.demo-note i {
  color: var(--cyan-deep);
  font-size: 1.1rem;
}

.feature-list {
  display: grid;
  gap: .7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: .65rem;
  color: #4e5e71;
  font-size: .9rem;
}

.feature-list i {
  color: var(--cyan-deep);
}

.request-layout {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.request-layout .form-label {
  margin-bottom: .4rem;
  color: #2d3e53;
  font-size: .82rem;
  font-weight: 800;
}

.form-control,
.form-select {
  min-height: 3rem;
  padding: .68rem .84rem;
  color: var(--ink);
  background-color: #fbfcfe;
  border-color: #d9e1eb;
  border-radius: .78rem;
  font-size: .93rem;
}

.form-control::placeholder {
  color: #99a5b3;
}

.form-control:focus,
.form-select:focus {
  color: var(--ink);
  background: #fff;
  border-color: var(--cyan-deep);
  box-shadow: 0 0 0 .22rem rgba(41, 208, 242, .17);
}

textarea.form-control {
  min-height: 9rem;
  resize: vertical;
}

.form-check-input {
  margin-top: .28rem;
  border-color: #b8c4d2;
}

.form-check-input:checked {
  background-color: var(--cyan-deep);
  border-color: var(--cyan-deep);
}

.form-status {
  min-height: 1.5rem;
  margin: .9rem 0 0;
  color: #536276;
  font-size: .84rem;
}

.form-status.is-success {
  color: #167143;
}

.form-status.is-warning {
  color: #a54823;
}

.contact-aside {
  height: 100%;
  padding: clamp(1.45rem, 3vw, 2.25rem);
  color: #fff;
  background: linear-gradient(145deg, #0b1930, #0f4054);
  border-radius: var(--radius-xl);
}

.contact-aside .eyebrow {
  color: var(--cyan);
}

.contact-aside h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.055em;
}

.contact-aside p {
  color: #b9c8d7;
}

.contact-aside ul {
  display: grid;
  gap: .9rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-aside li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: #dbe6ee;
  font-size: .9rem;
}

.contact-aside i {
  margin-top: .2rem;
  color: var(--cyan);
}

.faq-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .9rem !important;
}

.faq-accordion .accordion-item + .accordion-item {
  margin-top: .7rem;
}

.faq-accordion .accordion-button {
  padding: 1.05rem 1.15rem;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
  font-size: .95rem;
  font-weight: 800;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #f0fbfd;
}

.faq-accordion .accordion-body {
  padding-top: 0;
  color: var(--muted);
  font-size: .92rem;
}

.site-footer {
  padding: 3.6rem 0 1.5rem;
  color: #c3ced9;
  background: #07111f;
}

.site-footer .navbar-brand {
  color: #fff;
}

.site-footer p {
  max-width: 22rem;
  margin: 1rem 0 0;
  color: #93a4b6;
  font-size: .87rem;
}

.site-footer h2 {
  margin: 0 0 .85rem;
  color: #fff;
  font-size: .87rem;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: .45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  color: #aebdca;
  font-size: .86rem;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 2.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #7f91a4;
  font-size: .78rem;
}

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Demo: one-page wellness */
.demo-shell {
  min-height: 100vh;
  background: #faf9f6;
  font-family: "DM Sans", system-ui, sans-serif;
}

.demo-nav {
  padding: 1rem 0;
  background: rgba(250,249,246,.94);
  border-bottom: 1px solid rgba(31, 63, 54, .1);
  backdrop-filter: blur(12px);
}

.demo-nav .navbar-brand {
  color: #1c3e34;
  font-size: 1.05rem;
  letter-spacing: -.055em;
}

.demo-nav .nav-link {
  color: #557167;
  font-size: .86rem;
  font-weight: 700;
}

.demo-button {
  --bs-btn-bg: #1c3e34;
  --bs-btn-border-color: #1c3e34;
  --bs-btn-hover-bg: #285747;
  --bs-btn-hover-border-color: #285747;
  --bs-btn-padding-y: .68rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-border-radius: 99px;
}

.wellness-hero {
  min-height: 42rem;
  padding: 9.5rem 0 4rem;
  background:
    radial-gradient(circle at 82% 24%, rgba(173, 211, 172, .56) 0 8%, transparent 8.2%),
    radial-gradient(circle at 70% 78%, rgba(227, 204, 153, .45) 0 9%, transparent 9.3%),
    #f6f3ec;
}

.wellness-chip {
  display: inline-flex;
  gap: .35rem;
  align-items: center;
  margin-bottom: 1.1rem;
  color: #587467;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.wellness-chip i {
  color: #c78145;
}

.wellness-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.1rem;
  color: #1d3e35;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(3.1rem, 6vw, 5.7rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.065em;
}

.wellness-hero p {
  max-width: 29rem;
  color: #63766e;
  font-size: 1.04rem;
}

.wellness-art {
  position: relative;
  min-height: 29rem;
  overflow: hidden;
  background: linear-gradient(135deg, #86a892 0 48%, #ecdec5 48% 68%, #506f60 68%);
  border-radius: 9rem 9rem 2rem 2rem;
}

.wellness-art::before {
  position: absolute;
  top: 17%;
  left: 20%;
  width: 11rem;
  height: 14rem;
  content: "";
  background: #f7e8cf;
  border-radius: 45% 45% 38% 38%;
  box-shadow: 9rem 10rem 0 -2.2rem #334f40;
  transform: rotate(-10deg);
}

.wellness-art::after {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 8rem;
  height: 8rem;
  content: "";
  border: 1.2rem solid rgba(247,232,207,.87);
  border-radius: 50%;
}

.wellness-section {
  padding: 6rem 0;
}

.wellness-section h2 {
  color: #1d3e35;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  letter-spacing: -.05em;
}

.wellness-service {
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1.5rem;
}

.wellness-service span {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.35rem;
  place-items: center;
  color: #fff;
  background: #64826f;
  border-radius: 50%;
}

.wellness-service h3 {
  color: #1d3e35;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.55rem;
}

.wellness-service p {
  margin: 0;
  color: #6a7c75;
  font-size: .9rem;
}

.wellness-cta {
  padding: 4rem 0;
  color: #f9f6ef;
  background: #1d3e35;
}

.wellness-cta h2 {
  max-width: 11ch;
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.demo-return {
  display: inline-flex;
  gap: .4rem;
  align-items: center;
  margin-top: 1.8rem;
  color: rgba(255,255,255,.76);
  font-size: .8rem;
  font-weight: 700;
}

/* Demo: Dakwerken multi-page */
.roof-site {
  --roof-blue: #0d2340;
  --roof-yellow: #f5b52e;
  color: #142538;
  background: #f4f6f8;
  font-family: "Manrope", system-ui, sans-serif;
}

.roof-nav {
  padding: .9rem 0;
  background: #fff;
  border-bottom: 1px solid #e2e8ee;
}

.roof-brand {
  display: flex;
  gap: .5rem;
  align-items: center;
  color: var(--roof-blue);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -.06em;
}

.roof-brand-mark {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  color: var(--roof-blue);
  background: var(--roof-yellow);
  clip-path: polygon(50% 0, 100% 40%, 100% 100%, 0 100%, 0 40%);
}

.roof-nav .nav-link {
  color: #587084;
  font-size: .85rem;
  font-weight: 800;
}

.roof-nav .nav-link.active,
.roof-nav .nav-link:hover {
  color: var(--roof-blue);
}

.roof-btn {
  --bs-btn-color: #0d2340;
  --bs-btn-bg: var(--roof-yellow);
  --bs-btn-border-color: var(--roof-yellow);
  --bs-btn-hover-color: #0d2340;
  --bs-btn-hover-bg: #ffca52;
  --bs-btn-hover-border-color: #ffca52;
  --bs-btn-padding-y: .67rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-border-radius: .35rem;
}

.roof-hero {
  position: relative;
  padding: 8.4rem 0 5.4rem;
  overflow: hidden;
  color: #fff;
  background: var(--roof-blue);
}

.roof-hero::after {
  position: absolute;
  top: -15rem;
  right: -13rem;
  width: 43rem;
  height: 43rem;
  content: "";
  background: radial-gradient(circle, rgba(245,181,46,.32), transparent 66%);
}

.roof-hero .container {
  position: relative;
  z-index: 1;
}

.roof-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.15rem;
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  font-weight: 900;
  line-height: .99;
  letter-spacing: -.075em;
}

.roof-hero p {
  max-width: 34rem;
  color: #b7c9db;
  font-size: 1.03rem;
}

.roof-hero-visual {
  position: relative;
  min-height: 25rem;
  margin-top: 1.5rem;
  overflow: hidden;
  background: linear-gradient(145deg, #6f8ca3 0 38%, #f6c55a 38% 42%, #d6e0e6 42% 63%, #2d4b64 63%);
  border: .75rem solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
}

.roof-hero-visual::before {
  position: absolute;
  right: 13%;
  bottom: 0;
  width: 15rem;
  height: 14rem;
  content: "";
  background: #1b324d;
  clip-path: polygon(50% 0, 100% 36%, 100% 100%, 0 100%, 0 36%);
}

.roof-hero-visual::after {
  position: absolute;
  right: 21%;
  bottom: 0;
  width: 7.8rem;
  height: 10rem;
  content: "";
  background: repeating-linear-gradient(0deg, #1b324d 0 1rem, #254767 1rem 1.13rem);
  transform: skewX(-2deg);
}

.roof-section {
  padding: 5.5rem 0;
}

.roof-eyebrow {
  margin-bottom: .7rem;
  color: #c07e00;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.roof-section h2 {
  max-width: 14ch;
  color: var(--roof-blue);
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.065em;
}

.roof-card {
  height: 100%;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid #e4eaef;
  border-radius: .7rem;
}

.roof-card i {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.3rem;
  place-items: center;
  color: var(--roof-blue);
  background: #fff2cd;
  border-radius: .45rem;
  font-size: 1.2rem;
}

.roof-card h3 {
  color: var(--roof-blue);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -.035em;
}

.roof-card p {
  margin: .5rem 0 0;
  color: #61768a;
  font-size: .9rem;
}

.roof-band {
  padding: 2rem 0;
  color: #102741;
  background: var(--roof-yellow);
}

.roof-band strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.roof-band p {
  margin: .15rem 0 0;
  font-size: .9rem;
}

.roof-page-heading {
  padding: 6.4rem 0 3.25rem;
  color: #fff;
  background: #15314e;
}

.roof-page-heading h1 {
  margin: .5rem 0 0;
  font-size: clamp(2.55rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.07em;
}

.roof-breadcrumb {
  color: #c9d7e5;
  font-size: .83rem;
  font-weight: 700;
}

.roof-project-image {
  min-height: 14rem;
  background: linear-gradient(145deg, #54748e 0 40%, #eeb645 40% 47%, #c8d5dd 47% 62%, #193855 62%);
  border-radius: .65rem;
}

.roof-project-image--second {
  background: linear-gradient(145deg, #bd9672 0 39%, #3b434a 39% 48%, #e3d8c8 48% 63%, #637f90 63%);
}

.roof-project-image--third {
  background: linear-gradient(145deg, #b7d0d9 0 33%, #8c2e2c 33% 47%, #e1d7bf 47% 62%, #435d6f 62%);
}

.roof-footer {
  padding: 2.5rem 0;
  color: #b9c8d6;
  background: #0d2340;
}

.roof-footer strong {
  color: #fff;
  font-weight: 900;
}

/* Demo: garage */
.garage-site {
  color: #f4f4f4;
  background: #0d0d0e;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
}

.garage-nav {
  padding: .85rem 0;
  background: rgba(13,13,14,.95);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.garage-brand {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.garage-brand em {
  color: #ee3e38;
  font-style: normal;
}

.garage-nav .nav-link {
  color: #b8b8b8;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.garage-nav .nav-link:hover {
  color: #fff;
}

.garage-btn {
  --bs-btn-color: #fff;
  --bs-btn-bg: #e83832;
  --bs-btn-border-color: #e83832;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #f2534c;
  --bs-btn-hover-border-color: #f2534c;
  --bs-btn-border-radius: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.garage-hero {
  position: relative;
  min-height: 43rem;
  padding: 10rem 0 5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13,13,14,.95) 0%, rgba(13,13,14,.71) 48%, rgba(13,13,14,.14) 100%),
    radial-gradient(circle at 85% 27%, rgba(229,49,44,.38), transparent 23%),
    linear-gradient(135deg, #151515 0 43%, #631816 43% 46%, #1c1c1e 46% 65%, #090909 65%);
}

.garage-hero::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: min(38rem, 65vw);
  height: 20rem;
  content: "";
  background: linear-gradient(165deg, transparent 0 31%, #e43831 31% 37%, #701412 37% 44%, #161616 44% 100%);
  clip-path: polygon(3% 56%, 24% 34%, 65% 27%, 100% 45%, 92% 75%, 47% 91%, 13% 83%);
  filter: drop-shadow(0 1rem 1.5rem rgba(0,0,0,.42));
}

.garage-hero .container {
  position: relative;
  z-index: 1;
}

.garage-kicker {
  display: inline-block;
  margin-bottom: .75rem;
  color: #f14a44;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.garage-hero h1 {
  max-width: 8ch;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(4.3rem, 9vw, 8.4rem);
  font-weight: 900;
  line-height: .76;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.garage-hero p {
  max-width: 29rem;
  color: #cfcfcf;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .95rem;
}

.garage-section {
  padding: 5.4rem 0;
}

.garage-section h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6.1vw, 5.4rem);
  font-weight: 900;
  line-height: .85;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.garage-card {
  height: 100%;
  padding: 1.4rem;
  background: #171718;
  border-top: 2px solid #e43d37;
}

.garage-card span {
  color: #e84b45;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.garage-card h3 {
  margin: .7rem 0 .5rem;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
}

.garage-card p {
  margin: 0;
  color: #b5b5b5;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .86rem;
}

.garage-strip {
  padding: 1.4rem 0;
  overflow: hidden;
  color: #161616;
  background: #ef413b;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
  white-space: nowrap;
}

.garage-strip span {
  display: inline-block;
  margin-right: 3.5rem;
}

.garage-contact {
  background: #f1efea;
}

.garage-contact h2 {
  color: #171718;
}

.garage-contact p {
  max-width: 30rem;
  color: #606060;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.garage-footer {
  padding: 2rem 0;
  color: #898989;
  background: #080809;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .78rem;
}

@media (max-width: 991.98px) {
  .site-nav {
    background: rgba(246,248,251,.94);
    box-shadow: 0 7px 24px rgba(7,17,31,.05);
    backdrop-filter: blur(16px);
  }

  .site-nav .navbar-collapse {
    padding: .75rem 0 .2rem;
  }

  .site-nav .nav-link::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 9rem;
  }

  .hero-art {
    max-width: 42rem;
    margin: 2.6rem auto 0;
  }

  .hero-art-main,
  .hero-art-main img {
    min-height: 25rem;
  }

  .floating-card--top {
    left: -.35rem;
  }

  .floating-card--bottom {
    right: -.25rem;
  }

  .page-hero {
    padding-top: 8.7rem;
  }

  .roof-hero {
    padding-top: 7rem;
  }

  .roof-hero-visual {
    max-width: 40rem;
  }

  .garage-hero {
    min-height: 38rem;
    padding-top: 8.7rem;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding-bottom: 4.5rem;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -.065em;
  }

  .hero-art-main,
  .hero-art-main img {
    min-height: 20.5rem;
  }

  .floating-card {
    padding: .75rem .8rem;
    border-radius: .75rem;
  }

  .floating-title {
    font-size: .79rem;
  }

  .floating-kicker {
    font-size: .61rem;
  }

  .floating-card--top {
    top: .7rem;
  }

  .floating-card--bottom {
    right: .6rem;
    bottom: .7rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-sm {
    padding: 3.4rem 0;
  }

  .project-preview {
    min-height: 13.5rem;
  }

  .browser {
    min-height: 11.5rem;
  }

  .logo-wall {
    gap: .5rem;
  }

  .logo-wall span {
    min-height: 4.6rem;
    font-size: .65rem;
  }

  .wellness-art {
    min-height: 23rem;
  }

  .roof-hero-visual {
    min-height: 19rem;
  }

  .garage-hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.2rem);
  }

  .garage-hero::after {
    right: -4%;
    width: 25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
