:root {
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cal Sans', 'Inter', system-ui, sans-serif;
  --container-max: 1180px;
  --container-pad: clamp(1rem, 2vw, 2rem);
  --section-pad: clamp(3.5rem, 7vw, 6rem);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 30px rgba(22, 33, 43, 0.08);
  --shadow-md: 0 18px 50px rgba(22, 33, 43, 0.12);
  --shadow-lg: 0 30px 70px rgba(22, 33, 43, 0.16);
  --color-bg: #f4efe6;
  --color-bg-alt: #eadfd0;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f4ef;
  --color-text: #1d2731;
  --color-text-soft: #5c6875;
  --color-heading: #15212b;
  --color-border: rgba(22, 33, 43, 0.12);
  --color-border-strong: rgba(22, 33, 43, 0.2);
  --color-accent: #b86a2b;
  --color-accent-strong: #d17e3b;
  --color-accent-soft: rgba(184, 106, 43, 0.12);
  --color-success: #1f7a52;
  --color-warning: #9e5b17;
  --color-error: #8f2b2b;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(184, 106, 43, 0.12), transparent 28%),
    radial-gradient(circle at left bottom, rgba(22, 33, 43, 0.08), transparent 30%),
    linear-gradient(180deg, #f8f4ee 0%, var(--color-bg) 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  height: auto;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-accent-strong);
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-heading);
  box-shadow: var(--shadow-md);
  transition: top 160ms ease;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(100% - 2 * var(--container-pad), var(--container-max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(244, 239, 230, 0.8);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.8rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.site-brand:hover {
  color: inherit;
}

.site-brand__logo {
  width: 4.8rem;
  height: 4.8rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: var(--color-heading);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.site-nav__item.is-active > .site-nav__link,
.site-nav__link:hover,
.site-nav__link:focus-visible {
  background: var(--color-accent-soft);
  color: var(--color-heading);
}

.site-nav__caret {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.75px solid currentColor;
  border-bottom: 1.75px solid currentColor;
  transform: rotate(45deg) translateY(-0.08rem);
}

.site-nav__submenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 15rem;
  padding: 0.6rem;
  margin: 0;
  list-style: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.site-nav__item:hover > .site-nav__submenu,
.site-nav__item:focus-within > .site-nav__submenu {
  display: block;
}

.site-nav__submenu .site-nav__link {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  border-radius: 14px;
  padding: 0.7rem 0.85rem;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.header-actions__phone {
  color: var(--color-heading);
  font-weight: 600;
  text-decoration: none;
}

.header-actions__phone:hover {
  text-decoration: underline;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-heading);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.nav-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  gap: 0.22rem;
}

.nav-toggle__bars span {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-main {
  flex: 1 0 auto;
}

.page-shell {
  padding: 0;
}

.page-shell--compact {
  padding-top: calc(var(--section-pad) * 0.8);
}

.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(1.75rem, 4vw, 2.75rem);
}

.hero__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.hero__content {
  display: grid;
  gap: 1.25rem;
}

.hero__title,
.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--color-heading);
}

.hero__lead,
.page-lead,
.section-lead {
  margin: 0;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.62;
  color: var(--color-text-soft);
  max-width: 60ch;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
}

.hero__actions,
.section-actions,
.card__actions,
.cta-strip__actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.section-actions--spaced {
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.02rem 1.45rem;
  min-height: 3.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-heading);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  text-decoration: none;
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.button:hover,
.button:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.button--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-accent-strong);
  color: #fff;
}

.button--secondary,
.button--ghost {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--color-border);
}

.button--text {
  padding: 0.82rem 1rem;
  background: rgba(255, 255, 255, 0.28);
  border-color: var(--color-border);
  box-shadow: none;
  color: var(--color-heading);
}

.button--text:hover,
.button--text:focus-visible {
  transform: none;
  box-shadow: none;
  background: transparent;
}

.button--compact {
  padding: 0.8rem 1rem;
}

.hero__panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-lg);
}

.hero__media {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 8px);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
}

.hero__media,
.hero__media-card,
.gallery-grid figure,
.card__media,
.lightbox-trigger {
  position: relative;
}

.hero__media--paired {
  padding: 0.8rem;
}

.hero__media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0.8rem;
  align-items: stretch;
}

.hero__media-card {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.hero__media-card .lightbox-trigger {
  display: block;
}

.hero__media-card .hero__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5.1;
  object-fit: cover;
}

.hero__media:not(.hero__media--paired) .lightbox-trigger {
  display: block;
}

.hero__image {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.hero__media .hero__image,
.hero__media-card .hero__image,
.gallery-grid img,
.card__media img,
.lightbox-trigger img {
  transition: transform 220ms ease, filter 220ms ease;
  will-change: transform;
}

.hero__media:hover .hero__image,
.hero__media:focus-within .hero__image,
.hero__media-card:hover .hero__image,
.hero__media-card:focus-within .hero__image,
.gallery-grid figure:hover img,
.gallery-grid figure:focus-within img,
.card:hover .card__media img,
.card:focus-within .card__media img,
.lightbox-trigger:hover img,
.lightbox-trigger:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.03) contrast(1.02);
}

.hero__facts,
.stats,
.benefits,
.chip-list,
.meta-list,
.footer-list,
.contact-list,
.social-list,
.filter-list,
.workflow-list,
.project-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__facts li,
.chip,
.fact,
.stat,
.workflow__step,
.project-fact {
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border);
  color: var(--color-heading);
}

.hero__facts strong,
.stat strong,
.fact strong,
.project-fact strong {
  display: block;
  font-weight: 800;
}

.hero__facts span,
.stat span,
.fact span,
.project-fact span {
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.section--tight {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.section-header {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  max-width: 52rem;
}

.section-header--center {
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--color-heading);
}

.section-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-soft);
}

.section-copy--spaced {
  margin-top: 0.45rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature,
.review,
.faq-item,
.content-box,
.cta-strip,
.form-wrapper {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.content-box {
  padding: clamp(1rem, 2.2vw, 1.45rem);
}

.content-box--wide {
  padding: clamp(1.25rem, 2.8vw, 2rem);
  width: 100%;
}

.content-box--wide.prose {
  max-width: none;
}

.card,
.feature,
.review {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.feature:hover,
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}

.card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body,
.feature__body,
.review__body,
.faq-item__content,
.content-box__body {
  padding: 1rem;
}

.card__body,
.feature__body,
.review__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__eyebrow,
.project-fact,
.meta {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.card__title,
.feature__title,
.review__name {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-heading);
  line-height: 1.1;
}

.card__title {
  font-size: 1.2rem;
}

.feature__title {
  font-size: 1.25rem;
}

.card__text,
.feature__text,
.review__quote,
.content-box__body p,
.prose p {
  margin: 0;
  color: var(--color-text-soft);
}

.card__text + .card__actions,
.feature__text + .card__actions,
.review__quote + .review__footer {
  margin-top: 1rem;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.card__meta li {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(22, 33, 43, 0.05);
  color: var(--color-text-soft);
  font-size: 0.84rem;
}

.card__actions {
  margin-top: auto;
  padding-top: 1rem;
}

.trust-grid,
.service-grid,
.project-grid,
.review-grid,
.split-grid,
.faq-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

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

.service-grid,
.project-grid,
.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.split-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: start;
}

.work-area,
.cta-strip {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.cta-strip {
  width: min(calc(100% - (2 * var(--container-pad))), var(--container-max));
  margin: var(--section-pad) auto 0;
  background: linear-gradient(135deg, rgba(22, 33, 43, 0.98), rgba(40, 53, 66, 0.98));
  color: #fff;
  border-radius: var(--radius-lg);
}

.work-area {
  background: linear-gradient(135deg, rgba(22, 33, 43, 0.94), rgba(35, 49, 62, 0.98));
  color: #fff;
  border-radius: calc(var(--radius-lg) + 6px);
  box-shadow: var(--shadow-lg);
}

.work-area .section-title,
.work-area .section-copy,
.work-area a,
.work-area .eyebrow {
  color: inherit;
}

.work-area .button,
.work-area .button:hover,
.work-area .button:focus-visible {
  color: var(--color-heading);
}

.work-area .button--secondary,
.work-area .button--ghost {
  background: rgba(255, 255, 255, 0.7);
}

.workflow {
  counter-reset: step;
}

.workflow__step {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
}

.workflow__step strong::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.workflow__step strong {
  color: var(--color-heading);
}

.faq {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item--compact {
  padding: 1rem 1.15rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  color: var(--color-heading);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item__content {
  padding-top: 0;
}

.faq-item__content :first-child {
  margin-top: 0;
}

.faq-item__content :last-child {
  margin-bottom: 0;
}

.prose {
  max-width: 70ch;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  margin-top: 2em;
  margin-bottom: 0.55em;
  color: var(--color-heading);
}

.prose h1:first-child,
.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose table,
.prose pre {
  margin: 0 0 1.2rem;
}

.prose ul,
.prose ol {
  padding-left: 1.4rem;
}

.prose blockquote {
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--color-accent);
  background: rgba(184, 106, 43, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
}

.prose th,
.prose td {
  border: 1px solid var(--color-border);
  padding: 0.75rem 0.85rem;
  text-align: left;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb li + li::before {
  content: '/';
  color: var(--color-border-strong);
}

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

.breadcrumb a:hover {
  text-decoration: underline;
}

.cta-strip__grid {
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) auto;
}

.cta-strip__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  line-height: 1.05;
}

.cta-strip__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 60ch;
}

.cta-strip .button--secondary,
.cta-strip .button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.cta-strip .button--primary {
  background: #fff;
  border-color: #fff;
  color: var(--color-heading);
}

.form-wrapper {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.form-wrapper--compact {
  padding: clamp(1rem, 2.2vw, 1.4rem);
}

.form-wrapper form {
  display: grid;
  gap: 1rem;
}

.form-wrapper--compact form {
  gap: 0.8rem;
}

.form-wrapper .form-field,
.form-wrapper .form-group,
.form-wrapper .form-input-wrapper,
.form-wrapper .form-textarea-wrapper {
  display: grid;
  gap: 0.45rem;
}

.form-wrapper--compact input:not([type='checkbox']):not([type='radio']),
.form-wrapper--compact textarea,
.form-wrapper--compact select {
  padding: 0.8rem 0.9rem;
}

.form-wrapper--compact textarea {
  min-height: 7rem;
}

.form-wrapper label,
.form-wrapper .form-label {
  font-weight: 700;
  color: var(--color-heading);
}

.form-wrapper input:not([type='checkbox']):not([type='radio']),
.form-wrapper textarea,
.form-wrapper select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-heading);
  padding: 0.95rem 1rem;
  transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.form-wrapper input:not([type='checkbox']):not([type='radio']):focus,
.form-wrapper textarea:focus,
.form-wrapper select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-soft);
  outline: none;
}

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

.form-wrapper .form-message,
.toast {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(31, 122, 82, 0.12);
  border: 1px solid rgba(31, 122, 82, 0.24);
  color: var(--color-success);
}

.toast-error,
.form-wrapper .toast-red {
  background: rgba(143, 43, 43, 0.1);
  border-color: rgba(143, 43, 43, 0.18);
  color: var(--color-error);
}

.toast-yellow {
  background: rgba(158, 91, 23, 0.12);
  border-color: rgba(158, 91, 23, 0.2);
  color: var(--color-warning);
}

.form-errors {
  color: var(--color-error);
  font-size: 0.95rem;
}

.form-actions .button,
.form-wrapper .buttons .button {
  margin: 0;
}

.site-footer {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: linear-gradient(180deg, rgba(22, 33, 43, 0.98), rgba(12, 18, 24, 1));
  color: rgba(255, 255, 255, 0.85);
  margin-top: var(--section-pad);
}

.site-footer a {
  color: #fff;
}

.site-footer__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__brand-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #fff;
}

.site-footer__note {
  margin: 0;
  max-width: 34ch;
}

.site-footer__heading {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
}

.site-footer__list {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list a {
  text-decoration: none;
}

.site-footer__list a:hover {
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 80;
  background: rgba(7, 12, 16, 0.5);
  display: grid;
  place-items: stretch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-panel[hidden] {
  display: none !important;
}

.mobile-panel[data-open='true'] {
  opacity: 1;
  visibility: visible;
}

.mobile-panel__sheet {
  width: 100vw;
  height: 100dvh;
  background: linear-gradient(180deg, rgba(248, 244, 238, 0.99), rgba(241, 237, 231, 0.99));
  box-shadow: none;
  padding: 1.25rem 1.25rem 1.75rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-panel[data-open='true'] .mobile-panel__sheet {
  transform: translateY(0);
  opacity: 1;
}

.mobile-panel__header {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 4.4rem;
  margin-bottom: 1.5rem;
}

.mobile-panel__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-panel__brand .site-brand__logo {
  width: 5.4rem;
  height: auto;
}

.mobile-panel__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-heading);
  border-radius: 999px;
  width: 2.7rem;
  height: 2.7rem;
  display: inline-grid;
  place-items: center;
}

.mobile-nav {
  margin-top: 1.25rem;
  flex: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.mobile-nav .site-nav__list {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
}

.mobile-nav .site-nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
}

.mobile-nav .site-nav__item {
  width: 100%;
}

.mobile-nav .site-nav__link {
  width: 100%;
  justify-content: space-between;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  min-height: 3.35rem;
}

.mobile-panel__footer {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 1.25rem;
}

.mobile-panel__copyright {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.85rem;
  text-align: center;
}

.mobile-nav .site-nav__submenu {
  position: static;
  display: grid;
  box-shadow: none;
  border: 0;
  background: transparent;
  padding: 0.35rem 0 0 0.8rem;
  margin: 0;
}

.mobile-nav .site-nav__submenu .site-nav__link {
  padding-left: 1rem;
}

.section--muted {
  background: rgba(255, 255, 255, 0.38);
}

.page-header {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  max-width: 46rem;
}

.page-header .page-title {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.page-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--color-text-soft);
  font-size: 0.8rem;
}

.project-detail__meta {
  margin-bottom: 1rem;
}

.service-detail__meta {
  margin-bottom: 1rem;
}

.gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
  grid-column: span 6;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.gallery-grid figure > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.gallery-grid figcaption {
  padding: 0.75rem 0.9rem 0.95rem;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.content-box--messages {
  padding: 1rem;
}

.site-footer__heading--spaced {
  margin-top: 1.25rem;
}

.filter-list {
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.filter-list--spaced {
  margin-top: 1rem;
  margin-bottom: 1.15rem;
}

.chip {
  text-decoration: none;
  color: var(--color-heading);
}

.chip.is-active {
  background: var(--color-accent-soft);
  color: var(--color-heading);
  border-color: var(--color-border-strong);
}

.hidden {
  display: none !important;
}

html.has-lightbox {
  overflow: hidden;
}

html.has-mobile-menu,
body.has-lightbox,
body.has-mobile-menu {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 14, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 1100px);
  max-height: 92vh;
  display: grid;
  place-items: center;
  gap: 0.75rem;
}

.lightbox__figure {
  margin: 0;
  width: 100%;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.lightbox__image {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #fff;
}

.lightbox__caption {
  max-width: 70ch;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.lightbox__close {
  top: -0.25rem;
  right: -0.25rem;
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox__nav--prev {
  left: -0.5rem;
}

.lightbox__nav--next {
  right: -0.5rem;
}

.lightbox-trigger {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .hero__grid,
  .cta-strip__grid,
  .site-footer__grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

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

  .service-grid,
  .project-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__media--paired {
    padding: 0.6rem;
  }

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

@media (max-width: 880px) {
  .site-nav,
  .header-actions__phone,
  .header-actions .button--secondary,
  .header-actions .button--ghost {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero__title,
  .page-title {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
  }

  .gallery-grid figure {
    grid-column: span 12;
  }
}

@media (max-width: 680px) {
  .trust-grid,
  .service-grid,
  .project-grid,
  .review-grid,
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .section-actions,
  .cta-strip__actions,
  .form-actions {
    width: 100%;
  }

  .hero__actions .button,
  .section-actions .button,
  .cta-strip__actions .button,
  .form-actions .button {
    width: 100%;
  }

  .site-header__inner {
    min-height: 4.5rem;
  }

  .site-brand__logo {
    width: 3.7rem;
    height: 3.7rem;
  }

  .page-shell,
  .section,
  .hero,
  .site-footer {
    padding-inline: 0;
  }

  .hero__panel,
  .content-box,
  .cta-strip,
  .card__body,
  .feature__body,
  .review__body,
  .faq-item__content,
  .form-wrapper {
    border-radius: var(--radius-md);
  }

  .lightbox__dialog {
    width: min(94vw, 1100px);
  }

  .lightbox__close {
    top: 0.25rem;
    right: 0.25rem;
  }

  .lightbox__nav {
    width: 2.7rem;
    height: 2.7rem;
  }

  .lightbox__nav--prev {
    left: 0.25rem;
  }

  .lightbox__nav--next {
    right: 0.25rem;
  }
}

body.theme-dakzink-pro {
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1220px;
  --container-pad: clamp(1rem, 2vw, 2.25rem);
  --section-pad: clamp(3.5rem, 6vw, 5.5rem);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 0 rgba(18, 24, 31, 0.06);
  --shadow-md: 0 14px 32px rgba(18, 24, 31, 0.08);
  --shadow-lg: 0 22px 52px rgba(18, 24, 31, 0.1);
  --color-bg: #f7f6f2;
  --color-bg-alt: #ece8df;
  --color-surface: #ffffff;
  --color-surface-alt: #f2efe7;
  --color-text: #1d2731;
  --color-text-soft: #57606b;
  --color-heading: #111820;
  --color-border: rgba(17, 24, 32, 0.12);
  --color-border-strong: rgba(17, 24, 32, 0.22);
  --color-accent: #243444;
  --color-accent-strong: #14202d;
  --color-accent-soft: rgba(36, 52, 68, 0.08);
  --color-success: #2f6b54;
  --color-warning: #8f671b;
  --color-error: #8c3434;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.56)),
    radial-gradient(circle at top left, rgba(36, 52, 68, 0.06), transparent 26%),
    linear-gradient(180deg, #faf9f6 0%, #f3f1eb 100%);
}

body.theme-dakzink-pro .site-shell {
  position: relative;
}

body.theme-dakzink-pro .site-header {
  background: rgba(247, 246, 242, 0.9);
  border-bottom: 1px solid rgba(17, 24, 32, 0.09);
  backdrop-filter: blur(14px);
}

body.theme-dakzink-pro .site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: 'brand nav actions';
  gap: 1.25rem;
  min-height: 5.3rem;
}

body.theme-dakzink-pro .site-brand {
  grid-area: brand;
  gap: 0.85rem;
  align-items: center;
}

body.theme-dakzink-pro .site-brand__logo {
  width: 10.0rem;
  height: 100%;
}

body.theme-dakzink-pro .site-brand__copy {
  display: grid;
  gap: 0.1rem;
}

body.theme-dakzink-pro .site-brand__name {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-heading);
}

body.theme-dakzink-pro .site-brand__tagline {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  max-width: 18rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.theme-dakzink-pro .site-brand__slogan {
  margin: 0;
  white-space: nowrap;
}

body.theme-dakzink-pro .site-nav {
  grid-area: nav;
  justify-content: center;
}

body.theme-dakzink-pro .site-nav__list {
  gap: 0.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

body.theme-dakzink-pro .site-nav__link {
  border-radius: 0;
  padding: 0.35rem 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-soft);
  border-bottom: 1px solid transparent;
}

body.theme-dakzink-pro .site-nav__item.is-active > .site-nav__link,
body.theme-dakzink-pro .site-nav__link:hover,
body.theme-dakzink-pro .site-nav__link:focus-visible {
  background: transparent;
  color: var(--color-heading);
  border-bottom-color: currentColor;
}

body.theme-dakzink-pro .site-nav__submenu {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.99);
}

body.theme-dakzink-pro .header-actions {
  grid-area: actions;
  gap: 0.5rem;
}

body.theme-dakzink-pro .header-actions__phone {
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

body.theme-dakzink-pro .button {
  border-radius: 8px;
  box-shadow: none;
  border-color: var(--color-border);
}

body.theme-dakzink-pro .button--primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

body.theme-dakzink-pro .button--secondary,
body.theme-dakzink-pro .button--ghost {
  background: transparent;
  color: var(--color-heading);
}

body.theme-dakzink-pro .page-shell {
  padding-top: clamp(2rem, 3vw, 3rem);
}

body.theme-dakzink-pro .hero {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

body.theme-dakzink-pro .hero__grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: start;
}

body.theme-dakzink-pro .hero__content {
  gap: 1rem;
}

body.theme-dakzink-pro .hero__title,
body.theme-dakzink-pro .page-title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
}

body.theme-dakzink-pro .hero__lead,
body.theme-dakzink-pro .page-lead,
body.theme-dakzink-pro .section-copy {
  font-size: 1rem;
  line-height: 1.7;
}

body.theme-dakzink-pro .hero__actions,
body.theme-dakzink-pro .section-actions,
body.theme-dakzink-pro .cta-strip__actions,
body.theme-dakzink-pro .form-actions {
  gap: 0.55rem;
}

body.theme-dakzink-pro .hero__panel {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 24, 32, 0.1);
  box-shadow: var(--shadow-md);
}

body.theme-dakzink-pro .hero__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

body.theme-dakzink-pro .hero__facts li,
body.theme-dakzink-pro .chip,
body.theme-dakzink-pro .fact,
body.theme-dakzink-pro .stat,
body.theme-dakzink-pro .workflow__step,
body.theme-dakzink-pro .project-fact,
body.theme-dakzink-pro .page-meta span {
  background: rgba(17, 24, 32, 0.03);
  border-color: rgba(17, 24, 32, 0.08);
  border-radius: 8px;
}

body.theme-dakzink-pro .chip.is-active {
  background: rgba(36, 52, 68, 0.08);
  border-color: rgba(36, 52, 68, 0.18);
  color: var(--color-heading);
}

body.theme-dakzink-pro .hero__media,
body.theme-dakzink-pro .card__media,
body.theme-dakzink-pro .gallery-grid figure,
body.theme-dakzink-pro .content-box,
body.theme-dakzink-pro .form-wrapper,
body.theme-dakzink-pro .cta-strip,
body.theme-dakzink-pro .faq-item {
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

body.theme-dakzink-pro .hero__media {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 32, 0.1);
  background: #fff;
}

body.theme-dakzink-pro .hero__image {
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
}

body.theme-dakzink-pro .section {
  padding: clamp(2.5rem, 4vw, 2rem) 0;
}

body.theme-dakzink-pro .section--muted {
  background: transparent;
}

body.theme-dakzink-pro .section-header {
  max-width: 42rem;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

body.theme-dakzink-pro .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}

body.theme-dakzink-pro .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

body.theme-dakzink-pro .content-box {
  border: 1px solid rgba(17, 24, 32, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

body.theme-dakzink-pro .prose {
  max-width: 100%;
}

body.theme-dakzink-pro .content-box--wide.prose {
  max-width: none;
  width: 100%;
  display: block;
}

body.theme-dakzink-pro .card,
body.theme-dakzink-pro .feature,
body.theme-dakzink-pro .review {
  border: 1px solid rgba(17, 24, 32, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

body.theme-dakzink-pro .card:hover,
body.theme-dakzink-pro .feature:hover,
body.theme-dakzink-pro .review:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

body.theme-dakzink-pro .card__media {
  aspect-ratio: 4 / 3;
  background: var(--color-surface-alt);
}

body.theme-dakzink-pro .project-grid .card__media {
  aspect-ratio: 16 / 10;
}

body.theme-dakzink-pro .card__body,
body.theme-dakzink-pro .feature__body,
body.theme-dakzink-pro .review__body,
body.theme-dakzink-pro .faq-item__content,
body.theme-dakzink-pro .content-box__body {
  padding: 1rem 1.05rem;
}

body.theme-dakzink-pro .project-grid .card__body {
  gap: 0.45rem;
  padding: 1.35rem 1.35rem 1.25rem;
}

body.theme-dakzink-pro .card__title,
body.theme-dakzink-pro .feature__title,
body.theme-dakzink-pro .review__name {
  font-family: var(--font-display);
  line-height: 1.08;
}

body.theme-dakzink-pro .card__title {
  font-size: 1.1rem;
}

body.theme-dakzink-pro .project-grid .card__title {
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  letter-spacing: -0.02em;
}

body.theme-dakzink-pro .card__title a {
  color: inherit;
  text-decoration: none;
}

body.theme-dakzink-pro .card__title a:hover,
body.theme-dakzink-pro .card__title a:focus-visible {
  color: var(--color-accent);
}

body.theme-dakzink-pro .card__text,
body.theme-dakzink-pro .feature__text,
body.theme-dakzink-pro .review__quote,
body.theme-dakzink-pro .content-box__body p,
body.theme-dakzink-pro .prose p {
  color: var(--color-text-soft);
}

body.theme-dakzink-pro .project-grid .card__text {
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

body.theme-dakzink-pro .project-grid .card__eyebrow {
  margin-bottom: 0.2rem;
  color: var(--color-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

body.theme-dakzink-pro .project-grid .card__meta {
  margin-top: 0.7rem;
  gap: 0.4rem;
}

body.theme-dakzink-pro .project-grid .card__meta li {
  border: 1px solid rgba(17, 24, 32, 0.07);
  background: rgba(17, 24, 32, 0.035);
  color: var(--color-heading);
  font-size: 0.8rem;
}

body.theme-dakzink-pro .project-grid .card__actions {
  padding-top: 1.1rem;
}

body.theme-dakzink-pro .grid,
body.theme-dakzink-pro .trust-grid,
body.theme-dakzink-pro .service-grid,
body.theme-dakzink-pro .project-grid,
body.theme-dakzink-pro .review-grid,
body.theme-dakzink-pro .split-grid,
body.theme-dakzink-pro .faq-grid,
body.theme-dakzink-pro .gallery-grid {
  gap: 1rem;
}

body.theme-dakzink-pro .service-grid,
body.theme-dakzink-pro .project-grid,
body.theme-dakzink-pro .review-grid {
  grid-auto-rows: 1fr;
}

body.theme-dakzink-pro .split-grid {
  align-items: start;
}

body.theme-dakzink-pro .work-area {
  background: linear-gradient(180deg, rgba(36, 52, 68, 0.04), rgba(36, 52, 68, 0.02));
  border: 1px solid rgba(36, 52, 68, 0.12);
  color: var(--color-heading);
}

body.theme-dakzink-pro .work-area .section-title,
body.theme-dakzink-pro .work-area .section-copy,
body.theme-dakzink-pro .work-area .eyebrow,
body.theme-dakzink-pro .work-area a {
  color: inherit;
}

body.theme-dakzink-pro .cta-strip {
  background: #243444;
  color: #fff;
  width: min(calc(100% - (2 * var(--container-pad))), var(--container-max));
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 12px;
}

body.theme-dakzink-pro .cta-strip .button--secondary,
body.theme-dakzink-pro .cta-strip .button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

body.theme-dakzink-pro .cta-strip .button--primary {
  background: #fff;
  border-color: #fff;
  color: var(--color-accent);
}

body.theme-dakzink-pro .site-footer {
  margin-top: var(--section-pad);
  background: #111820;
  color: rgba(255, 255, 255, 0.82);
}

body.theme-dakzink-pro .site-footer__grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1fr;
}

body.theme-dakzink-pro .site-footer__brand-name,
body.theme-dakzink-pro .site-footer__heading {
  color: #fff;
}

body.theme-dakzink-pro .site-footer__list a {
  color: rgba(255, 255, 255, 0.9);
}

body.theme-dakzink-pro .site-footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.footer_logo_buurman {
    height: 44px;
    width: auto;
    display: block;
}

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-certification-logo {
    height: 70px;
    width: auto;
    display: block;
}

@media (max-width: 1100px) {
  body.theme-dakzink-pro .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 680px) {
  body.theme-dakzink-pro .site-footer {
    padding: 2.25rem 0 1.75rem;
    margin-top: clamp(2rem, 8vw, 3rem);
  }

  body.theme-dakzink-pro .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.65rem;
  }

  body.theme-dakzink-pro .site-footer__brand {
    gap: 0.85rem;
  }

  body.theme-dakzink-pro .site-footer__brand-name {
    font-size: 1.35rem;
  }

  body.theme-dakzink-pro .site-footer__note {
    max-width: none;
    line-height: 1.55;
  }

  body.theme-dakzink-pro .site-footer__heading {
    margin-bottom: 0.65rem;
    font-size: 1rem;
  }

  body.theme-dakzink-pro .site-footer__list {
    gap: 0.45rem;
  }

  body.theme-dakzink-pro .site-footer__list a,
  body.theme-dakzink-pro .site-footer__list li {
    line-height: 1.45;
  }

  body.theme-dakzink-pro .site-footer .cta-strip__actions,
  body.theme-dakzink-pro .site-footer .cta-strip__actions .button {
    width: 100%;
  }

  body.theme-dakzink-pro .footer-certifications {
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.2rem;
  }

  body.theme-dakzink-pro .footer-certification-logo {
    max-height: 52px;
  }

  body.theme-dakzink-pro .site-footer__bottom {
    display: grid;
    gap: 0.85rem;
    padding-top: 1.15rem;
    margin-top: 1.25rem;
  }

  body.theme-dakzink-pro .footer-credit {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  body.theme-dakzink-pro .footer_logo_buurman {
    max-height: 34px;
  }
}

body.theme-dakzink-pro .gallery-grid figure {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 32, 0.1);
}

body.theme-dakzink-pro .page-header {
  max-width: 52rem;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

body.theme-dakzink-pro .page-header .page-title {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.2vw, 3.2rem);
  line-height: 0.98;
  margin: 0;
}

body.theme-dakzink-pro .page-header .page-lead,
body.theme-dakzink-pro .page-header .section-copy {
  margin-top: 0;
}

body.theme-dakzink-pro .page-meta span {
  color: var(--color-text-soft);
}

body.theme-dakzink-pro .faq-item summary {
  padding: 1rem 1.05rem;
}

body.theme-dakzink-pro .form-wrapper input:not([type='checkbox']):not([type='radio']),
body.theme-dakzink-pro .form-wrapper textarea,
body.theme-dakzink-pro .form-wrapper select {
  border-radius: 8px;
  border-color: rgba(17, 24, 32, 0.14);
}

body.theme-dakzink-pro .mobile-panel {
  background: rgba(8, 12, 16, 0.5);
}

body.theme-dakzink-pro .mobile-panel__sheet {
  background: #f7f6f2;
}

body.theme-dakzink-pro .mobile-nav .site-nav__link {
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
}

body.theme-dakzink-pro .page-header,
body.template-services .page-header,
body.template-projects .page-header,
body.template-form-page .page-header,
body.template-default .page-header,
body.template-faq .page-header {
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

body.theme-dakzink-pro .page-header .page-lead,
body.theme-dakzink-pro .page-header .section-copy {
  margin-top: 0;
  margin-bottom: 0;
}

body.template-home .hero {
  padding-top: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(1.35rem, 3vw, 2.35rem);
}

body.template-home .hero__grid {
  gap: 1.4rem;
}

body.template-home .hero__content {
  gap: 0.95rem;
}

body.template-home .hero__title {
  font-size: clamp(2.05rem, 3.8vw, 3.45rem);
}

body.template-home .hero__lead {
  max-width: 54ch;
}

body.template-home .hero__media {
  max-width: 100%;
}

body.template-home .home-services-grid {
  gap: 0.85rem;
}

body.template-home .home-services-grid .card__media {
  aspect-ratio: 16 / 7;
}

body.template-home .home-services-grid .card__body {
  gap: 0.45rem;
  padding: 1.25rem;
}

body.template-home .home-services-grid .card__title {
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
}

body.template-home .home-services-grid .card__text {
  font-size: 0.95rem;
  line-height: 1.5;
}

body.template-home .home-services-grid .card__meta,
body.template-home .home-services-grid .card__actions {
  margin-top: 0.35rem;
}

body.template-services .services-overview {
  padding-top: clamp(0.75rem, 1.8vw, 1.1rem);
}

body.template-services .page-header,
body.template-projects .page-header,
body.template-form-page .page-header {
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

body.template-services .page-header .page-lead,
body.template-projects .page-header .page-lead,
body.template-form-page .page-header .page-lead {
  margin-bottom: 0;
}

body.template-form-page .section {
  padding-top: clamp(0.85rem, 2vw, 1.25rem);
}

body.template-form-page.contact-page .form-page__section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(1rem, 2.4vw, 1.5rem);
  align-items: start;
}

body.template-form-page.contact-page .form-wrapper {
  min-width: 0;
}

body.template-form-page.contact-page .contact-layout__aside {
  display: grid;
  gap: 0.85rem;
}

body.template-form-page.contact-page .contact-card {
  display: grid;
  gap: 0.65rem;
  padding: clamp(1rem, 2vw, 1.25rem);
}

body.template-form-page.contact-page .contact-card--primary {
  background: linear-gradient(180deg, rgba(36, 52, 68, 0.98), rgba(22, 33, 43, 0.98));
  color: #fff;
}

body.template-form-page.contact-page .contact-card h2 {
  margin: 0;
  color: var(--color-heading);
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  line-height: 1.08;
}

body.template-form-page.contact-page .contact-card--primary h2,
body.template-form-page.contact-page .contact-card--primary .eyebrow {
  color: #fff;
}

body.template-form-page.contact-page .contact-card p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.58;
}

body.template-form-page.contact-page .contact-card--primary p {
  color: rgba(255, 255, 255, 0.78);
}

body.template-form-page.contact-page .contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

body.template-form-page.contact-page .contact-card--primary .button--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

body.template-form-page.contact-page .contact-list,
body.template-form-page.contact-page .contact-links {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.template-form-page.contact-page .contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
}

body.template-form-page.contact-page .contact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body.template-form-page.contact-page .contact-list span {
  color: var(--color-text-soft);
}

body.template-form-page.contact-page .contact-list strong,
body.template-form-page.contact-page .contact-links a {
  color: var(--color-heading);
}

body.template-form-page.contact-page .contact-links a {
  font-weight: 800;
  text-decoration: none;
}

body.template-form-page.contact-page .contact-links a:hover,
body.template-form-page.contact-page .contact-links a:focus-visible {
  color: var(--color-accent);
}

body.template-services .services-overview__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
}

body.template-services .services-overview__grid .card {
  min-height: 100%;
}

body.template-services .services-overview__grid .card__media {
  aspect-ratio: 16 / 9;
}

body.template-services .services-overview__grid .card__body {
  gap: 0.45rem;
  padding: clamp(0.95rem, 1.4vw, 1.1rem);
}

body.template-services .services-overview__grid .card__eyebrow {
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

body.template-services .services-overview__grid .card__title {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  letter-spacing: -0.02em;
}

body.template-services .services-overview__grid .card__text {
  max-width: 42rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

body.template-services .services-overview__grid .card__meta {
  margin-top: 0.45rem;
}

body.template-services .services-overview__grid .card__actions {
  padding-top: 0.8rem;
}

body.template-projects .filter-list--spaced {
  margin: clamp(0.75rem, 1.8vw, 1.1rem) 0 clamp(0.25rem, 1vw, 0.55rem);
}

body.template-projects .filter-list .chip {
  padding: 0.58rem 0.8rem;
  font-size: 0.84rem;
  font-weight: 700;
}

body.template-projects .projects-overview {
  padding-top: clamp(0.75rem, 1.8vw, 1.1rem);
}

body.template-projects .projects-overview__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.2rem);
}

body.template-projects .projects-overview__grid .card__media {
  aspect-ratio: 16 / 10;
}

body.template-projects .projects-overview__grid .card__body {
  gap: 0.5rem;
  padding: clamp(1rem, 1.8vw, 1.25rem);
}

body.template-projects .projects-overview__grid .card__eyebrow {
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

body.template-projects .projects-overview__grid .card__title {
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
}

body.template-projects .projects-overview__grid .card__text {
  font-size: 0.94rem;
  line-height: 1.5;
}

body.template-projects .projects-overview__grid .card__meta {
  margin-top: 0.45rem;
}

body.template-projects .projects-overview__grid .card__actions {
  padding-top: 0.85rem;
}

body.template-about .about-page {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

body.template-about .about-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
}

body.template-about .about-page__intro {
  display: grid;
  gap: 0.65rem;
  max-width: 54rem;
}

body.template-about .about-page__intro .page-title {
  font-size: clamp(1.95rem, 3.2vw, 3.2rem);
  line-height: 0.98;
}

body.template-about .about-page__values {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  max-width: 22rem;
}

body.template-about .about-page__values span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: 999px;
  background: rgba(17, 24, 32, 0.035);
  color: var(--color-heading);
  font-size: 0.84rem;
  font-weight: 800;
}

body.template-about .about-page__team {
  display: grid;
  gap: 0.9rem;
}

body.template-about .about-page__team-heading .section-header {
  margin-bottom: 0;
}

body.template-about .about-page__team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
}

body.template-about .about-page__member {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
}

body.template-about .about-page__member-photo {
  overflow: hidden;
  border-radius: 10px;
  background: var(--color-surface-alt);
}

body.template-about .about-page__member-img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

body.template-about .about-page__member-body {
  display: grid;
  gap: 0.35rem;
}

body.template-about .about-page__member h3 {
  margin: 0;
  color: var(--color-heading);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.05;
}

body.template-about .about-page__member-role {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.template-about .about-page__member p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.55;
}

body.template-about .about-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(1rem, 2.5vw, 1.35rem);
  align-items: start;
}

body.template-about .about-page__copy {
  line-height: 1.68;
}

body.template-about .about-page__copy h2 {
  margin-top: 1.35rem;
}

body.template-about .about-page__copy ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.1rem;
}

body.template-about .about-page__panel {
  display: grid;
  gap: 0.85rem;
}

body.template-about .about-page__promise {
  display: grid;
  gap: 0.55rem;
  padding: clamp(1rem, 2vw, 1.25rem);
}

body.template-about .about-page__promise h2,
body.template-about .about-page__step h3 {
  margin: 0;
  color: var(--color-heading);
  font-family: var(--font-display);
  line-height: 1.08;
}

body.template-about .about-page__promise p,
body.template-about .about-page__step p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.55;
}

body.template-about .about-page__steps {
  display: grid;
  gap: 0.75rem;
}

body.template-about .about-page__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
}

body.template-about .about-page__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--color-heading);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

body.template-projects .page-shell:has(.project-case) {
  max-width: 1180px;
}

.project-case {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.project-case__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.project-case__hero--no-media {
  grid-template-columns: minmax(0, 760px);
}

.project-case__intro {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.project-case__back {
  width: fit-content;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.project-case__back::before {
  content: "<";
  margin-right: 0.45rem;
}

.project-case__back:hover,
.project-case__back:focus-visible {
  color: var(--color-accent);
}

.project-case__title {
  margin: 0;
  color: var(--color-heading);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.project-case__lead {
  max-width: 58ch;
  margin: 0;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.7;
}

.project-case__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.project-case__media {
  display: grid;
  gap: 0.85rem;
}

.project-case__media--pair {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: stretch;
}

.project-case__image {
  display: block;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.project-case__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.45;
}

.project-case__image--secondary .project-case__img {
  aspect-ratio: 3 / 4.25;
}

.project-case__content {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.project-case__facts,
.project-case__copy,
.project-case__cards .content-box {
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
}

.project-case__facts {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.project-case__fact {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
}

.project-case__fact:last-child {
  border-bottom: 0;
}

.project-case__fact span {
  color: var(--color-text-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-case__fact strong {
  color: var(--color-heading);
  font-size: 1rem;
}

.project-case__copy {
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.project-case__copy h2 {
  margin-top: 0;
}

.project-case__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-case__chips {
  margin-top: 1rem;
}

.project-case__steps {
  display: grid;
  gap: 0.75rem;
}

.project-case__step {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
}

.project-case__step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.project-case__step strong {
  color: var(--color-heading);
}

.project-case__step p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.project-case__gallery {
  display: grid;
  gap: 1rem;
}

body.template-projects .project-case__gallery .gallery-grid figure {
  grid-column: span 3;
}

body.template-projects .project-case__gallery .gallery-grid img {
  aspect-ratio: 4 / 2.8;
}

body.template-project .hero {
  padding-bottom: clamp(1.25rem, 2.8vw, 2rem);
}

body.template-project .hero__grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.45fr);
}

body.template-project .hero__media {
  max-width: 320px;
  justify-self: end;
}

body.template-project .hero__media-card .hero__image {
  aspect-ratio: 4 / 6.2;
}

body.template-project .gallery-grid figure {
  grid-column: span 3;
}

body.template-project .section {
  padding: clamp(1.75rem, 3.5vw, 3.25rem) 0;
}

body.template-services .service-case .project-case__hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: start;
}

body.template-services .service-case .project-case__intro {
  padding-top: clamp(0.25rem, 1vw, 0.75rem);
}

body.template-services .service-case .project-case__media {
  max-width: 520px;
  justify-self: end;
}

body.template-services .service-case .project-case__media:not(.project-case__media--pair) {
  width: min(100%, 420px);
}

body.template-services .service-case .project-case__img {
  aspect-ratio: 4 / 3;
}

body.template-services .service-case .project-case__image--secondary .project-case__img {
  aspect-ratio: 4 / 3.35;
}

body.template-services .service-case .project-case__media--pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 980px) {
  body.theme-dakzink-pro .site-header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    min-height: 4.7rem;
  }

  body.theme-dakzink-pro .site-brand__tagline,
  body.theme-dakzink-pro .site-brand__slogan {
    display: none;
  }

  body.theme-dakzink-pro .site-nav {
    display: none;
  }

  body.theme-dakzink-pro .nav-toggle {
    display: inline-flex;
  }

  body.theme-dakzink-pro .header-actions {
    margin-left: auto;
  }

  body.theme-dakzink-pro .hero__grid {
    grid-template-columns: 1fr;
  }

  .project-case__hero,
  .project-case__content,
  .project-case__cards {
    grid-template-columns: 1fr;
  }

  .project-case__media--pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.theme-dakzink-pro .hero__media {
    max-width: 100%;
  }

  body.template-project .hero__media {
    max-width: 100%;
    justify-self: stretch;
  }

  body.template-project .gallery-grid figure {
    grid-column: span 6;
  }

  body.template-projects .project-case__gallery .gallery-grid figure {
    grid-column: span 6;
  }

  body.template-services .services-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.template-projects .projects-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.template-form-page.contact-page .form-page__section {
    grid-template-columns: 1fr;
  }

  body.template-about .about-page__hero,
  body.template-about .about-page__grid {
    grid-template-columns: 1fr;
  }

  body.template-about .about-page__team-grid {
    grid-template-columns: 1fr;
  }

  body.template-about .about-page__values {
    justify-content: flex-start;
    max-width: none;
  }

  body.template-services .service-case .project-case__hero {
    grid-template-columns: 1fr;
  }

  body.template-services .service-case .project-case__media,
  body.template-services .service-case .project-case__media:not(.project-case__media--pair) {
    width: min(100%, 520px);
    max-width: 520px;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .project-case__title {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .project-case__actions,
  .project-case__actions .button {
    width: 100%;
  }

  .project-case__media--pair {
    grid-template-columns: 1fr;
  }

  .project-case__image--secondary .project-case__img {
    aspect-ratio: 4 / 3.2;
  }

  .lightbox {
    padding: 0.75rem;
  }

  .lightbox__dialog {
    width: min(100%, 1100px);
    max-height: calc(100dvh - 1.5rem);
  }

  .lightbox__figure {
    width: 100%;
  }

  .lightbox__image {
    max-height: calc(100dvh - 5.5rem);
  }

  body.template-project .gallery-grid figure {
    grid-column: span 12;
  }

  body.template-projects .project-case__gallery .gallery-grid figure {
    grid-column: span 12;
  }

  body.template-services .services-overview {
    padding-top: 1rem;
  }

  body.template-services .services-overview__grid {
    grid-template-columns: 1fr;
  }

  body.template-projects .filter-list--spaced {
    margin-top: 1rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.2rem;
  }

  body.template-projects .filter-list .chip {
    flex: 0 0 auto;
  }

  body.template-projects .projects-overview__grid {
    grid-template-columns: 1fr;
  }

  body.template-projects .projects-overview__grid .card__media {
    aspect-ratio: 16 / 9;
  }

  body.template-projects .projects-overview__grid .card__body {
    padding: 1rem;
  }

  body.template-form-page.contact-page .contact-card__actions,
  body.template-form-page.contact-page .contact-card__actions .button {
    width: 100%;
  }

  body.template-form-page.contact-page .contact-list li {
    display: grid;
  }

  body.template-about .about-page__hero,
  body.template-about .about-page__copy {
    padding: 1.1rem;
  }

  body.template-about .about-page__step {
    padding: 0.95rem;
  }

  body.template-about .about-page__member {
    grid-template-columns: 1fr;
  }

  body.template-about .about-page__member-img {
    aspect-ratio: 16 / 9;
  }

  body.template-services .services-overview__grid .card__media {
    aspect-ratio: 16 / 8.5;
  }

  body.template-services .services-overview__grid .card__body {
    padding: 1rem;
  }

  body.template-services .services-overview__grid .card__text {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  body.template-services .service-case .project-case__media,
  body.template-services .service-case .project-case__media:not(.project-case__media--pair) {
    width: 100%;
    max-width: 100%;
  }

  body.template-services .service-case .project-case__media--pair {
    grid-template-columns: 1fr;
  }
}

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

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