/* ==========================================================================
   Dream Kitchen & Bath Shop — landing page
   Source of truth: Figma "Smart Leading Solutions LLC" node 17044:120 (1440px)
   ========================================================================== */

:root {
  --red: #c71e2d;
  --red-alt: #bf4348;
  --red-footer: #171717;
  --red-step: var(--red);
  --red-deep: #bd0c0c;
  --dark-topbar: #272727;
  --dark-section: #232323;
  --dark-strip: #161616;
  --brand-dark: var(--dark-section);
  --text: #1f1f1f;
  --text-alt: #1e1e1e;
  --text-gray: #5d5d5d;
  --navy: #1e2543;
  --card-navy: #1d2440;
  --bg-review: #f8f8f8;
  --bg-filter: #f1f1f1;
  --bg-blog: #f6f6f6;

  --font-heading: "Cabinet Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Shared section type scale — color may vary by background */
  --type-meta-size: 20px;
  --type-meta-weight: 700;
  --type-h2-size: 40px;
  --type-h2-weight: 700;
  --type-h2-leading: 48px;
  --type-h3-size: 20px;
  --type-h3-weight: 700;
  --type-h3-leading: 28px;
  --type-body-size: 16px;
  --type-body-weight: 400;
  --type-body-leading: 27px;

  --container-pad: clamp(16px, 7.3vw, 105px);
}

/* ==========================================================================
   Blog, gallery, contact, and article pages
   ========================================================================== */

.page-content-landing main { overflow: hidden; }
.page-content-landing .page-hero { min-height: clamp(570px, 78vh, 720px); }
.page-content-landing .page-hero__bg img { object-position: center; }
.dk-section-intro { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.dk-section-intro .section-heading { margin-top: 10px; }
.dk-section-intro > p:last-child {
  margin: 16px auto 0;
  max-width: 620px;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: var(--text-gray);
}
.dk-text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 700; }
.dk-text-link span { transition: transform .2s ease; }
.dk-text-link:hover span { transform: translateX(4px); }
.dk-text-link:focus-visible,
.dk-article-card a:focus-visible,
.dk-gallery button:focus-visible,
.dk-contact a:focus-visible,
.dk-contact button:focus-visible,
.dk-contact input:focus-visible,
.dk-contact select:focus-visible,
.dk-contact textarea:focus-visible,
.dk-lightbox button:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

/* Blog index */
.dk-blog { padding: 100px 0 110px; background: #f7f7f7; }
.dk-blog__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.dk-article-card { display: flex; flex-direction: column; min-width: 0; background: #fff; border: 1px solid #e9e9e9; border-radius: 14px; overflow: hidden; box-shadow: 0 16px 36px rgba(0, 0, 0, .06); transition: transform .25s ease, box-shadow .25s ease; }
.dk-article-card:hover { transform: translateY(-7px); box-shadow: 0 24px 48px rgba(0, 0, 0, .11); }
.dk-article-card__media { height: 240px; overflow: hidden; background: #ddd; }
.dk-article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dk-article-card:hover .dk-article-card__media img { transform: scale(1.045); }
.dk-article-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 26px; }
.dk-article-card__badge { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: rgba(199, 30, 45, .1); color: var(--red); font-size: 11px; line-height: 1; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.dk-article-card__meta { display: flex; gap: 8px; margin-top: 16px; color: #777; font-size: 12px; font-weight: 600; }
.dk-article-card h2 {
  margin-top: 12px;
  font-family: var(--font-heading);
  font-weight: var(--type-h3-weight);
  font-size: var(--type-h3-size);
  line-height: 1.25;
  color: var(--text);
}
.dk-article-card h2 a:hover { color: var(--red); }
.dk-article-card__excerpt { margin: 14px 0 22px; color: var(--text-gray); font-size: 14px; }
.dk-article-card .dk-text-link { margin-top: auto; }
.dk-article-card--featured { grid-column: span 2; display: grid; grid-template-columns: 1.12fr .88fr; }
.dk-article-card--featured .dk-article-card__media { height: 100%; min-height: 360px; }
.dk-article-card--featured h2 { font-size: clamp(28px, 3vw, 38px); }
.dk-article-card--featured .dk-article-card__body { justify-content: center; padding: clamp(28px, 4vw, 46px); }
.dk-article-card--featured .dk-text-link { margin-top: 0; }

/* Gallery */
.gallery-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: #fff;
  background:
    radial-gradient(circle at 16% 12%, rgba(199, 30, 45, .3), transparent 30%),
    #171717;
}
.gallery-hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -160px auto;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}
.gallery-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}
.gallery-hero__content { max-width: 540px; }
.gallery-hero__crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  font-weight: 600;
}
.gallery-hero__crumb a:hover { color: #fff; }
.gallery-hero__eyebrow {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-weight: var(--type-meta-weight);
  font-size: var(--type-meta-size);
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
  color: #f08d96;
}
.gallery-hero h1 {
  color: #fff;
  font: 800 clamp(48px, 6.2vw, 78px)/.96 var(--font-heading);
  letter-spacing: -.035em;
}
.gallery-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .72);
}
.gallery-hero__lead {
  max-width: 500px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
}
.gallery-hero__mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 480px;
}
.gallery-hero__image {
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
}
.gallery-hero__image--main { grid-row: 1 / 3; }
.gallery-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.gallery-hero__mosaic:hover .gallery-hero__image img { transform: scale(1.035); }
.dk-gallery { padding: 100px 0 110px; background: #fff; }
.dk-gallery__filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: -12px 0 42px; }
.dk-gallery__filter { padding: 12px 24px; border: 1px solid #d8d8d8; border-radius: 999px; color: #333; font-weight: 700; transition: .2s ease; }
.dk-gallery__filter:hover,
.dk-gallery__filter.is-active { color: #fff; background: var(--red); border-color: var(--red); box-shadow: 0 8px 20px rgba(199, 30, 45, .2); }
.dk-gallery__grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 118px; grid-auto-flow: dense; gap: 16px; }
.dk-gallery__item { grid-column: span 4; grid-row: span 3; margin: 0; overflow: hidden; border-radius: 12px; background: #ddd; }
.dk-gallery__item--1,
.dk-gallery__item--4 { grid-column: span 8; }
.dk-gallery__item--2,
.dk-gallery__item--5 { grid-row: span 4; }
.dk-gallery__item[hidden] { display: none; }
.dk-gallery__open { position: relative; width: 100%; height: 100%; display: block; overflow: hidden; color: #fff; text-align: left; }
.dk-gallery__open > img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dk-gallery__overlay { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; align-items: end; padding: 52px 22px 20px; background: linear-gradient(transparent, rgba(0, 0, 0, .78)); opacity: 0; transform: translateY(8px); transition: .25s ease; }
.dk-gallery__overlay strong { font: 800 22px/1 var(--font-heading); }
.dk-gallery__overlay small { font-weight: 600; }
.dk-gallery__open:hover > img { transform: scale(1.045); }
.dk-gallery__open:hover .dk-gallery__overlay,
.dk-gallery__open:focus-visible .dk-gallery__overlay { opacity: 1; transform: none; }
.dk-lightbox { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 30px; }
.dk-lightbox[hidden] { display: none; }
.dk-lightbox__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; background: rgba(8, 8, 8, .9); cursor: zoom-out; }
.dk-lightbox__panel { position: relative; z-index: 1; max-width: min(1100px, 92vw); max-height: 88vh; color: #fff; }
.dk-lightbox__panel img { max-height: 78vh; width: auto; margin: auto; border-radius: 8px; box-shadow: 0 30px 80px rgba(0, 0, 0, .45); }
.dk-lightbox__close { position: absolute; right: -18px; top: -18px; z-index: 2; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--red); color: #fff; font-size: 30px; line-height: 1; }
.dk-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, .25);
  transition: background-color .2s ease, transform .2s ease;
}
.dk-lightbox__nav:hover,
.dk-lightbox__nav:focus-visible {
  background: #000;
  transform: translateY(-50%) scale(1.04);
  outline: none;
}
.dk-lightbox__nav:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: translateY(-50%);
}
.dk-lightbox__nav--prev { left: -64px; }
.dk-lightbox__nav--next { right: -64px; }
body.dk-lightbox-open { overflow: hidden; }

/* Contact */
.dk-contact { padding: 100px 0 110px; background: linear-gradient(115deg, #f5f5f5 0 52%, #ececec 52%); }

/* Dedicated Contact page */
.contact-page {
  padding: 80px 0 100px;
  background: #f5f5f5;
}
.contact-page__top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.contact-page__map-column {
  display: grid;
  gap: 18px;
  align-content: start;
}
.contact-page__map-wrap {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .06);
}
.contact-page__map {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 480px);
  border: 0;
}
.contact-page__map-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
}
.contact-page__map-meta strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.contact-page__form-wrap {
  padding: clamp(26px, 3vw, 40px);
  border-radius: 14px;
  border-top: 5px solid var(--red);
  background: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .1);
  scroll-margin-top: 140px;
}
.contact-page__form-wrap > .eyebrow { margin: 0; }
.contact-page__form-wrap > .section-heading,
.contact-page__form-wrap > h2 {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: 1.15;
  color: var(--text);
}
.contact-page__form-wrap > .section-copy,
.contact-page__form-wrap > p:not(.dk-contact__form-kicker):not(.eyebrow) {
  margin-top: 10px;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: var(--text-gray);
}
.contact-page__info {
  margin-top: 36px;
}
.contact-page__info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.contact-page__block {
  padding: 26px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
}
.contact-page__block h3 {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-weight: var(--type-h3-weight);
  font-size: var(--type-h3-size);
  line-height: 1.25;
  color: var(--text);
}
.contact-page__block p,
.contact-page__block a {
  color: var(--text-gray);
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
}
.contact-page__block a:hover { color: var(--red); }
.contact-page__block p + p { margin-top: 10px; }
.contact-page__block--payments {
  padding: 24px 22px;
}
.contact-page__block--payments h3 {
  margin-bottom: 16px;
}
.contact-page__serving { margin-top: 14px; }
.contact-page__serving strong { color: var(--text); }
.contact-page__hours {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-page__hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: var(--text-gray);
}
.contact-page__hours li:first-child { border-top: 0; padding-top: 0; }
.contact-page__hours li span:first-child { font-weight: 700; color: var(--text); }
.contact-page__holiday {
  margin-top: 12px;
  font-size: 12px !important;
  color: #888 !important;
}
.contact-page__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
/* Contact page partner logo slider */
.contact-partners {
  padding: 72px 0 88px;
  background: #fff;
  border-top: 1px solid #ececec;
}
.contact-partners__head { text-align: center; }
.contact-partners__lead {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 16px;
  color: var(--text-muted);
}
.contact-partners__slider {
  position: relative;
  margin-top: 40px;
  padding: 0 52px;
}
.contact-partners__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}
.contact-partners__track::-webkit-scrollbar { display: none; }
.contact-partners__track.is-dragging { cursor: grabbing; }
.contact-partners__item {
  flex: 0 0 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #ececec;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
a.contact-partners__item:hover,
a.contact-partners__item:focus-visible {
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  transform: translateY(0);
  outline: none;
}
.contact-partners__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-partners__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  line-height: 0;
}
.contact-partners__arrow--prev { left: 0; }
.contact-partners__arrow--next { right: 0; }
.contact-partners__arrow img { width: 20px; height: 11px; }
.contact-partners__arrow--prev img { transform: rotate(180deg); }
.contact-partners__arrow--next img { transform: rotate(0deg); }
.contact-partners__arrow:hover { opacity: .65; }
.contact-partners__dots {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.contact-page__payments li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e4e4e4;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}
.dk-contact__layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); gap: clamp(50px, 7vw, 100px); align-items: start; }
.dk-contact__details .section-heading { margin: 14px 0 18px; max-width: 580px; }
.dk-contact__lead {
  max-width: 590px;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: var(--text-gray);
}
.dk-contact__lead p { margin: 0; }
.dk-contact__lead p + p { margin-top: 12px; }
.dk-contact__cards { display: grid; gap: 12px; margin-top: 34px; }
.dk-contact-card { display: flex; align-items: center; gap: 16px; padding: 17px; border-radius: 10px; background: #fff; border: 1px solid #e5e5e5; transition: border-color .2s ease; }
.dk-contact-card:hover { border-color: rgba(199, 30, 45, .45); }
.dk-contact-card > span { display: grid; place-items: center; width: 43px; height: 43px; flex: 0 0 auto; border-radius: 50%; background: var(--red); color: #fff; font: 800 12px var(--font-heading); }
.dk-contact-card div { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.dk-contact-card strong {
  font-family: var(--font-heading);
  font-weight: var(--type-h3-weight);
  font-size: var(--type-h3-size);
  line-height: 1.25;
  color: var(--text);
}
.dk-contact-card__link,
.dk-contact-card__link p,
.dk-contact-card small,
.dk-contact-card__detail {
  color: var(--text-gray);
  line-height: var(--type-body-leading);
  overflow-wrap: anywhere;
  font-family: var(--font-body);
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  text-decoration: none;
}
.dk-contact-card__link p { margin: 0; }
.dk-contact-card__link p + p { margin-top: 2px; }
.dk-contact-card__link:hover,
.dk-contact-card__link:focus-visible,
.dk-contact-card__link:hover p,
.dk-contact-card__link:focus-visible p {
  color: var(--red);
  outline: none;
}
.dk-hours { margin-top: 26px; padding: 25px; color: #fff; background: var(--dark-section); border-radius: 10px; }
.dk-hours h3 {
  font-family: var(--font-heading);
  font-weight: var(--type-h3-weight);
  font-size: var(--type-h3-size);
  line-height: 1.25;
  color: #fff;
}
.dk-hours dl { margin: 15px 0 0; }
.dk-hours dl div { display: flex; justify-content: space-between; gap: 15px; padding: 9px 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.dk-hours dt, .dk-hours dd { margin: 0; font-size: 13px; }
.dk-hours dd { color: rgba(255, 255, 255, .72); text-align: right; }
.dk-contact__form-wrap { padding: clamp(28px, 4vw, 48px); background: #fff; border-top: 5px solid var(--red); border-radius: 14px; box-shadow: 0 25px 60px rgba(0, 0, 0, .12); scroll-margin-top: 140px; }
.dk-contact__form-wrap > .eyebrow { margin: 0; }
.dk-contact__form-wrap > .section-heading { margin-top: 8px; }
.dk-contact__form-wrap > .section-copy { margin-top: 10px; }
/* Legacy class kept as an alias of .eyebrow */
.dk-contact__form-kicker {
  font-family: var(--font-heading);
  font-weight: var(--type-meta-weight);
  font-size: var(--type-meta-size);
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
  color: var(--red);
}
.dk-contact__form-wrap > h2:not(.section-heading) {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: 1.15;
  color: var(--text);
}
.dk-contact__form-wrap > p:not(.eyebrow):not(.section-copy):not(.dk-contact__form-kicker) {
  margin-top: 10px;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: var(--text-gray);
}
.dk-ghl-form {
  width: 100%;
  margin-top: 28px;
  min-height: 485px;
}
.dk-ghl-form iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 485px;
  border: none;
  border-radius: 0;
}
.dk-contact-form { display: grid; gap: 18px; margin-top: 28px; }
.dk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dk-contact-form label { display: grid; gap: 8px; color: #252525; font-size: 13px; font-weight: 700; }
.dk-contact-form input:not([type="checkbox"]),
.dk-contact-form select,
.dk-contact-form textarea { width: 100%; min-height: 50px; padding: 13px 14px; border: 1px solid #d3d3d3; border-radius: 6px; background: #fafafa; color: #222; font: 400 15px var(--font-body); transition: border-color .2s ease, box-shadow .2s ease; }
.dk-contact-form textarea { min-height: 145px; resize: vertical; width: 100%; }
.dk-contact-form input:hover,
.dk-contact-form select:hover,
.dk-contact-form textarea:hover { border-color: #aaa; }
.dk-consent { grid-template-columns: 20px 1fr !important; align-items: start; font-weight: 500 !important; line-height: 1.5; }
.dk-consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--red); }
.dk-contact-form .btn { width: 96%; }
.dk-form-notice { margin-top: 20px; padding: 13px 15px; border-radius: 6px; font-size: 13px; line-height: 1.5; }
.dk-form-notice--success { color: #155c37; background: #e8f7ef; border: 1px solid #b4dfc7; }
.dk-form-notice--error { color: #8e1823; background: #fff0f1; border: 1px solid #edc0c4; }
.dk-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Thank you */
.dk-thank-you {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 11vw, 120px) 0 clamp(56px, 8vw, 88px);
  color: #171717;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(199, 30, 45, 0.14), transparent 60%),
    radial-gradient(circle at 88% 18%, rgba(199, 30, 45, 0.07), transparent 34%),
    linear-gradient(180deg, #fafafa 0%, #ffffff 48%, #f6f6f6 100%);
}
.dk-thank-you::before,
.dk-thank-you::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}
.dk-thank-you::before {
  width: 220px;
  height: 220px;
  left: -70px;
  top: 18%;
  background: rgba(199, 30, 45, 0.08);
  animation: dkThankYouFloat 7s ease-in-out infinite;
}
.dk-thank-you::after {
  width: 160px;
  height: 160px;
  right: -40px;
  bottom: 12%;
  background: rgba(23, 23, 23, 0.05);
  animation: dkThankYouFloat 8.5s ease-in-out 0.8s infinite reverse;
}
.dk-thank-you__stage {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.dk-thank-you__mark {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 14px 28px rgba(199, 30, 45, 0.28));
  animation: dkThankYouRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.dk-thank-you__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.dk-thank-you__ring {
  stroke: rgba(199, 30, 45, 0.28);
  stroke-width: 2.5;
  fill: var(--red);
  transform-origin: 36px 36px;
  animation: dkThankYouPop 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.dk-thank-you__check {
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 54;
  stroke-dashoffset: 54;
  animation: dkThankYouDraw 0.55s ease-out 0.38s forwards;
}
.dk-thank-you__brand {
  margin: 0 0 10px;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: dkThankYouRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.dk-thank-you__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #171717;
  animation: dkThankYouRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.dk-thank-you__lead {
  margin: 0 auto 30px;
  max-width: 34rem;
  color: #4a4a4a;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.65;
  animation: dkThankYouRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}
.dk-thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: dkThankYouRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}
.dk-thank-you__actions .btn--primary::before {
  background-color: var(--brand-dark);
}
.dk-thank-you__actions .btn--primary:hover,
.dk-thank-you__actions .btn--primary:focus-visible {
  color: #fff;
}
.dk-thank-you__actions .btn--primary:hover .btn__arrow,
.dk-thank-you__actions .btn--primary:focus-visible .btn__arrow {
  filter: none;
}
.dk-thank-you-next {
  padding: clamp(48px, 7vw, 80px) 0 clamp(64px, 9vw, 100px);
  background: #171717;
  color: #fff;
}
.dk-thank-you-next__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.dk-thank-you-next__eyebrow {
  margin: 0 0 10px;
  color: #ff6b7a;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dk-thank-you-next__title {
  margin: 0 auto 36px;
  max-width: 18ch;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
}
.dk-thank-you-next__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.5vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.dk-thank-you-next__list li {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}
.dk-thank-you-next__list span {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.dk-thank-you-next__list em {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
}
.dk-thank-you-next__note {
  margin: 36px 0 0;
  font-size: 0.95rem;
}
.dk-thank-you-next__note a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.dk-thank-you-next__note a:hover {
  border-bottom-color: #fff;
}

@keyframes dkThankYouRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dkThankYouPop {
  from {
    opacity: 0;
    transform: scale(0.72);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes dkThankYouDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes dkThankYouFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 780px) {
  .dk-thank-you-next__list {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .dk-thank-you__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dk-thank-you::before,
  .dk-thank-you::after,
  .dk-thank-you__mark,
  .dk-thank-you__ring,
  .dk-thank-you__check,
  .dk-thank-you__brand,
  .dk-thank-you__title,
  .dk-thank-you__lead,
  .dk-thank-you__actions {
    animation: none !important;
  }
  .dk-thank-you__check {
    stroke-dashoffset: 0;
  }
}

/* Single article */
.article-hero {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0;
  background: #f3f3f3;
}
.article-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.article-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #8a8a8a;
  font-size: 13px;
  font-weight: 600;
}
.article-hero__crumb a:hover { color: var(--red); }
.article-hero__eyebrow {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-weight: var(--type-meta-weight);
  font-size: var(--type-meta-size);
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
  color: var(--red);
}
.article-hero__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--text);
  text-transform: none;
}
.article-hero__media {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 560px;
}
.article-hero__frame {
  position: relative;
  padding: 5px;
  border-radius: 18px;
}
.article-hero__frame img {
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 340px);
  object-fit: cover;
  border-radius: 13px;
  background: #ddd;
}

.page-hero--article { min-height: clamp(570px, 72vh, 680px) !important; }
.page-hero--article .page-hero__main { max-width: 860px; }
.page-hero--article .page-hero__title { font-size: clamp(38px, 5.2vw, 68px); text-transform: none; }
.page-hero--article .page-hero__lead { max-width: 680px; }
.dk-single { padding: 64px 0 110px; background: #fff; }
.dk-single__layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(260px, 330px); justify-content: center; gap: clamp(45px, 7vw, 90px); align-items: start; }
.dk-single__meta { display: flex; gap: 9px; margin-bottom: 32px; color: #777; font-size: 13px; font-weight: 600; }
.dk-single__content { color: #333; font-size: 18px; line-height: 1.82; }
.dk-single__content p + p,
.dk-single__content h2 + p { margin-top: 18px; }
.dk-single__content h2 {
  margin-top: 42px;
  font-family: var(--font-heading);
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: 1.15;
  color: var(--text);
}
.dk-single__content a { color: var(--red); text-decoration: underline; }
.dk-single__aside {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 20px;
  align-content: start;
}
.dk-single__cta {
  padding: 30px;
  border-radius: 12px;
  color: #fff;
  background: var(--dark-section);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .16);
}
.dk-single__cta .eyebrow { color: #ff5a67; }
.dk-single__cta h2 {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: 1.15;
  color: #fff;
}
.dk-single__cta p:not(.eyebrow) {
  margin: 14px 0 22px;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: rgba(255, 255, 255, .72);
}

.dk-author-card {
  padding: 28px 24px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
}
.dk-author-card__avatar {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #ececec;
}
.dk-author-card__name {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text);
}
.dk-author-card__bio {
  margin-top: 12px;
  color: #444;
  font-size: 14px;
  line-height: 1.65;
}

.dk-single__follow {
  padding: 24px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
}
.dk-single__follow h4 {
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.dk-single__follow .footer__social-links {
  justify-content: flex-start;
}
.dk-single__follow .footer__social-link {
  background: var(--red);
  border-color: var(--red);
}
.dk-single__follow .footer__social-link:hover,
.dk-single__follow .footer__social-link:focus-visible {
  background: var(--dark-section);
  border-color: var(--dark-section);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
}
.dk-single__follow .footer__social-link:hover .footer__social-icon,
.dk-single__follow .footer__social-link:focus-visible .footer__social-icon {
  filter: none;
}

.dk-recent-posts {
  padding: 24px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
}
.dk-recent-posts__heading {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.dk-recent-posts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.dk-recent-posts__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.dk-recent-posts__thumb {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #ececec;
  flex-shrink: 0;
}
.dk-recent-posts__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.dk-recent-posts__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  color: var(--text);
  transition: color .2s ease;
}
.dk-recent-posts__item:hover .dk-recent-posts__title,
.dk-recent-posts__item:focus-visible .dk-recent-posts__title {
  color: var(--red);
}
.dk-recent-posts__item:hover .dk-recent-posts__thumb img,
.dk-recent-posts__item:focus-visible .dk-recent-posts__thumb img {
  transform: scale(1.06);
}

/* Policy pages */
.dk-policy { padding: 90px 0 40px; background: #f7f7f7; }
.dk-policy__layout { max-width: 820px; }
.dk-policy__content {
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .06);
}
.dk-policy__updated {
  margin-bottom: 28px;
  color: #888;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dk-policy__content section + section { margin-top: 36px; padding-top: 36px; border-top: 1px solid #eee; }
.dk-policy__content h2 {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: 1.15;
  color: var(--text);
}
.dk-policy__content p {
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: var(--text-gray);
}
.dk-policy-cta {
  padding: 70px 0 100px;
  background: linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
}
.dk-policy-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 14px;
  color: #fff;
  background: var(--dark-section);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .16);
}
.dk-policy-cta .eyebrow { color: #ff5a67; }
.dk-policy-cta h2 {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: 1.15;
  color: #fff;
}
.dk-policy-cta p:not(.eyebrow) {
  margin-top: 12px;
  max-width: 520px;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: rgba(255, 255, 255, .72);
}
.dk-policy-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }
.dk-policy-cta__actions .btn--outline-white {
  width: auto;
  min-width: 0;
}

/* Videomonials page */
.dk-videos-page {
  padding: 70px 0 90px;
  background: #f7f7f7;
}
.dk-videos-page__intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.dk-videos-page__lead {
  margin-top: 16px;
  color: var(--text-gray);
  font-size: 16px;
}
.dk-videos-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.dk-video-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .06);
}
.dk-video-card__trigger {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 0;
  background: #111;
  cursor: pointer;
  overflow: hidden;
}
.dk-video-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.dk-video-card__trigger:hover .dk-video-card__thumb,
.dk-video-card__trigger:focus-visible .dk-video-card__thumb {
  transform: scale(1.04);
}
.dk-video-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -58%);
  width: 92px;
  height: 92px;
  transition: transform .2s ease;
  filter: drop-shadow(0 10px 24px rgba(199, 30, 45, .35));
}
.dk-video-card__play img {
  width: 100%;
  height: 100%;
}
.dk-video-card__play-label {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}
.dk-video-card__trigger:hover .dk-video-card__play,
.dk-video-card__trigger:focus-visible .dk-video-card__play {
  transform: translate(-50%, -58%) scale(1.08);
}
.dk-video-card__body {
  padding: 22px 24px 26px;
}
.dk-video-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--text);
}
.dk-video-card__subtitle {
  margin-top: 8px;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.5;
}

/* 404 / empty / search form */
.dk-404 { padding: 90px 0 110px; background: #f7f7f7; }
.dk-404__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
}
.dk-404__links a {
  display: inline-flex;
  padding: 12px 22px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-weight: 700;
  transition: .2s ease;
}
.dk-404__links a:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(199, 30, 45, .2);
}
.dk-404__search { max-width: 560px; margin: 0 auto; text-align: center; }
.dk-404__search-label { margin-bottom: 16px; color: #666; font-weight: 600; }
.dk-search-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.dk-search-form__input {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  background: #fff;
  color: #222;
  font: 400 15px var(--font-body);
}
.dk-search-form__input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(199, 30, 45, .15);
}
.dk-search-form__submit { flex-shrink: 0; white-space: nowrap; }
.dk-search-form--centered { justify-content: center; }
.dk-search-form--wide { max-width: 640px; margin: 0 auto 40px; }
.dk-search-results__form { margin-bottom: 12px; }
.dk-empty-state {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 28px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
}
.dk-empty-state h2 {
  font-family: var(--font-heading);
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: 1.15;
  color: var(--text);
}
.dk-empty-state p {
  margin: 14px 0 28px;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: var(--text-gray);
}
.dk-empty-state .dk-404__links { margin-bottom: 0; }
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Single extras */
.dk-single__cat { color: var(--red); font-weight: 700; }
.dk-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  padding-top: 36px;
  border-top: 1px solid #eee;
}
.dk-post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fafafa;
  transition: border-color .2s ease, transform .2s ease;
}
.dk-post-nav__link:hover { border-color: rgba(199, 30, 45, .4); transform: translateY(-2px); }
.dk-post-nav__link span { color: #888; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.dk-post-nav__link strong { color: #171717; font: 700 16px/1.35 var(--font-heading); }
.dk-post-nav__link--next { text-align: right; }
.dk-post-nav__link--empty { visibility: hidden; pointer-events: none; }
.dk-related-posts { padding-block: 110px; }
.dk-related-posts__slider-row { position: relative; }
.dk-related-posts__nav {
  display: none;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e4e4e4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.dk-related-posts__nav img {
  width: 9px;
  height: 15px;
  object-fit: contain;
  transition: filter .2s ease;
}
.dk-related-posts__nav:hover,
.dk-related-posts__nav:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
  outline: none;
}
.dk-related-posts__nav:hover img,
.dk-related-posts__nav:focus-visible img {
  filter: brightness(0) invert(1);
}
.dk-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.dk-pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.dk-pagination a,
.dk-pagination .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fff;
  color: #222;
  font-weight: 700;
}
.dk-pagination .current,
.dk-pagination a:hover { color: #fff; background: var(--brand-dark); border-color: var(--brand-dark); }

@media (max-width: 1023px) {
  .dk-blog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dk-article-card--featured { grid-column: span 2; }
  .dk-related-posts__slider-row {
    position: relative;
    display: block;
    padding-inline: 0;
  }
  .dk-related-posts__nav {
    display: grid;
    position: absolute;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
  }
  .dk-related-posts__nav--prev { left: 8px; }
  .dk-related-posts__nav--next { right: 8px; }
  .dk-related-posts__nav:hover,
  .dk-related-posts__nav:focus-visible {
    transform: translateY(-50%);
  }
  .dk-related-posts .dk-blog__grid,
  .dk-related-posts__track {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    cursor: grab;
  }
  .dk-related-posts .dk-blog__grid::-webkit-scrollbar,
  .dk-related-posts__track::-webkit-scrollbar { display: none; }
  .dk-related-posts .dk-article-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .gallery-hero { padding: 64px 0; }
  .gallery-hero__inner { grid-template-columns: 1fr; gap: 46px; }
  .gallery-hero__content { max-width: 680px; }
  .gallery-hero__mosaic { height: 410px; }
  .dk-gallery__grid { grid-auto-rows: 95px; }
  .dk-contact { background: #f3f3f3; }
  .dk-contact__layout { grid-template-columns: 1fr; }
  .dk-contact__details { max-width: 680px; }
  .dk-contact__form-wrap { max-width: 760px; width: 100%; }
  .contact-page { padding: 56px 0 64px; }
  .contact-page__top { grid-template-columns: 1fr; }
  .contact-page__map { height: 320px; }
  .contact-page__info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faqs-page { padding: 64px 0 72px; }
  .faqs-page__layout {
    display: grid;
    grid-template-columns: auto !important;
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
  }
  .faqs-page__aside {
    position: sticky;
    top: 140px;
    display: none !important;
  }
  .faqs-page__list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .faqs-page__item summary {
    gap: 14px;
    padding: 20px 20px;
  }
  .faqs-page__answer { padding: 0 20px 20px 76px; }
  .dk-single__layout { grid-template-columns: minmax(0, 700px); }
  .dk-single__aside { position: static; }
  .article-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-hero__media {
    justify-self: stretch;
    max-width: none;
  }
  .article-hero__title { max-width: none; }
  .dk-policy-cta__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767px) {
  .page-content-landing .page-hero:not(.page-hero--compact) { min-height: auto; }
  .page-content-landing .page-hero--compact {
    min-height: 200px;
    height: 200px;
    max-height: 200px;
  }
  .gallery-hero { padding: 48px 0 52px; }
  .gallery-hero__inner { gap: 34px; }
  .gallery-hero h1 { font-size: clamp(42px, 14vw, 60px); }
  .gallery-hero__lead { margin: 18px 0 24px; font-size: 15px; }
  .gallery-hero__mosaic {
    grid-template-columns: 1.25fr .75fr;
    height: 300px;
    gap: 9px;
  }
  .gallery-hero__image { border-radius: 11px; }
  .dk-blog, .dk-gallery, .dk-contact, .dk-single, .dk-policy, .dk-404 { padding: 48px 0 64px; }
  .dk-related-posts { padding-block: 64px; }
  .blogs.dk-related-posts { padding-block: 64px; }
  .dk-related-posts__nav--prev { left: 8px; }
  .dk-related-posts__nav--next { right: 8px; }
  .article-hero { padding: 36px 0 40px; }
  .article-hero__frame img { height: 220px; }
  .dk-policy-cta { padding: 40px 0 72px; }
  .dk-section-intro { margin-bottom: 10px !important; }
  .dk-blog__grid { grid-template-columns: 1fr; gap: 20px; }
  .dk-related-posts .dk-blog__grid,
  .dk-related-posts__track {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
  }
  .dk-article-card--featured { grid-column: auto; display: flex; }
  .dk-article-card--featured .dk-article-card__media { min-height: 0; height: 240px; }
  .dk-article-card--featured h2 { font-size: 27px; }
  .dk-gallery__filters { margin-bottom: 28px; }
  .dk-gallery__filter { flex: 1 1 calc(50% - 10px); padding-inline: 14px; }
  .dk-gallery__grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .dk-gallery__item, .dk-gallery__item--1, .dk-gallery__item--4 { grid-column: auto; grid-row: auto; height: 290px; }
  .dk-gallery__overlay { opacity: 1; transform: none; }
  .dk-lightbox { padding: 18px; }
  .dk-lightbox__close { right: -5px; top: -20px; }
  .dk-lightbox__nav--prev { left: 8px; }
  .dk-lightbox__nav--next { right: 8px; }
  .dk-video-modal { padding: 16px; }
  .dk-video-modal__close { right: 0; top: -52px; }
  .dk-contact__layout {
    gap: 28px;
    min-width: 0;
  }
  .dk-contact__details,
  .dk-contact__form-wrap {
    max-width: none;
    width: 100%;
    min-width: 0;
  }
  .dk-contact__details .section-heading {
    max-width: none;
    font-size: clamp(26px, 7vw, 34px);
  }
  .dk-contact__lead {
    max-width: none;
    font-size: 15px;
  }
  .dk-contact__cards { margin-top: 24px; gap: 10px; }
  .dk-contact-card {
    padding: 14px;
    gap: 12px;
  }
  .dk-hours { margin-top: 20px; padding: 20px; }
  .dk-form-row { grid-template-columns: 1fr; }
  .contact-page__info-grid { grid-template-columns: 1fr; }
  .contact-page__map-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-page__map-meta .btn { width: auto; max-width: 100%; justify-content: center; }
  .contact-partners { padding: 48px 0 56px; }
  .contact-partners__slider { margin-top: 28px; padding: 0 32px; }
  .contact-partners__track { gap: 12px; }
  .contact-partners__item {
    flex: 0 0 calc(50% - 6px);
    height: 96px;
    padding: 12px;
  }
  .contact-partners__dots { margin-top: 28px; }
  .faqs-page { padding: 48px 0 56px; }
  .faqs-page__intro { margin-bottom: 32px; }
  .faqs-page__lead { font-size: 15px; }
  .faqs-page__layout {
    display: grid;
    grid-template-columns: auto !important;
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
  }
  .faqs-page__aside {
    position: sticky;
    top: 140px;
    display: none !important;
  }
  .faqs-page__list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .faqs-page__aside-card { padding: 22px 18px; }
  .faqs-page__item summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 16px 14px;
    font-size: 15px;
    align-items: start;
  }
  .faqs-page__item summary::after {
    width: 28px;
    height: 28px;
    font-size: 18px;
    margin-top: 4px;
  }
  .faqs-page__num {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 12px;
    margin-top: 2px;
  }
  .faqs-page__answer { padding: 0 14px 16px 14px; }
  .dk-contact__form-wrap {
    padding: 22px 16px;
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .1);
  }
  .dk-ghl-form,
  .dk-ghl-form iframe {
    min-height: 520px;
  }
  .dk-contact-form {
    gap: 14px;
    margin-top: 20px;
  }
  .dk-contact-form input:not([type="checkbox"]),
  .dk-contact-form select,
  .dk-contact-form textarea {
    min-height: 48px;
    font-size: 16px; /* avoid iOS zoom */
    width: 96%;
  }
  .dk-single__content { font-size: 17px; }
  .dk-policy__content p { font-size: 16px; }
  .dk-search-form { flex-direction: column; }
  .dk-post-nav { grid-template-columns: 1fr; }
  .dk-post-nav__link--next { text-align: left; }
  .dk-policy-cta__actions { width: auto; align-items: flex-start; }
  .dk-policy-cta__actions .btn { width: auto; max-width: 100%; justify-content: center; }
  .dk-policy-cta__actions .btn:nth-child(n + 2) { display: none; }

  .dk-videos-page { padding: 48px 0 64px; }
  .dk-videos-page__intro,
  .dk-videos-page__lead {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
  }
  .dk-videos-page__grid { grid-template-columns: 1fr; gap: 20px; }
  .dk-video-card__play { width: 80px; height: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .dk-article-card, .dk-gallery__open > img, .dk-gallery__overlay, .dk-post-nav__link { transition: none; }
  .hero__bg-video { display: none; }
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-leading);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
p, h1, h2, h3, h4 { margin: 0; }
p {
  font-family: var(--font-body);
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-leading) !important;
}

/* Description / lead copy — same body line-height as p */
.section-copy,
.page-hero__lead,
.gallery-hero__lead,
.contact-partners__lead,
.dk-videos-page__lead,
.dk-subscribe__desc,
.dk-article-card__excerpt,
.dk-contact__lead,
.about__text,
.services__text,
.stories__text,
.why__text,
.faqs-page__lead,
.faqs-page__answer,
.svc-why__lead,
.svc-diff__text,
.svc-ready__text,
.svc-review__text,
.svc-brand-strip__lead,
.svc-about-video__text,
.svc-hub__lead,
.svc-hub-card__body > p,
.svc-reviews__lead,
.svc-related__lead {
  line-height: var(--type-body-leading) !important;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; padding: 0; }

.container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ---------- shared ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  border-radius: 6px;
  padding: 15px 30px;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn__arrow { width: 24px; height: 11px; object-fit: contain; }

.btn--primary {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
}
.btn--primary:hover { background: transparent; border-color: transparent; }
.btn--primary:focus-visible,
.btn--outline-dark:focus-visible,
.btn--white:focus-visible,
.btn--outline-white:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* Keep modifier for markup compatibility — size matches base .btn */
.btn--lg {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 6px;
}

.btn--outline-dark {
  border: 1px solid #000;
  color: #000;
  background: transparent;
}
.btn--outline-dark:hover { background: transparent; color: #fff; }
.btn--outline-dark:hover .btn__arrow { filter: invert(1); }

.btn--white {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}
.btn--white:hover { background: transparent; color: #fff; }

.btn--outline-white {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}
.btn--outline-white:hover { background: transparent; color: #000; }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: var(--type-meta-weight);
  font-size: var(--type-meta-size);
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
  color: var(--red);
}
.eyebrow--lined { display: flex; align-items: center; gap: 11px; }
.eyebrow--lined::before { content: ""; width: 43px; height: 1px; background: currentColor; }
.eyebrow--light { color: #fff; }
.eyebrow--center { justify-content: center; text-align: center; display: flex; align-items: center; gap: 8px; }
.eyebrow__tick { width: 6px; height: 11px; }

.section-heading {
  font-family: var(--font-heading) !important;
  font-weight: var(--type-h2-weight) !important;
  font-size: var(--type-h2-size) !important;
  color: var(--text);
  line-height: var(--type-h2-leading) !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}
.section-heading--center { text-align: center; }
.section-heading--light { color: #fff; }

/* Shared H2 type — fluid so long titles (e.g. awards) wrap on small screens */
h2,
h2.section-heading,
.section-heading {
  font-family: "Cabinet Grotesk", Inter, sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(26px, 2.2vw + 1rem, 40px) !important;
  line-height: 1.2 !important;
}

.section-subheading {
  font-family: var(--font-heading) !important;
  font-weight: var(--type-h3-weight) !important;
  font-size: var(--type-h3-size) !important;
  color: var(--text);
  line-height: var(--type-h3-leading) !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}
.section-subheading--light { color: #fff; }

/* Force shared H3 type — wins over section-specific class overrides */
h3,
h3.section-subheading,
.section-subheading {
  font-family: "Cabinet Grotesk", Inter, sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  line-height: 28px !important;
}

.section-copy {
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading) !important;
  color: var(--text-gray);
  letter-spacing: normal;
  text-transform: none;
}
.section-copy--light { color: rgba(255, 255, 255, .78); }

/* dark sections share a desaturated photographic texture */
.section-dark {
  position: relative;
  background: var(--dark-section);
  isolation: isolate;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/dark-texture.webp") center / cover no-repeat;
  filter: grayscale(1);
  opacity: .27;
  z-index: -1;
  pointer-events: none;
}

/* ---------- top bar ---------- */

.topbar {
  background: var(--red);
  overflow: hidden;
  max-height: 120px;
  transition: max-height .2s ease;
}
.topbar__inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 10px;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.topbar__address { font-size: 14px; line-height: 1.4; }
.topbar__contacts { display: flex; align-items: center; gap: 20px; }
.topbar__text--regular { font-weight: 400; }
.topbar__icon--pin { width: 12px; height: 17px; }
.topbar__icon--mail { width: 17px; height: 14px; }
.topbar__icon--phone { width: 17px; height: 17px; }
.topbar__item:hover span { text-decoration: underline; }
.topbar__address:hover span,
.topbar__address:focus-visible span { text-decoration: underline; }
.topbar__address:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ---------- header ---------- */

.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.header__inner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height .25s ease;
}
.header__logo img {
  width: 134px;
  height: 69px;
  object-fit: contain;
  transition: width .25s ease, height .25s ease;
}

/* Homepage overlay top bar: visible at page top, collapses when scrolled */
body.dk-scrolled .page-test__topbar {
  max-height: 0 !important;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  border: 0;
  margin: 0;
  padding: 0;
}
body.dk-scrolled .page-test__topbar .topbar__inner {
  min-height: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  padding-block: 0 !important;
  margin: 0 !important;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
}

/* Homepage overlay header only: compact on scroll */
@media (min-width: 1140px) {
  body.dk-scrolled .page-test__header .header__inner {
    height: 90px;
  }
  body.dk-scrolled .page-test__header .header__logo img {
    width: 101px;
    height: 69px;
  }
}

/* Homepage overlay header only: keep compact, slight logo tighten */
@media (max-width: 1139px) and (min-width: 768px) {
  body.dk-scrolled .page-test__header .header__inner {
    height: 76px;
  }
  body.dk-scrolled .page-test__header .header__logo img {
    width: 90px;
    height: 48px;
  }
}

/* Homepage overlay header only: slightly smaller than base */
@media (max-width: 767px) {
  body.dk-scrolled .page-test__header .header__inner {
    height: 64px;
  }
  body.dk-scrolled .page-test__header .header__logo img {
    width: 84px;
    height: 44px;
  }
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav__item { position: relative; display: flex; align-items: center; }
.nav__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-alt);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease;
}
.nav__link:hover, .nav__link:focus-visible { color: var(--red); }
.nav__link--active,
.nav__link[aria-current="page"] {
  color: var(--red);
  font-weight: 700;
}
.nav__dropdown-link--active {
  color: var(--red);
  font-weight: 700;
}
.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 30px;
  margin-left: -2px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav__chevron { width: 10px; height: 6px; transition: transform .2s ease; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 80;
  display: grid;
  min-width: 235px;
  padding: 10px;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav__dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
}
.nav__dropdown-link {
  padding: 11px 13px;
  border-radius: 8px;
  color: var(--text-alt);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.nav__dropdown-link:hover, .nav__dropdown-link:focus-visible {
  color: var(--red);
  background: rgba(199, 30, 45, .07);
}
.nav__item--has-children:hover > .nav__dropdown,
.nav__item--has-children:focus-within > .nav__dropdown,
.nav__item--has-children.nav__item--open > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__item--nested:hover > .nav__dropdown,
.nav__item--nested:focus-within > .nav__dropdown,
.nav__item--nested.nav__item--open > .nav__dropdown {
  transform: none;
}
.nav__item--open > .nav__dropdown-toggle .nav__chevron { transform: rotate(180deg); }
.nav__cta { display: none; }

.nav__item--nested {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.nav__item--nested > .nav__dropdown-link {
  flex: 1;
  min-width: 0;
}
.nav__item--nested > .nav__dropdown-toggle {
  flex-shrink: 0;
}
.nav__item--nested > .nav__dropdown {
  top: 0;
  left: calc(100% + 6px);
  z-index: 90;
  transform: translateX(8px);
}
.nav__item--nested > .nav__dropdown::before {
  top: 0;
  right: 100%;
  bottom: 0;
  left: auto;
  width: 14px;
  height: auto;
}
@media (min-width: 1140px) {
  .nav__item--nested > .nav__dropdown-toggle .nav__chevron {
    transform: rotate(-90deg);
  }
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-alt);
  transition: transform .2s ease, opacity .2s ease;
}
.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background: #ececec;
  overflow: hidden;
}
.hero__bg,
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 0;
  pointer-events: none;
}
.hero__bg-video {
  border: 0;
  background: transparent;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 54%;
  min-width: 520px;
  background: url("../assets/icons/hero-white-overlay.svg") left center / 100% 100% no-repeat;
  transform: scale(-1, -1);
  pointer-events: none;
  z-index: 1;
}
.hero__side-deco {
  display: none;
  position: absolute;
  right: 0;
  top: 98px;
  width: 38px;
  height: 203px;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  right: 49px;
  bottom: 30px;
  width: 161px;
  z-index: 3;
}
.hero__badge::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 99px;
  height: 99px;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}
.hero__badge img {
  position: relative;
  z-index: 1;
  width: 161px;
  height: 113px;
  object-fit: contain;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero__heading {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero__kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(22px, 2.3vw, 32px);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #000;
  line-height: normal;
}
.hero__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(54px, 6.1vw, 87.9px);
  line-height: 1.03;
  text-transform: uppercase;
  color: var(--red);
  margin-top: -2px;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 40px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  line-height: normal;
  margin-top: 2px;
}
.hero__location {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #000;
  line-height: normal;
  margin-top: 4px;
}
.hero__tagline {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
  line-height: normal;
}
.hero__tagline-accent { color: var(--red); position: relative; display: inline-block; }
.hero__tagline-underline {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
}

.hero__offers { margin-top: 30px; max-width: 418px; width: 100%; }

.offer-card {
  position: relative;
  z-index: 2;
  background: var(--red-deep);
  border-radius: 12px;
  min-height: 84.5px;
  height: auto;
  display: flex;
  align-items: center;
  width: 100%;
  padding-block: 14px;
  padding-inline: 22px 18px;
  box-shadow: none;
}
.offer-card__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}
.offer-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: block;
}
.offer-card__icon-img { width: 56px; height: 56px; display: block; }
.offer-card__label {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18.4px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  line-height: 1.2 !important;
  white-space: normal;
}
.offer-card__divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, .85);
  margin-inline: 14px;
  flex-shrink: 0;
}
.offer-card__right {
  text-align: center;
  flex: 0 0 auto;
  min-width: 0;
}
.offer-card__amount {
  margin: 0;
  font-family: "Anton SC", sans-serif;
  font-weight: 400;
  font-size: 34px;
  color: #fff;
  line-height: 1.1 !important;
  white-space: nowrap;
}
.offer-card__caption {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15.3px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2 !important;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__cta {
  margin-top: 50px;
}

.offer-ribbon {
  position: relative;
  z-index: 1;
  width: 396px;
  max-width: 100%;
  margin-top: -24px;
  margin-left: 11px;
}
.offer-ribbon__bg { width: 100%; height: auto; }
.offer-ribbon__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}
.offer-ribbon__label {
  font-size: 16.1px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.offer-ribbon__price { width: 149px; height: 42px; margin-top: 5px; }

/* ---------- trust strip ---------- */

.trust {
  background: var(--dark-strip);
  position: relative;
  isolation: isolate;
}
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/zebra-texture.webp") left center / auto 100% repeat-x;
  opacity: .03;
  z-index: -1;
}
.trust__inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding-block: 20px;
}
.trust__item { display: flex; align-items: center; gap: 25px; }
.trust__icon {
  width: 40px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.trust__item p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  max-width: 260px;
}
.trust__divider { width: 1px; height: 44px; background: rgba(255, 255, 255, .35); }

/* ---------- about ---------- */

.about-page-main {
  min-height: 40vh;
}

.about { padding-block: 100px 90px; }

.about__top {
  display: grid;
  grid-template-columns: minmax(0, 529px) minmax(0, 595px);
  justify-content: space-between;
  gap: 40px 60px;
}
.about__heading {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 45px);
  line-height: normal;
  color: var(--text);
}
.about__text {
  margin-top: 19px;
  color: var(--text);
  position: relative;
  z-index: 2;
}
.about__text p { margin: 0; }
.about__photo-main {
  position: relative;
  z-index: 1;
}
.about__photo-main img {
  width: 100%;
  height: 485px;
  object-fit: cover;
  border-radius: 20px;
}

.about__bottom {
  margin-top: -168px;
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 57px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.about__photo-side img {
  width: 100%;
  height: 363px;
  object-fit: cover;
  border-radius: 15px;
}
.about__facts { padding-top: 12px; }
.about__experience-num { width: 221px; height: 91px; }
.about__experience-label {
  margin-top: 27px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
}
.about__features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 60px;
}
.about-feature__circle {
  position: relative;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
}
.about-feature__ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-feature__icon { position: relative; width: 30px; height: 30px; object-fit: contain; }
.about-feature__title {
  display: block;
  margin-top: 9px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text);
}
.about-feature p { margin-top: 10px; color: var(--text); }

/* About Us — extra sections */
.about-values {
  padding-block: 90px 100px;
  background: #f6f6f6;
}
.about-values .dk-section-intro { margin-bottom: 22px; }
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.about-values__card {
  padding: 32px 28px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .04);
}
.about-values__num {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .12em;
}
.about-values__card h3 {
  font-family: var(--font-heading);
  font-weight: var(--type-h3-weight);
  font-size: var(--type-h3-size);
  line-height: 1.25;
  color: var(--text);
}
.about-values__card p {
  margin-top: 12px;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: var(--text-gray);
}

.about-craft {
  padding-block: 100px;
  background: #fff;
}
.about-craft__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-craft__media {
  border-radius: 16px;
  overflow: hidden;
}
.about-craft__media img {
  display: block;
  width: 100%;
  height: clamp(280px, 34vw, 440px);
  object-fit: cover;
}
.about-craft__heading {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: 1.15;
  color: var(--text);
}
.about-craft__copy p:not(.eyebrow) {
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: var(--text-gray);
}
.about-craft__copy .btn { margin-top: 28px; }

.about-serve {
  padding-block: 90px;
  background: var(--dark-section);
  color: #fff;
}
.about-serve__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.about-serve__heading {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: 1.15;
  color: #fff;
}
.about-serve__copy p:not(.eyebrow) {
  margin-top: 16px;
  max-width: 46ch;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: rgba(255, 255, 255, .72);
}
.about-serve__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-serve__list li {
  position: relative;
  padding: 16px 18px 16px 42px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  font-weight: 700;
  font-size: 15px;
}
.about-serve__list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

/* ---------- services ---------- */

.services { padding-block: 60px 90px; }

.services__tabs {
  position: relative;
  background: #fff;
  border-radius: 12px;
  min-height: 160px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.services__tabs-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.service-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding-left: clamp(24px, 6vw, 87px);
  padding-block: 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(19px, 1.75vw, 25px);
  color: var(--red);
  text-align: left;
  line-height: normal;
  position: relative;
  transition: background-color .2s ease, color .2s ease;
}
.service-tab__icon { height: 46px; width: auto; object-fit: contain; }
.service-tab--active { background: var(--red); color: #fff; }
.service-tab--active .service-tab__icon { filter: brightness(0) invert(1); }
.service-tab:not(.service-tab--active):hover { background: rgba(199, 30, 45, .06); }
.service-tab span { max-width: 244px; }

.services__content {
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(0, 528px) minmax(0, 600px);
  justify-content: space-between;
  gap: 50px 60px;
}
.services__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 45px);
  color: #fff;
  line-height: normal;
}
.services__rule { margin-top: 30px; width: 100%; max-width: 518px; height: 1px; background: rgba(255, 255, 255, .6); }
.services__text { margin-top: 30px; color: #fff; max-width: 528px; }
.services__cta { margin-top: 42px; }

.services__media { position: relative; }
.services__photo {
  width: 100%;
  height: 402px;
  object-fit: cover;
  border-radius: 15px;
}
.services__annotation {
  position: absolute;
  left: -84px;
  bottom: -33px;
  width: 300px;
  height: 163px;
  pointer-events: none;
}
.services__annotation-bubble { position: absolute; inset: 0; width: 100%; height: 100%; }
.services__annotation-text {
  position: absolute;
  left: 49px;
  top: 63px;
  width: 231px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #1c1c1c;
}
.services__annotation-icon { position: absolute; left: 46px; top: 20px; width: 36px; height: 36px; object-fit: contain; }
.services__annotation-arrow1 { position: absolute; right: 12px; top: 6px; width: 29px; height: 41px; }
.services__annotation-arrow2 { position: absolute; left: 17px; bottom: 12px; width: 27px; height: 24px; }

/* ---------- work process ---------- */

.process { padding-block: 63px 104px; }
.process .section-heading--center { margin-top: 14px; }

.process__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(16px, 3vw, 62px);
}
.process__grid--top { margin-top: 40px; }
.process__grid--bottom { margin-top: 55px; }

.process-step {
  width: 340px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process-step__badge {
  position: relative;
  /* Width matches the circle so the icon centers with title/text; pill may overhang. */
  width: 85.3px;
  height: 88px;
}
.process-step__circle-inner {
  position: absolute;
  left: 4.8px;
  top: 7.7px;
  width: 75.7px;
  height: 75.7px;
}
.process-step__circle-outer {
  position: absolute;
  left: 0;
  top: 3px;
  width: 85.3px;
  height: 85.3px;
}
.process-step__icon {
  position: absolute;
  left: 20px;
  top: 23px;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.process-step__pill {
  position: absolute;
  left: 45px;
  top: 0;
  background: var(--red-step);
  color: #fff;
  border-radius: 35px;
  height: 21px;
  padding-inline: 10px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}
.process-step__title {
  display: block;
  margin-top: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 25px;
  color: var(--text);
  text-align: center;
  width: 100%;
}
.process-step__text {
  width: 100%;
  margin-top: 15px;
  text-align: center;
  color: var(--text-gray);
  overflow: visible;
  max-height: none;
}
.process-step__text > *:first-child { margin-top: 0; }
.process-step__text p {
  margin: 0;
  color: var(--text-gray);
  text-align: center;
  text-wrap: balance;
  overflow: visible;
}
/* Drop editor hard-breaks so lines wrap evenly under the title. */
.process-step__text br { display: none; }
.process-step p { margin-top: 15px; color: var(--text-gray); }

.process__arrow {
  width: 198px;
  height: 40px;
  margin-top: 26px;
  flex-shrink: 1;
  min-width: 90px;
  object-fit: contain;
}

/* Chevron nav buttons for the mobile step slider (hidden on desktop). */
.process__nav {
  display: none;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e4e4e4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  padding: 0;
  cursor: pointer;
  line-height: 0;
  z-index: 4;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.process__nav--next {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(199, 30, 45, .28);
}
.process__nav:hover,
.process__nav:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
  outline: none;
}
.process__nav--next:hover,
.process__nav--next:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}
.process__nav img {
  display: block;
  width: 9px;
  height: 15px;
  object-fit: contain;
  transition: filter .2s ease;
}
.process__nav--next img {
  filter: brightness(0) invert(1);
}
.process__nav:hover img,
.process__nav:focus-visible img {
  filter: brightness(0) invert(1);
}

@media (hover: none) {
  .process__nav:active {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
  }
  .process__nav:active img {
    filter: brightness(0) invert(1);
  }
}

/* ---------- stories / video ---------- */

.stories { padding-block: 96px; }
.stories__inner {
  display: grid;
  grid-template-columns: minmax(0, 597px) minmax(0, 503px);
  justify-content: space-between;
  gap: 50px 60px;
  align-items: start;
}
.stories__heading {
  margin-top: 15px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 2.85vw, 40px);
  color: #fff;
  line-height: normal;
}
.stories__text { margin-top: 20px; color: #fff; }
.stories__list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stories__list li {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
  font-size: 18px;
}
.stories__list img { width: 18px; height: 18px; flex-shrink: 0; }
.stories__inner .btn { margin-top: 50px; }

.stories__video {
  background: #e9e9e9;
  border-radius: 20px;
  min-height: 596px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.stories__video-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.stories__video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stories__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  transition: transform .2s ease;
  filter: drop-shadow(0 10px 24px rgba(199, 30, 45, .35));
}
.stories__video-link:hover .stories__play,
.stories__video-link:focus-visible .stories__play {
  transform: translate(-50%, -50%) scale(1.08);
}
.stories__play img {
  width: 100%;
  height: 100%;
  filter: none;
}

/* ---------- video popup ---------- */
.dk-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}
.dk-video-modal[hidden] { display: none; }
.dk-video-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(8, 8, 8, .88);
  cursor: zoom-out;
}
.dk-video-modal__panel {
  position: relative;
  z-index: 1;
  width: min(960px, 94vw);
}
.dk-video-modal__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.dk-video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.dk-video-modal__close {
  position: absolute;
  right: -12px;
  top: -16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
body.dk-video-modal-open { overflow: hidden; }

/* ---------- reviews ---------- */

.reviews { padding-block: 85px 120px; }
.reviews__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 45px);
  text-align: center;
  color: var(--text);
}
.reviews__widget {
  margin-top: 23px;
  width: 100%;
}
.reviews__widget .ti-widget {
  width: 100%;
}

/* ---------- scroll story (text + image) ---------- */

.scroll-story {
  padding-block: 0;
  background: #fff;
}
.scroll-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 6px);
  align-items: stretch;
}
.scroll-story__copy {
  min-width: 0;
  display: flex;
}
.scroll-story__scroll {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #e8e8e8;
}
.scroll-story__scroll::-webkit-scrollbar {
  width: 8px;
}
.scroll-story__scroll::-webkit-scrollbar-track {
  background: #e8e8e8;
  border-radius: 8px;
}
.scroll-story__scroll::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 8px;
}
.scroll-story__heading {
  display: block;
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.2;
  color: #000;
}
.scroll-story__body {
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: #000;
}
.scroll-story__body p + p {
  margin-top: 16px;
}
.scroll-story__body h3 {
  margin: 28px 0 12px;
  font-family: var(--font-heading);
  font-weight: var(--type-h3-weight);
  font-size: var(--type-h3-size);
  line-height: 1.25;
  color: #000;
}
.scroll-story__body h3:first-child {
  margin-top: 0;
}
.scroll-story__body a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.scroll-story__media {
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
}
.scroll-story__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.scroll-story--service {
  padding-block: 0 90px;
}

/* ---------- awards & partners (Figma 17068:708) ---------- */

.awards {
  padding-block: 100px 100px;
  margin-bottom: 100px;
}
.awards__card {
  background: #fff;
  border-radius: 25px;
  padding: 58px clamp(24px, 4.3vw, 62px) 64px;
  overflow: visible;
}
.awards__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 45px);
  line-height: 1.2;
  text-align: center;
  color: #000;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.awards__heading-wrap {
  position: relative;
  display: inline;
  max-width: 100%;
}
.awards__heading-mark {
  position: relative;
  display: inline;
}
.awards__scribble {
  display: none;
}
.awards__slider {
  position: relative;
  margin-top: 27px;
  padding: 0 52px;
}
.awards__logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.awards__logos::-webkit-scrollbar { display: none; }
.awards__logos.is-dragging,
.awards__logos.is-dragging-x { cursor: grabbing; scroll-snap-type: none; }
.why__cards.is-dragging,
.blogs__grid.is-dragging,
.process__slider.is-dragging,
.past-work__slider.is-dragging,
.svc-brand-strip__track.is-dragging { cursor: grabbing; }
.awards__logo {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 200px;
  min-width: 200px;
  height: 133px;
  display: grid;
  place-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.awards__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.awards__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e4e4e4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  padding: 0;
  cursor: pointer;
  line-height: 0;
  z-index: 2;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.awards__arrow--prev { left: -8px; }
.awards__arrow--next {
  right: -8px;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(199, 30, 45, .28);
}
.awards__arrow img {
  width: 9px;
  height: 15px;
  object-fit: contain;
  transition: filter .2s ease;
}
.awards__arrow--next img {
  filter: brightness(0) invert(1);
}
.awards__arrow--prev:hover,
.awards__arrow--prev:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
  outline: none;
}
.awards__arrow--prev:hover img,
.awards__arrow--prev:focus-visible img {
  filter: brightness(0) invert(1);
}
.awards__arrow--next:hover,
.awards__arrow--next:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
  outline: none;
}
@media (hover: none) {
  .awards__arrow--prev:active {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
  }
  .awards__arrow--prev:active img {
    filter: brightness(0) invert(1);
  }
}
.awards__heading--partners { margin-top: 48px; }
.awards__heading--partners span { color: var(--red); }
.awards__partners-slider {
  position: relative;
  margin-top: 40px;
  padding: 0 52px;
}
.awards__partners {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.awards__partners::-webkit-scrollbar { display: none; }
.awards__partners.is-dragging,
.awards__partners.is-dragging-x { cursor: grabbing; scroll-snap-type: none; }
.awards__partner {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 180px;
  min-width: 180px;
  height: 120px;
  display: grid;
  place-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #ececec;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
a.awards__partner:hover,
a.awards__partner:focus-visible {
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  transform: translateY(0);
  outline: none;
}
.awards__partner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.awards__dots {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.awards__dots[hidden] { display: none; }
.awards__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #d9d9d9;
  cursor: pointer;
}
.awards__dot--active { background: var(--red); }

/* ---------- past work ---------- */

.past-work { padding-block: 90px; }
.past-work__filter {
  margin-top: 38px;
  margin-inline: auto;
  width: 763px;
  max-width: 100%;
  background: var(--bg-filter);
  border-radius: 10px;
  padding: 17px 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  overflow: visible;
  cursor: default;
  touch-action: manipulation;
}
.past-work__tab {
  width: 169px;
  height: 57px;
  border-radius: 5px;
  background: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  transition: background-color .2s ease, color .2s ease;
  cursor: pointer;
  touch-action: manipulation;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}
.past-work__tab:hover { background: #fbe9eb; }
.past-work__tab--active,
.past-work__tab--active:hover { background: var(--red); color: #fff; }

.past-work__slider {
  margin-top: 31px;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  cursor: grab;
}
.past-work__slider::-webkit-scrollbar { display: none; }
.past-work__slider.is-dragging,
.past-work__slider.is-dragging-x { cursor: grabbing; scroll-snap-type: none; }
.past-work__page {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  transition: opacity .45s ease, transform .45s ease;
}
.past-work__page--dim { opacity: .25; transform: scale(.985); }
.past-work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.past-work__empty {
  grid-column: 1 / -1;
  margin: 24px 0 8px;
  text-align: center;
  color: #6b7280;
  font-size: 16px;
}
.past-work__more {
  display: none;
  width: auto;
  min-width: 160px;
  max-width: 220px;
  margin: 20px auto 0; /* center on desktop */
  padding: 14px 24px;
  font-size: 15px;
}
.past-work__more:not([hidden]) {
  display: flex; /* block-level so margin:auto can center */
  justify-content: center;
  align-items: center;
}
.past-work__load-more {
  display: none;
  width: auto;
  min-width: 160px;
  max-width: 220px;
  margin: 20px auto 0;
  padding: 14px 24px;
  font-size: 15px;
}
.past-work__load-more:not([hidden]) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.past-work__footer {
  margin-top: 32px;
  text-align: center;
}
.past-work__explore {
  display: inline-flex;
  min-width: 180px;
}
.past-work__explore.btn--primary::before {
  background-color: var(--brand-dark);
}
.past-work__explore.btn--primary:hover,
.past-work__explore.btn--primary:focus-visible {
  color: #fff;
}
.past-work__explore.btn--primary:hover .btn__arrow,
.past-work__explore.btn--primary:focus-visible .btn__arrow {
  filter: none;
}
.dk-gallery-page .past-work__footer {
  display: none;
}
.pw.is-mobile-hidden {
  display: none !important;
}
.pw {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
}
button.pw {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}
button.pw img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
button.pw:hover img,
button.pw:focus-visible img {
  transform: scale(1.04);
}
.gallery-intro {
  padding-block: 72px 20px;
  background: #fff;
}
.gallery-intro__content {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.gallery-intro__content p {
  margin-inline: auto;
  max-width: 68ch;
}
.gallery-intro__content .btn {
  margin-top: 22px;
}
.dk-gallery-page {
  padding-block: 72px 90px;
}
.dk-gallery-page .dk-section-intro {
  margin-bottom: 8px;
}
.dk-gallery-page .gallery-project-tabs {
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  overflow: visible;
  cursor: default;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}
.dk-gallery-page .gallery-project-tabs .past-work__tab {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  height: 52px;
  padding: 0 14px;
  white-space: nowrap;
  font-size: 16px;
  cursor: pointer;
  touch-action: manipulation;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}
/* Location tabs swap pages (no horizontal drag track). */
.dk-gallery-page .past-work__slider--swap,
.past-work__slider--swap {
  display: block;
  overflow: visible;
  scroll-snap-type: none;
  cursor: default;
  touch-action: auto;
}
.dk-gallery-page .past-work__slider--swap .past-work__page,
.past-work__slider--swap .past-work__page {
  flex: none;
  min-width: 0;
  width: 100%;
  scroll-snap-align: none;
}
.dk-gallery-page .past-work__slider--swap .past-work__page[hidden],
.past-work__slider--swap .past-work__page[hidden] {
  display: none !important;
}
.gallery-locations {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery-locations__tab {
  min-width: 180px;
  height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid #e4e4e4;
  background: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.gallery-locations__tab:hover {
  border-color: rgba(199, 30, 45, .35);
  color: var(--red);
}
.gallery-locations__tab--active,
.gallery-locations__tab--active:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.gallery-location-panel {
  margin-top: 22px;
}
.gallery-location-panel[hidden] {
  display: none;
}
.dk-gallery-page .past-work__filter {
  margin-top: 0;
}
.pw--flip { transform: scaleX(-1); }
button.pw.pw--flip { transform: none; }
button.pw.pw--flip img { transform: scaleX(-1); }
button.pw.pw--flip:hover img,
button.pw.pw--flip:focus-visible img {
  transform: scaleX(-1) scale(1.04);
}
.pw--r1c1 { grid-column: span 4; }
.pw--r1c2 { grid-column: span 4; }
.pw--r1c3 { grid-column: span 4; }
.pw--r2c1 { grid-column: span 6; }
.pw--r2c2 { grid-column: span 3; }
.pw--r2c3 { grid-column: span 3; }
.pw--r3c1 { grid-column: span 3; }
.pw--r3c2 { grid-column: span 6; }
.pw--r3c3 { grid-column: span 3; }

/* ---------- why choose ---------- */

.why { padding-block: 88px; }
.why__inner {
  display: grid;
  grid-template-columns: minmax(0, 511px) minmax(0, 644px);
  justify-content: space-between;
  gap: 50px 60px;
  align-items: start;
}
.why__info { padding-top: 46px; }
.why__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 2.85vw, 40px);
  line-height: 1.2;
  color: #fff;
}
.why__rule { margin-top: 30px; height: 1px; background: rgba(255, 255, 255, .6); }
.why__text { margin-top: 30px; font-weight: 400; color: #fff; }
.why__cta { margin-top: 60px; }
.why__cards-row { position: relative; }
.why__nav {
  display: none;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e4e4e4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  padding: 0;
  cursor: pointer;
  line-height: 0;
  z-index: 4;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.why__nav--next {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(199, 30, 45, .28);
}
.why__nav:hover,
.why__nav:focus-visible {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(199, 30, 45, .28);
  outline: none;
}
.why__nav--next:hover,
.why__nav--next:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}
.why__nav img {
  display: block;
  width: 9px;
  height: 15px;
  object-fit: contain;
  transition: filter .2s ease;
}
.why__nav--next img {
  filter: brightness(0) invert(1);
}
.why__nav:hover img,
.why__nav:focus-visible img {
  filter: brightness(0) invert(1);
}
@media (hover: none) {
  .why__nav:active {
    background: var(--red);
    border-color: var(--red);
  }
  .why__nav:active img {
    filter: brightness(0) invert(1);
  }
}

.why__cards { display: flex; flex-direction: column; gap: 28px; }
.why-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  min-height: 115px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 100px 20px 36px;
}
.why-card__icon-wrap {
  width: 56px;
  height: 56px;
  border: 2px solid var(--red);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-card__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.why-card__title {
  display: block;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  color: var(--card-navy);
}
.why-card p { margin-top: 5px; font-size: 16px; color: var(--card-navy); }
.why-card__body { min-width: 0; flex: 1; }
.why-card__num {
  position: absolute;
  right: 13px;
  top: 0;
  height: 54px;
  width: auto;
}

/* ---------- cta banner ---------- */

.cta { padding-block: 100px 87px; }
.cabinets-cta,
.countertops-cta,
.flooring-cta {
  padding-block: 0;
}
@media (min-width: 1024px) {
  .services-cta,
  .kitchen-cta,
  .bathroom-cta,
  .outdoor-cta {
    padding-block: 100px 0;
  }
  .gallery-cta {
    padding-block: 0;
  }
}

/* Mirror desktop zero top/bottom padding for non-CTA sections on tablet and mobile */
@media (max-width: 1023px) {
  .blogs,
  .scroll-story,
  .home-faqs:not(.home-faqs--service) {
    padding-top: 0;
  }
  .scroll-story--service {
    padding-top: 0;
  }
  .blogs--archive {
    padding-bottom: 0;
  }
}
.cta__banner {
  position: relative;
  background: var(--red);
  border-radius: 20px;
  min-height: 301px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 53px clamp(24px, 5.5vw, 94px) 53px clamp(24px, 5.5vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.cta__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/cta-texture.webp") center / cover no-repeat;
  mix-blend-mode: soft-light;
  opacity: .25;
  z-index: -1;
}
.cta__info {
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(620px, 62%);
}
.cta__heading {
  /* Type comes from global h2 !important rules; color only here */
  color: #fff !important;
  max-width: 100%;
}
.cta__rule { display: none !important; }
.cta__text,
.cta__text p,
.cta__banner .cta__text,
.cta__banner .cta__text p {
  margin-top: 10px;
  max-width: 100%;
  font-family: Inter, sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 27px !important;
  letter-spacing: normal !important;
  color: #fff !important;
}
.cta__text { margin-top: 20px; }
.cta__text p { margin: 0; max-width: 100%; }
.cta__text p + p { margin-top: 12px; }
.svc-finance .cta__text + .cta__text { margin-top: 12px; }
.svc-finance__note { opacity: .9; }
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 26px;
  flex: 0 0 auto;
}

/* ---------- blogs ---------- */

.blogs { padding-block: 0 100px; }
.blogs.dk-related-posts { padding-block: 110px; }
.blogs__slider-row { margin-top: 43px; }
.blogs__nav {
  display: none;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e4e4e4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  padding: 0;
  cursor: pointer;
  line-height: 0;
  z-index: 4;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.blogs__nav--next {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(199, 30, 45, .28);
}
.blogs__nav:hover,
.blogs__nav:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
  outline: none;
}
.blogs__nav--next:hover,
.blogs__nav--next:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}
.blogs__nav img {
  display: block;
  width: 9px;
  height: 15px;
  object-fit: contain;
  transition: filter .2s ease;
}
.blogs__nav--next img {
  filter: brightness(0) invert(1);
}
.blogs__nav:hover img,
.blogs__nav:focus-visible img {
  filter: brightness(0) invert(1);
}

@media (hover: none) {
  .blogs__nav:active {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
  }
  .blogs__nav:active img {
    filter: brightness(0) invert(1);
  }
}
.blogs__grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--bg-blog);
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.blog-card:hover {
  border-color: var(--red);
}
.blog-card__link-wrap {
  display: block;
  color: inherit;
  padding: 21px 21px 40px 27px;
  height: 100%;
}
.blog-card__image {
  width: 100%;
  height: 236px;
  object-fit: cover;
  border-radius: 15px;
}
.blog-card__date {
  margin-top: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--red-alt);
}
.blog-card__title {
  display: block;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-alt);
  max-width: 299px;
}
.blog-card__link {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 123px;
  height: 41px;
  background: var(--red-alt);
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  transition: background-color .2s ease;
}
.blog-card__link:hover { background: #a53338; }

/* Blog archive: home-style cards, fixed 3-up grid (no slider) */
.blogs--archive {
  padding-block: 100px 0;
  background: #fff;
}
.blogs--archive .dk-section-intro {
  margin-bottom: 22px;
}
.blogs__grid--archive {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  overflow: visible;
  scroll-snap-type: none;
}
.blogs__grid--archive .blog-card {
  flex: none;
  width: auto;
  max-width: none;
  scroll-snap-align: unset;
}
.blogs__grid--archive .blog-card__title {
  max-width: none;
}

/* ---------- home faqs ---------- */

.home-faqs {
  padding: 0 0 80px;
}
.home-faqs--service {
  padding-block: 90px 80px;
  background: #fff;
}

/* Dedicated FAQs page */
.faqs-page {
  padding: 90px 0 100px;
  background: #f6f6f6;
}
.faqs-page__intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.faqs-page__lead {
  margin-top: 16px;
  color: var(--text-gray);
  font-size: 17px;
}
.faqs-page__layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
.faqs-page__aside {
  position: sticky;
  top: 140px;
}
.faqs-page__aside-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .06);
}
.faqs-page__aside-kicker {
  font-family: var(--font-heading);
  font-weight: var(--type-meta-weight);
  font-size: var(--type-meta-size);
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
  color: var(--red);
}
.faqs-page__aside-card h3 {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-weight: var(--type-h3-weight);
  font-size: var(--type-h3-size);
  line-height: 1.25;
  color: var(--text);
}
.faqs-page__aside-card > p {
  margin: 12px 0 22px;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: var(--text-gray);
}
.faqs-page__aside-card .btn {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  white-space: normal;
  text-align: center;
  box-sizing: border-box;
}
.faqs-page__aside-card .btn--primary::before {
  background-color: var(--brand-dark);
}
.faqs-page__aside-card .btn--primary:hover,
.faqs-page__aside-card .btn--primary:focus-visible {
  color: #fff;
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
}
.faqs-page__aside-card .btn--primary:hover .btn__arrow,
.faqs-page__aside-card .btn--primary:focus-visible .btn__arrow {
  filter: none;
}
.faqs-page__aside-link { margin-top: 12px; }
.faqs-page__list {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.faqs-page__item {
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
  min-width: 0;
}
.faqs-page__item[open] {
  border-color: rgba(199, 30, 45, .35);
  box-shadow: 0 16px 36px rgba(199, 30, 45, .08);
}
.faqs-page__item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.3;
  color: var(--text);
}
.faqs-page__item summary::-webkit-details-marker { display: none; }
.faqs-page__item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(199, 30, 45, .1);
  color: var(--red);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.faqs-page__item[open] summary::after {
  content: "–";
  background: var(--red);
  color: #fff;
  transform: none;
}
.faqs-page__num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--dark-section);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}
.faqs-page__item[open] .faqs-page__num {
  background: var(--red);
}
.faqs-page__question {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.faqs-page__answer {
  padding: 0 24px 24px 82px;
  color: var(--text-gray);
  font-size: 15px;
  min-width: 0;
  overflow-wrap: anywhere;
}
.faqs-page__answer p { margin: 0; }

.home-faqs__intro {
  margin: 18px auto 0;
  max-width: 760px;
  text-align: center;
}
.home-faqs__list {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}
.home-faqs__item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 0 22px;
}
.home-faqs__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  position: relative;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
}
.home-faqs__item summary::-webkit-details-marker { display: none; }
.home-faqs__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
  color: var(--red);
}
.home-faqs__item[open] summary::after { content: "–"; }
.home-faqs__answer {
  padding: 0 0 22px;
  color: var(--text-gray);
}

.home-contact {
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .home-contact {
    padding-bottom: 56px;
  }
}

/* ---------- footer ---------- */

.footer {
  position: relative;
  background-color: var(--red-footer);
  background-image: url("../assets/images/about-side.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 80px 80px 0 0;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red-footer);
  opacity: .95;
  z-index: 0;
  pointer-events: none;
}
.footer__inner {
  position: relative;
  z-index: 1;
  padding-top: 79px;
}
.footer__top {
  display: flex;
  gap: clamp(40px, 7.5vw, 110px);
  align-items: flex-start;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 180px;
}
.footer__logo img { width: 132px; height: 68px; object-fit: contain; }
.footer__follow h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer__social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.footer__social-link:hover,
.footer__social-link:focus-visible {
  transform: translateY(-3px) scale(1.05);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
  outline: none;
}
.footer__social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: filter .22s ease;
}
.footer__social-link:hover .footer__social-icon,
.footer__social-link:focus-visible .footer__social-icon {
  /* white SVG → black → brand red (#c71e2d) */
  filter: brightness(0) saturate(100%) invert(17%) sepia(89%) saturate(3578%) hue-rotate(341deg) brightness(88%) contrast(92%);
}
.footer__columns {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 40px 80px;
}
.footer__col { display: flex; flex-direction: column; gap: 20px; }
.footer__col h4,
.footer__accordion-summary {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.footer__col a {
  font-size: 15px;
  font-weight: 500;
  color: inherit;
  transition: color .2s ease, opacity .2s ease;
}
.footer__col a:hover,
.footer__col a:focus-visible {
  color: var(--red);
  opacity: 1;
  text-decoration: underline;
}
.footer__accordion {
  gap: 0;
}
.footer__accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  margin: 0;
  color: inherit;
}
.footer__accordion-summary::-webkit-details-marker { display: none; }
.footer__accordion-summary::marker { content: ""; }
.footer__accordion-chevron {
  display: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
  opacity: .85;
}
.footer__accordion[open] .footer__accordion-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.footer__accordion-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.footer__accordion-panel .footer__hours {
  gap: 4px;
}
.footer__col--home { width: 139px; }
.footer__col--quick { width: 120px; }
.footer__col--policies { display: none; }
.footer__col--hours { width: 180px; }
.footer__col--contact { width: 270px; gap: 25px; }

@media (min-width: 768px) {
  .footer__accordion {
    gap: 20px;
  }
  .footer__accordion-summary {
    pointer-events: none;
    cursor: default;
    margin-bottom: 5px;
  }
  .footer__accordion-chevron {
    display: none !important;
  }
  .footer__accordion-panel {
    margin-top: 0;
  }
  /* Keep Services / Quick Links expanded on desktop. */
  .footer__accordion:not([open]) > .footer__accordion-panel {
    display: flex !important;
  }
}
.footer__hours { display: flex; flex-direction: column; gap: 6px; font-size: 15px; }
.footer__hours-day { font-weight: 600; }
.footer__hours-time { font-weight: 400; white-space: nowrap; }
.footer__contact { display: flex; align-items: center; gap: 15px; font-size: 15px; color: inherit; text-decoration: none; }
.footer__contact img { width: 22px; height: auto; flex-shrink: 0; }
.footer__contact-value {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.45;
  transition: color .2s ease, opacity .2s ease;
}
.footer__contact-value:hover,
.footer__contact-value:focus-visible {
  color: var(--red);
  outline: none;
}
.footer__bottom {
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, .4);
  padding-block: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}
.footer__copyright {
  justify-self: start;
  font-size: 15px;
  text-transform: none;
}
.footer__copyright a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}
.footer__copyright a:hover,
.footer__copyright a:focus-visible {
  color: var(--red);
}
.footer__policies-bottom {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}
.footer__policies-bottom a {
  font-size: 15px;
  font-weight: 500;
  color: inherit;
  transition: color .2s ease;
}
.footer__policies-bottom a:hover,
.footer__policies-bottom a:focus-visible {
  color: var(--red);
}

/* ---------- sticky contact tabs (right edge) ---------- */

.sticky-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.sticky-contact__tab {
  display: flex;
  align-items: stretch;
  flex-direction: row-reverse;
  height: 40px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
}

.sticky-contact__tab:first-child { border-top-left-radius: 10px; }
.sticky-contact__tab:last-child { border-bottom-left-radius: 10px; }

.sticky-contact__icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color .25s ease;
  box-shadow: -2px 0 0 rgba(255, 255, 255, .95), 0 0 10px rgba(255, 255, 255, .55);
}

.sticky-contact__tab:first-child .sticky-contact__icon {
  box-shadow:
    -2px 0 0 rgba(255, 255, 255, .95),
    0 -2px 0 rgba(255, 255, 255, .95),
    0 0 10px rgba(255, 255, 255, .55);
}

.sticky-contact__tab:last-child .sticky-contact__icon {
  box-shadow:
    -2px 0 0 rgba(255, 255, 255, .95),
    0 2px 0 rgba(255, 255, 255, .95),
    0 0 10px rgba(255, 255, 255, .55);
}

.sticky-contact__icon img,
.sticky-contact__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.sticky-contact__icon-star {
  filter: brightness(0) invert(1);
  width: 20px !important;
}

.sticky-contact__label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  padding: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  box-shadow: -4px 0 14px rgba(0, 0, 0, .08);
  transition:
    max-width .38s cubic-bezier(.4, 0, .2, 1),
    opacity .28s ease,
    padding .38s cubic-bezier(.4, 0, .2, 1);
}

.sticky-contact__tab:hover .sticky-contact__icon,
.sticky-contact__tab:focus-visible .sticky-contact__icon {
  background: var(--red-deep);
}

.sticky-contact__tab:hover .sticky-contact__label,
.sticky-contact__tab:focus-visible .sticky-contact__label {
  max-width: 220px;
  opacity: 1;
  padding: 0 18px 0 14px;
}

.sticky-contact__tab:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

@media (hover: none) {
  .sticky-contact__tab:active .sticky-contact__icon {
    background: var(--red-deep);
  }

  .sticky-contact__tab:active .sticky-contact__label {
    max-width: 220px;
    opacity: 1;
    padding: 0 18px 0 14px;
  }
}

@media (max-width: 767px) {
  .sticky-contact__tab {
    height: 40px;
  }

  .sticky-contact__icon {
    width: 40px;
    height: 40px;
  }

  .sticky-contact__label {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-contact__label,
  .sticky-contact__icon {
    transition: none;
  }
}

/* ---------- subscribe popup ---------- */
.dk-subscribe {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1200;
  width: min(360px, calc(100vw - 28px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .35s ease, transform .35s ease;
}
.dk-subscribe.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.dk-subscribe__panel {
  position: relative;
  padding: 26px 24px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #ececec;
  border-left: 5px solid var(--red);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
}
.dk-subscribe__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f3f3f3;
  color: #333;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.dk-subscribe__close:hover,
.dk-subscribe__close:focus-visible {
  background: var(--red);
  color: #fff;
  outline: none;
}
.dk-subscribe__eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-weight: var(--type-meta-weight);
  font-size: var(--type-meta-size);
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
  color: var(--red);
}
.dk-subscribe__title {
  margin: 0;
  padding-right: 28px;
  font-family: var(--font-heading);
  font-weight: var(--type-h3-weight);
  font-size: var(--type-h3-size);
  line-height: 1.25;
  color: var(--text);
}
.dk-subscribe__desc {
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading) !important;
  color: var(--text-gray);
}
.dk-subscribe__form {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.dk-subscribe__input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  color: var(--text);
  background: #fafafa;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.dk-subscribe__input:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(199, 30, 45, .12);
}
.dk-subscribe__btn {
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.dk-subscribe__btn:hover,
.dk-subscribe__btn:focus-visible {
  background: var(--dark-section);
  outline: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
}
.dk-subscribe__btn.is-loading {
  opacity: .7;
  pointer-events: none;
}
.dk-subscribe__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.dk-subscribe__msg {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.dk-subscribe__msg.is-success { color: #1b7a3d; }
.dk-subscribe__msg.is-error { color: var(--red); }
.dk-subscribe__note {
  margin: 12px 0 0;
  color: #888;
  font-size: 12px;
}

@media (max-width: 767px) {
  .dk-subscribe {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
  .dk-subscribe__title { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .dk-subscribe { transition: none; }
}

/* ---------- scroll reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
}
.bath-tab{
  min-width: 110%;
}
.reveal--visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Draggable card / logo tracks
 * pan-y: vertical page scroll stays free; JS owns horizontal after axis lock.
 */
.is-draggable-track {
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
}
.is-draggable-track.is-dragging,
.is-draggable-track.is-dragging-x {
  cursor: grabbing;
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
}
.is-draggable-track.is-dragging-x {
  touch-action: none;
}

/* Always-on horizontal scroll tracks — keep vertical page scroll available */
.awards__logos,
.awards__partners,
.contact-partners__track,
.past-work__slider,
.svc-brand-strip__track {
  touch-action: pan-y;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
}
.process__slider,
.why__cards,
#blogs-track,
#reviews-track,
#related-posts-track {
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
}
.awards__logos img,
.awards__partners img,
.contact-partners__track img,
.past-work__slider img,
.svc-brand-strip__track img,
.process__slider img,
.why__cards img,
#blogs-track img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.past-work__slider button.pw,
.why__cards a,
.blogs__grid a,
.process__slider a,
.awards__logos a,
.awards__partners a,
.contact-partners__track a {
  pointer-events: auto;
  touch-action: pan-y;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* ---------- laptop: 1024–1439 ---------- */
@media (max-width: 1439px) {
  .hero__overlay { width: 58%; min-width: 480px; }
  .services__content,
  .stories__inner,
  .why__inner { gap: 40px; }
  .bath-tab{
  min-width: 50%;
}
}

/* ---------- wide desktop: keep white mask at ~50% ---------- */
@media (min-width: 1440px) {
  .hero__overlay {
    width: 50%;
    min-width: 0;
  }
}

@media (min-width: 1600px) {
  .hero {
    min-height: clamp(650px, 42vw, 780px);
  }
  .hero__overlay {
    width: 50%;
  }
}

@media (max-width: 1279px) {
  .why-card { padding: 20px 84px 20px 62px; }
  .why-card__title { font-size: 22px; }
  .why-card__num { height: 46px; right: 10px; }
}

/* ---------- burger nav below 1140 ---------- */
@media (max-width: 1139px) {
  .header__inner { height: 90px; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 100px 32px 32px;
    box-shadow: -12px 0 32px rgba(0, 0, 0, .12);
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 60;
  }
  .nav.nav--open { transform: translateX(0); }
  .nav__item { width: 100%; flex-wrap: wrap; }
  .nav__link { font-size: 18px; }
  .nav__dropdown-toggle { margin-left: auto; }
  .nav__dropdown {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    padding: 5px 0 0 14px;
    border: 0;
    border-left: 2px solid rgba(199, 30, 45, .18);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav__item--open > .nav__dropdown { display: grid; }
  .nav__item--nested > .nav__dropdown {
    top: auto;
    left: auto;
    transform: none;
  }
  .nav__dropdown::before { display: none; }
  .nav__dropdown-link { padding: 9px 12px; white-space: normal; }
  .nav__cta { display: inline-flex; margin-top: 8px; }
  .header__cta { display: none; }
  .header__burger { display: flex; z-index: 70; }

  /* Tablet/laptop footer — avoid cramped fixed-width columns under burger nav */
  .footer { border-radius: 50px 50px 0 0; }
  .footer__inner { padding-top: 56px; }
  .footer__top { flex-direction: column; gap: 36px; }
  .footer__brand { width: 100%; }
  .footer__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 28px 40px;
    width: 100%;
  }
  .footer__col--home,
  .footer__col--quick,
  .footer__col--hours,
  .footer__col--contact {
    width: auto !important;
    max-width: none;
    min-width: 0;
  }
  .footer__col--contact {
    grid-column: 1 / -1;
    gap: 18px;
  }
  .footer__hours-time { white-space: normal; }
  .footer__contact { align-items: flex-start; }
  .footer__contact-value,
  .footer__contact span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .footer__bottom { grid-template-columns: 1fr; justify-items: center; }
  .footer__copyright {
    justify-self: center;
    text-align: center;
    padding-bottom: 10px;
  }
  .footer__policies-bottom {
    justify-self: center;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .trust__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px 40px;
    padding-inline: 20px;
  }
  .trust__item {
    flex: 1 1 220px;
    max-width: 300px;
    gap: 14px;
  }
  .trust__item p {
    font-size: 17px;
    max-width: none;
  }
  .trust__divider { display: none; }
}

/* ---------- tablet: 768–1023 ---------- */
@media (max-width: 1023px) {
  .hero { min-height: 560px; }
  .hero__bg,
  .hero__bg-video { object-position: 55% center; }
  .hero__overlay { width: 100%; background: rgba(255, 255, 255, .88); transform: none; }
  .hero__badge { width: 130px; }
  .hero__badge img { width: 130px; height: 91px; }
  .hero__badge::before { width: 80px; height: 80px; }
  .hero__side-deco { display: none; }

  .trust__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px 36px;
    padding-inline: 16px;
  }
  .trust__item {
    gap: 14px;
    flex: 1 1 220px;
    max-width: 280px;
    justify-content: flex-start;
  }
  .trust__item p {
    font-size: 16px;
    max-width: none;
  }
  .trust__divider { display: none; }

  .about { padding-block: 70px 60px; }
  .about__top { grid-template-columns: 1fr; }
  .about__photo-main img { height: 400px; }
  .about__bottom { margin-top: 50px; grid-template-columns: 240px 1fr; gap: 36px; }
  .about__photo-side img { height: 305px; }
  .about__features { gap: 24px 28px; }
  .about-values { padding-block: 70px; }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-craft { padding-block: 70px; }
  .about-craft__inner { grid-template-columns: 1fr; gap: 28px; }
  .about-serve { padding-block: 64px; }
  .about-serve__inner { grid-template-columns: 1fr; gap: 28px; }

  .services__tabs { min-height: 130px; }
  .service-tab { padding-left: 24px; font-size: 18px; }
  .service-tab__icon { height: 38px; }
  .services__content { grid-template-columns: 1fr; margin-top: 44px; }
  .services__media { max-width: 600px; }
  .services__annotation { left: auto; right: -10px; bottom: -40px; transform: scale(.85); transform-origin: bottom right; }

  .process__grid { flex-wrap: wrap; }
  .process__arrow { display: none; }
  .process__grid--bottom { margin-top: 40px; }
  .process-step { width: min(340px, 46%); }

  .stories { padding-block: 70px; }
  .stories__inner { grid-template-columns: 1fr; }
  .stories__video { min-height: 420px; }

  .reviews { padding-block: 70px 80px; }

  .scroll-story { padding-block: 0; }
  .scroll-story--service { padding-block: 0 70px; }
  .scroll-story__grid { gap: 8px; }
  .scroll-story__scroll { max-height: 460px; }
  .scroll-story__media,
  .scroll-story__media img { min-height: 460px; }

  .awards__logo { width: 160px; min-width: 160px; height: 107px; }
  .awards__partners-slider { padding: 0 40px; }
  .awards__partners { gap: 28px; }
  .awards__partner { width: 150px; min-width: 150px; height: 100px; }

  .past-work { padding-block: 70px; }
  .past-work__tab { width: 140px; height: 50px; font-size: 18px; }
  .past-work__grid { gap: 14px; }
  .pw { height: 220px; }
  .pw--r1c1, .pw--r1c2, .pw--r1c3 { grid-column: span 4; }
  .pw--r2c1 { grid-column: span 6; }
  .pw--r2c2, .pw--r2c3 { grid-column: span 3; }
  .pw--r3c1, .pw--r3c3 { grid-column: span 3; }
  .pw--r3c2 { grid-column: span 6; }

  .why { padding-block: 70px; }
  .why__inner { grid-template-columns: 1fr; min-width: 0; }
  .why__info { padding-top: 0; min-width: 0; }
  .why__cta { margin-top: 40px; }
  .why__cards-row {
    position: relative;
    display: block;
    margin-top: 36px;
    min-width: 0;
    padding-inline: 0;
    overflow: visible;
  }
  .why__nav {
    display: grid;
    position: absolute;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
  }
  .why__nav--prev { left: 8px; }
  .why__nav--next { right: 8px; }
  .why__nav:hover,
  .why__nav:focus-visible {
    transform: translateY(-50%);
  }
  .why__cards {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    cursor: grab;
  }
  .why__cards::-webkit-scrollbar { display: none; }
  .why-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 22px 24px;
  }

  .cta { padding-block: 70px 60px; }
  .cta__banner { flex-direction: column; align-items: flex-start; padding: 40px 32px; }
  .cta__info { max-width: 100%; }
  .cta__actions { flex-direction: row; flex-wrap: wrap; }

  .blogs { padding-block: 0 70px; }
  .blogs--archive { padding-block: 70px 0; }
  .home-faqs { padding-bottom: 56px; }
  .home-faqs--service { padding-block: 64px 56px; }
  .home-faqs__item summary { font-size: 20px; }
  .blogs__slider-row {
    position: relative;
    display: block;
    margin-top: 28px;
    padding-inline: 0;
    overflow: visible;
  }
  .blogs__nav {
    display: grid;
    position: absolute;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
  }
  .blogs__nav--prev { left: 8px; }
  .blogs__nav--next { right: 8px; }
  .blogs__nav:hover,
  .blogs__nav:focus-visible {
    transform: translateY(-50%);
  }
  .blogs__grid {
    width: 100%;
    min-width: 0;
    margin-top: 0;
    display: flex;
    flex-flow: row nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    cursor: grab;
  }
  .blogs__grid--archive {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    touch-action: auto;
    cursor: auto;
  }
  .blogs__grid--archive .blog-card {
    flex: none;
    width: auto;
    min-width: 0;
  }
  .blogs__grid::-webkit-scrollbar { display: none; }
  .blog-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .blogs__grid .blog-card__link-wrap {
    -webkit-user-drag: none;
    user-select: none;
    touch-action: pan-y;
  }
  .blog-card__link-wrap { padding: 18px 18px 28px; }
  .blog-card__image { height: 210px; }

  .footer { border-radius: 50px 50px 0 0; }
  .footer__inner { padding-top: 56px; }
  .footer__top { flex-direction: column; gap: 36px; }
  .footer__brand { width: 100%; }
  .footer__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 28px 40px;
    width: 100%;
  }
  .footer__col--home,
  .footer__col--quick,
  .footer__col--hours,
  .footer__col--contact {
    width: auto !important;
    max-width: none;
    min-width: 0;
  }
  .footer__col--contact {
    grid-column: 1 / -1;
    gap: 18px;
  }
  .footer__hours-time { white-space: normal; }
  .footer__contact {
    align-items: flex-start;
  }
  .footer__contact-value,
  .footer__contact span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .footer__bottom { grid-template-columns: 1fr; justify-items: center; }
  .footer__copyright {
    justify-self: center;
    text-align: center;
    padding-bottom: 10px;
  }
  .footer__policies-bottom {
    justify-self: center;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

/* ---------- mobile: 320–767 ---------- */
@media (max-width: 767px) {
  .topbar__inner {
    justify-content: center;
    align-items: center;
    min-height: 48px;
    height: 48px;
    max-height: 48px;
    padding-block: 0;
    gap: 12px;
    overflow: hidden;
  }
  .topbar__address { display: none; }
  .topbar__contacts {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px 14px;
    width: auto;
  }
  .topbar__item {
    font-size: 12px;
    justify-content: center;
    white-space: nowrap;
  }

  .header__inner { height: 76px; }
  .header__logo img { width: 100px; height: 52px; }

  /* Left-align section headings and intros on mobile */
  .eyebrow--center {
    justify-content: flex-start;
    text-align: left;
  }
  .section-heading--center,
  .section-heading,
  .reviews__heading,
  .awards__heading,
  .awards__heading--partners,
  .cta__heading,
  .why__heading {
    text-align: left;
  }
  .dk-section-intro,
  .svc-hub__head,
  .svc-hub__lead,
  .svc-why__head,
  .svc-reviews__head,
  .svc-related__head,
  .home-faqs__intro,
  .faqs-page__intro {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
  }
  .dk-section-intro > p:last-child,
  .svc-hub__lead,
  .svc-reviews__lead,
  .svc-related__lead {
    margin-left: 0;
    margin-right: auto;
  }
  .svc-why__lead {
    margin-top: 18px;
    text-align: left;
    font-size: 16px;
    color: var(--text-gray);
  }
  .page-hero--compact .page-hero__title,
  .page-hero__title {
    text-align: left;
  }

  .hero {
    min-height: min(72vh, 560px);
    align-items: center;
  }
  .hero__content { padding-top: 48px; padding-bottom: 48px; }
  .hero__heading { gap: 2px; }
  .hero__kicker { font-size: clamp(18px, 6vw, 24px); }
  .hero__title { font-size: clamp(44px, 16.5vw, 64px); }
  .hero__subtitle { font-size: clamp(19px, 7vw, 28px); letter-spacing: 1.4px; }
  .hero__location { font-size: clamp(16px, 6vw, 22px); letter-spacing: 1px; }
  .hero__tagline { font-size: 15px; max-width: 320px; }
  .hero__cta { margin-top: 32px; }
  .hero__offers { margin-top: 24px; max-width: 100%; }
  .offer-card {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
    gap: 14px;
    text-align: left;
  }
  /* Icon and label share one line; everything else is left-aligned. */
  .offer-card__left { flex: none; flex-direction: row; align-items: center; gap: 14px; }
  .offer-card__label { text-align: left; white-space: normal; }
  .offer-card__divider { width: 100%; height: 1px; margin: 0; background: rgba(255, 255, 255, .85); }
  .offer-card__right { flex: none; text-align: left; }
  .offer-ribbon { margin-top: -14px; margin-left: 0; }
  .offer-ribbon__content { align-items: flex-start; padding-left: 24px; }
  .offer-ribbon__label { text-align: left; }
  .hero__badge { display: none; }

  .trust { display: none; }

  .about { padding-block: 56px 48px; }
  .about__photo-main img { height: 260px; }
  .about__bottom { margin-top: 36px; grid-template-columns: 1fr; }
  .about__photo-side { display: none; }
  .about__experience-num { width: 178px; height: 73px; }
  .about__experience-label { font-size: 21px; margin-top: 18px; }
  .about__features { grid-template-columns: 1fr; gap: 26px; }
  .about-values { padding-block: 56px; }
  .about-craft { padding-block: 56px; }
  .about-craft__media img { height: 240px; }
  .about-serve { padding-block: 52px; }
  .about-serve__list { grid-template-columns: 1fr; }

  .services { padding-block: 40px 60px; }
  /* Tabs styled as separate buttons with gaps, not full-bleed rows. */
  .services__tabs { grid-template-columns: 1fr; min-height: 0; gap: 12px; padding: 14px; }
  .service-tab { flex-direction: row; align-items: center; gap: 14px; padding: 14px 18px; width: 100%; border-radius: 12px; border: 1px solid rgba(199, 30, 45, .25); }
  .service-tab--active { border-color: var(--red); }
  .service-tab__icon { height: 30px; }
  .service-tab span { max-width: none; }
  .services__rule { margin-top: 22px; }
  .services__text { margin-top: 22px; }
  .services__cta { margin-top: 30px; }
  .services__photo { height: 250px; }
  .services__media { margin-bottom: 0; }
  .services__annotation { display: none; }

  .process { padding-block: 48px 60px; }
  .process .eyebrow--center { justify-content: flex-start; text-align: left; }
  .process .section-heading--center { text-align: left; }
  /* Mobile: stack steps full-width — no horizontal scroller; full description visible. */
  .process__slider-row {
    position: relative;
    display: block;
    margin-top: 36px;
    padding-inline: 0;
    overflow: visible;
  }
  .process__nav {
    display: none !important;
  }
  .process__slider {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 16px;
    overflow: visible;
    scroll-snap-type: none;
    touch-action: auto;
    cursor: auto;
    user-select: auto;
  }
  .process__grid {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 16px;
    margin-top: 0 !important;
    width: 100%;
    max-width: 100%;
  }
  .process-step {
    flex: 0 0 auto;
    width: 100% !important;
    min-width: 0;
    max-width: 100% !important;
    box-sizing: border-box;
    height: auto;
    overflow: visible;
    align-items: flex-start;
    text-align: left;
    scroll-snap-align: none;
    border: 1px solid rgb(207, 207, 207);
    border-radius: 15px;
    padding: 24px 20px;
  }
  .process-step__title,
  .process-step__text,
  .process-step__text p {
    text-align: left;
    width: 100%;
    max-width: none;
  }
  .process-step__text {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
  }
  .process-step__text p {
    overflow: visible;
    white-space: normal;
    text-wrap: pretty;
  }
  .process-step__text br,
  .process-step p br { display: none; }
  .process__arrow { display: none; }

  .stories { padding-block: 56px; }
  .stories__list li { font-size: 16px; align-items: flex-start; }
  .stories__list img { margin-top: 3px; }
  .stories__inner .btn { margin-top: 36px; }
  .stories__video { min-height: 300px; }
  .stories__play { width: 80px; height: 80px; }

  .reviews { padding-block: 56px 64px; }
  .reviews__widget {
    margin-top: 23px;
    width: 100%;
  }
  .reviews__row { margin-top: 36px; gap: 10px; }
  .reviews__track { gap: 16px; }
  .review-card { flex: 0 0 100%; }

  .scroll-story { padding-block: 0; }
  .scroll-story--service { padding-block: 0 56px; }
  .scroll-story__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .scroll-story__scroll {
    max-height: 420px;
    padding-right: 12px;
  }
  .scroll-story__heading { margin-bottom: 16px; }
  .scroll-story__media {
    min-height: 280px;
    border-radius: 14px;
    order: -1;
  }
  .scroll-story__media img { min-height: 280px; }

  .awards {
    padding-block: 32px 40px;
    margin-bottom: 50px;
  }
  .awards__card {
    padding: 32px 18px 40px;
    overflow: hidden;
    border-radius: 20px;
  }
  .awards__heading,
  .awards__heading--partners,
  h2.awards__heading,
  h2.awards__heading--partners {
    font-size: clamp(22px, 5.6vw, 28px) !important;
    line-height: 1.25 !important;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .awards__heading-wrap,
  .awards__heading-mark {
    display: inline;
  }
  .awards__slider { padding: 0 36px; margin-top: 22px; }
  .awards__logos { gap: 0; justify-content: flex-start; }
  .awards__logo {
    flex: 0 0 50%;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    height: 110px;
  }
  .awards__scribble { width: 150px; }
  .awards__heading--partners { margin-top: 36px; }
  .awards__partners-slider { margin-top: 28px; padding: 0 36px; }
  .awards__partners { margin-top: 0; gap: 12px; justify-content: flex-start; }
  .awards__partner {
    flex: 0 0 calc(50% - 6px);
    width: calc(50% - 6px);
    min-width: calc(50% - 6px);
    max-width: calc(50% - 6px);
    height: 88px;
    padding: 10px;
  }
  .awards__arrow {
    width: 34px;
    height: 34px;
  }
  .awards__arrow--prev { left: 0; }
  .awards__arrow--next { right: 0; }
  .awards__dots { margin-top: 24px; }

  .past-work { padding-block: 56px; }
  .home-past-work { margin-top: 50px; }
  .past-work__filter { padding: 12px; gap: 10px; flex-wrap: wrap; }
  .past-work__tab { width: calc(50% - 5px); height: 48px; font-size: 17px; }
  .gallery-intro { padding-block: 48px 8px; }
  .dk-gallery-page { padding-block: 48px 64px; }
  .dk-gallery-page .gallery-project-tabs {
    gap: 8px;
    flex-wrap: wrap;
    overflow: visible;
    justify-content: stretch;
  }
  .dk-gallery-page .gallery-project-tabs .past-work__tab {
    flex: 1 1 calc(50% - 4px);
    width: calc(50% - 4px);
    min-width: 0;
    height: 44px;
    min-height: 44px;
    padding: 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    font-size: 13px;
  }
  .gallery-locations__tab { min-width: 0; width: 100%; height: 48px; font-size: 16px; }
  .gallery-location-panel { margin-top: 16px; }
  .past-work__slider { margin-top: 32px; gap: 16px; }
  .past-work__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
    gap: 10px;
  }
  .pw, .pw--r1c1, .pw--r1c2, .pw--r1c3, .pw--r2c1, .pw--r2c2, .pw--r2c3,
  .pw--r3c1, .pw--r3c2, .pw--r3c3 { grid-column: span 1; height: 150px; border-radius: 12px; }
  .pw--r1c1, .pw--r2c2, .pw--r3c2 { grid-column: span 2; height: 190px; }
  .past-work__more,
  .past-work__more:not([hidden]),
  .past-work__load-more,
  .past-work__load-more:not([hidden]) {
    margin-left: 0;
    margin-right: auto; /* left-aligned on mobile */
  }
  .past-work__footer {
    margin-top: 24px;
    text-align: center;
  }
  .past-work__explore {
    width: auto;
    max-width: 100%;
  }

  .why { padding-block: 56px; }
  .why__heading { font-size: clamp(24px, 7vw, 32px); }
  .why__text { font-size: 15px; }
  .why__cta { width: auto; max-width: 100%; }
  .why__cta.btn { justify-content: center; }
  .why__cards-row {
    margin-top: 32px;
    padding-inline: 0;
    overflow: visible;
  }
  .why__nav--prev { left: 8px; }
  .why__nav--next { right: 8px; }
  .why-card {
    padding: 22px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .why-card__title { font-size: 21px; }
  .why-card p { font-size: 15px; }
  .why-card__num { position: static; transform: none; height: 40px; margin-top: 16px; align-self: flex-end; }

  .cta,
  .services-cta,
  .kitchen-cta,
  .bathroom-cta,
  .outdoor-cta {
    padding-top: 56px;
    padding-bottom: 48px;
  }
  .gallery-cta,
  .cabinets-cta,
  .countertops-cta,
  .flooring-cta {
    padding-top: 0;
    padding-bottom: 0;
  }
  .blogs,
  .scroll-story,
  .home-faqs:not(.home-faqs--service) {
    padding-top: 0;
  }
  .scroll-story--service {
    padding-top: 0;
  }
  .blogs--archive {
    padding-bottom: 0;
  }
  .cta__banner { padding: 32px 22px; }
  .cta__info { max-width: 100%; }
  .cta__actions {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
  }
  .cta__actions .btn { width: auto; max-width: 100%; }
  .cta__actions .btn:nth-child(n + 2) { display: none; }

  .blogs { padding-block: 0 56px; }
  .blogs--archive { padding-block: 56px 0; }
  .blogs__slider-row {
    margin-top: 24px;
    padding-inline: 0;
    overflow: visible;
  }
  .blogs__nav--prev { left: 8px; }
  .blogs__nav--next { right: 8px; }
  .blogs__grid {
    display: flex;
    flex-flow: row nowrap;
    grid-template-columns: none;
  }
  .blogs__grid--archive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .blog-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
  }
  .blogs__grid--archive .blog-card {
    flex: none;
    width: auto;
    min-width: 0;
  }
  .blog-card__image { height: 210px; }
  .blog-card__title { max-width: none; }

  .footer { border-radius: 32px 32px 0 0; }
  .footer__inner { padding-top: 44px; }
  .footer__brand,
  .footer__follow,
  .footer__social-links {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .footer__social-links {
    justify-self: start;
  }
  /* Accordion stack on phones — override tablet 2-col grid */
  .footer__columns {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
  }
  .footer__col {
    width: 100% !important;
  }
  .footer__col--home,
  .footer__col--quick,
  .footer__col--hours,
  .footer__col--contact {
    width: 100% !important;
    grid-column: auto;
  }
  .footer__col--home,
  .footer__col--quick,
  .footer__col--hours {
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    padding: 14px 0;
  }
  .footer__accordion-summary {
    width: 100%;
    padding: 2px 0;
    font-size: 17px;
  }
  .footer__accordion-chevron {
    display: inline-block;
  }
  .footer__accordion-panel {
    gap: 14px;
    margin-top: 14px;
    padding-bottom: 6px;
  }
  .footer__col--contact {
    width: 100% !important;
    padding-top: 20px;
  }
  .footer__contact span { overflow-wrap: anywhere; }
  .footer__contact img { width: 18px; }
  .footer__bottom {
    margin-top: 40px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }
  .footer__copyright {
    justify-self: center;
    text-align: center;
    padding-bottom: 10px;
  }
}

/* very narrow phones */
@media (max-width: 360px) {
  .hero__title { font-size: 40px; }
  .offer-ribbon__label { font-size: 13.5px; }
  .past-work__tab { width: 100%; }
  .dk-gallery-page .gallery-project-tabs .past-work__tab {
    flex: 1 1 calc(50% - 4px);
    width: calc(50% - 4px);
    font-size: 12px;
    padding: 0 6px;
  }
}

/* ==========================================================================
   Kitchen Remodeling — service page
   ========================================================================== */

.nav__link--active { color: var(--red); }

.page-hero {
  position: relative;
  min-height: clamp(580px, 88vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.04);
  animation: page-hero-ken 18s ease-out forwards;
}
@keyframes page-hero-ken {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}
.page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(18, 18, 18, .94) 0%,
      rgba(18, 18, 18, .82) 34%,
      rgba(18, 18, 18, .42) 62%,
      rgba(18, 18, 18, .28) 100%),
    linear-gradient(to top, rgba(18, 18, 18, .55) 0%, transparent 38%);
}

/* Compact pages (Contact, About, Blog, policies): brand red instead of dark. */
.page-hero--compact .page-hero__veil {
  background:
    linear-gradient(105deg,
      rgba(199, 30, 45, .96) 0%,
      rgba(199, 30, 45, .92) 45%,
      rgba(204, 35, 50, .88) 100%),
    linear-gradient(to top, rgba(189, 12, 12, .35) 0%, transparent 42%);
}

/* Legal / policy pages: compact hero with solid brand black (no photo). */
.page-hero--solid .page-hero__bg {
  background: var(--dark-section);
}
.page-hero--solid .page-hero__bg img {
  display: none;
}
.page-hero--solid .page-hero__veil {
  display: none;
}

/* Blog + About + Contact + FAQs + Videomonials + Project single keep the original dark hero veil. */
.page-blog-index .page-hero--compact .page-hero__veil,
.page-about-us .page-hero--compact .page-hero__veil,
.page-contact-index .page-hero--compact .page-hero__veil,
.page-faqs-index .page-hero--compact .page-hero__veil,
.page-videomonials-index .page-hero--compact .page-hero__veil,
.page-project-single .page-hero--compact .page-hero__veil {
  background:
    linear-gradient(105deg,
      rgba(18, 18, 18, .94) 0%,
      rgba(18, 18, 18, .82) 34%,
      rgba(18, 18, 18, .42) 62%,
      rgba(18, 18, 18, .28) 100%),
    linear-gradient(to top, rgba(18, 18, 18, .55) 0%, transparent 38%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  padding-top: 64px;
  padding-bottom: 64px;
}

.page-hero__main {
  max-width: 840px;
  animation: page-hero-rise .7s ease both;
}
@keyframes page-hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.page-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 26px;
}
.page-hero__crumb a:hover { color: #fff; }
.page-hero__crumb-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
}
.page-hero__crumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: var(--type-meta-weight);
  font-size: var(--type-meta-size);
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .page-hero__eyebrow {
    margin-left: 20px;
  }
}
.page-hero__eyebrow-tick {
  width: 7px;
  height: 12px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -.02em;
}
.service-page-main .page-hero__title,
.page-hero__title--service,
.page-hero__title--bathroom {
  max-width: 840px;
  text-transform: capitalize;
}
.page-hero__title span {
  color: var(--red);
  position: relative;
  display: inline-block;
}

.page-hero__lead {
  margin-top: 20px;
  max-width: 460px;
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255, 255, 255, .84);
}
.page-hero__lead p {
  margin: 0 0 0.6em;
}
.page-hero__lead p:last-child {
  margin-bottom: 0;
}

/* Short, simple banner for informational pages. */
.page-hero--compact,
.page-content-landing .page-hero--compact {
  min-height: clamp(280px, 38vh, 360px);
}
.page-hero--compact .page-hero__inner {
  padding-top: 42px;
  padding-bottom: 42px;
}
.page-hero--compact .page-hero__main {
  max-width: 760px;
}
.page-hero--compact .page-hero__crumb {
  margin-bottom: 18px;
}
.page-hero--compact .page-hero__title {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  text-transform: none;
}
.page-hero--compact .page-hero__bg img {
  object-position: center;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 34px;
}

.page-hero__call {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.page-hero__call:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .28);
  transform: translateY(-1px);
}
.page-hero__call-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.page-hero__call-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.page-hero__call-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.page-hero__call-text strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.page-hero__call-text small {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
}

.page-hero__hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
}
.page-hero__hours strong { font-weight: 700; color: #fff; }
.page-hero__hours-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5a5a;
  box-shadow: 0 0 0 4px rgba(255, 90, 90, .22);
  animation: page-hero-pulse 1.8s ease-in-out infinite;
}
@keyframes page-hero-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 90, 90, .22); }
  50% { box-shadow: 0 0 0 7px rgba(255, 90, 90, .08); }
}

/* ----- intro ----- */
.svc-intro { padding-block: 90px 70px; }
.svc-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.svc-intro__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.svc-intro__media > img {
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
}
.svc-intro__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
  text-align: center;
  min-width: 110px;
}
.svc-intro__badge img {
  height: 42px;
  width: auto;
  margin-inline: auto;
}
.svc-intro__badge p {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.svc-intro__heading {
  font-family: var(--font-heading);
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: 1.15;
  color: var(--text);
  margin-top: 14px;
}
.svc-intro__text {
  margin-top: 18px;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: var(--text-gray);
}
.svc-intro__copy .btn { margin-top: 28px; }

/* ----- why choose ----- */
.svc-why {
  padding-block: 80px 90px;
  background: white;
}
.svc-why__head { max-width: 760px; margin-inline: auto; }
.svc-why .section-heading--center { margin-top: 14px; }
.svc-why__lead {
  margin-top: 18px;
  text-align: center;
  font-size: 16px;
  color: var(--text-gray);
}
@media (max-width: 800px) {
  .svc-why__lead,
  .svc-why__lead p {
    text-align: left;
  }
}
.svc-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.svc-feature {
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px 30px;
  border: 1px solid rgba(0, 0, 0, .04);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}
.svc-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(199, 30, 45, .08);
  margin-bottom: 18px;
}
.svc-feature__icon img { width: 28px; height: 28px; object-fit: contain; }
.svc-feature__title {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--type-h3-weight);
  font-size: var(--type-h3-size);
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--text);
}
.svc-feature h3 {
  font-family: var(--font-heading);
  font-weight: var(--type-h3-weight);
  font-size: var(--type-h3-size);
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--text);
}
.svc-feature p {
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: var(--text-gray);
}
.svc-why__close,
.svc-diff__close {
  display: none !important;
}

/* ----- difference ----- */
.svc-diff { padding-block: 90px; }
.svc-diff__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 48px;
  align-items: stretch;
}
.svc-diff__copy {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.svc-diff__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.18;
  color: #fff;
  margin-top: 14px;
}
.svc-diff__text {
  margin-top: 18px;
  font-size: 16px;
  color: rgba(255, 255, 255, .78);
}
.svc-diff__media {
  border-radius: 8px;
  overflow: hidden;
  min-height: 280px;
  height: 100%;
  align-self: stretch;
}
.svc-diff__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.svc-diff__list {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}
.svc-diff__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
}
.svc-diff__list img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.svc-diff__perk {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}
.svc-diff__perk-icon { width: 48px; height: 48px; flex-shrink: 0; }
.svc-diff__perk-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
}
.svc-diff__perk-text {
  margin-top: 4px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(18px, 1.6vw, 22px);
  color: #fff;
}
.svc-diff__close {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
}
.svc-diff__cta {
  margin-top: 28px;
  align-self: flex-start;
}

/* ----- ready ----- */
.svc-ready { padding-block: 90px; }
.svc-ready__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.svc-ready__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.18;
  margin-top: 14px;
}
.svc-ready__text {
  margin-top: 18px;
  font-size: 16px;
  color: var(--text-gray);
}
.svc-ready__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.svc-ready__media {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: end;
}
.svc-ready__media > img:first-child {
  width: 100%;
  height: clamp(280px, 36vw, 440px);
  object-fit: cover;
  border-radius: 8px;
}
.svc-ready__media-side {
  width: 100%;
  height: clamp(200px, 26vw, 320px);
  object-fit: cover;
  border-radius: 8px;
}

.page-hero__hours-dot--open {
  background: #3ecf8e;
  box-shadow: 0 0 0 4px rgba(62, 207, 142, .22);
  animation: page-hero-pulse-open 1.8s ease-in-out infinite;
}
@keyframes page-hero-pulse-open {
  0%, 100% { box-shadow: 0 0 0 4px rgba(62, 207, 142, .22); }
  50% { box-shadow: 0 0 0 7px rgba(62, 207, 142, .08); }
}

.page-hero--bath .page-hero__bg img {
  object-position: center 45%;
}

.svc-why__grid--five {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.svc-why__grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.svc-why__grid--five .svc-feature:nth-child(4),
.svc-why__grid--five .svc-feature:nth-child(5) {
  /* keep even spacing on the last row */
}

/* ----- service reviews ----- */
.svc-reviews { padding-block: 90px; background: #fff; }
.svc-reviews__head { margin-bottom: 40px; }
.svc-reviews__head .section-heading--center { margin-top: 14px; }
.svc-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.svc-review {
  background: var(--bg-review);
  border-radius: 12px;
  padding: 28px 26px;
  border: 1px solid rgba(0, 0, 0, .04);
}
.svc-review__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.svc-review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.svc-review__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.svc-review__date {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 2px;
}
.svc-review__google {
  margin-left: auto;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.svc-review__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.svc-review__stars img { width: 16px; height: 16px; }
.svc-review__text {
  font-size: 15px;
  color: var(--text-gray);
}
.svc-reviews__more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.svc-reviews__widget { margin-top: 32px; }

/* ----- perk banner ----- */
.svc-perk-banner {
  position: relative;
  padding-block: 72px;
  overflow: hidden;
  isolation: isolate;
  background: #1a1a1a;
}
.svc-perk-banner.section-dark::before {
  display: none;
}
.svc-perk-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.svc-perk-banner__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.42) saturate(.9) contrast(1.05);
  transform: scale(1.03);
}
.svc-perk-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, .92) 0%, rgba(18, 18, 18, .78) 42%, rgba(18, 18, 18, .55) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, .35) 0%, rgba(18, 18, 18, .2) 50%, rgba(18, 18, 18, .45) 100%);
}
.svc-perk-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 64px);
}
.svc-perk-banner__copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(920px, 72%);
}
.svc-perk-banner__copy h2 {
  font-family: var(--font-heading);
  font-weight: var(--type-h2-weight);
  font-size: var(--type-h2-size);
  line-height: 1.15;
  color: #fff;
  max-width: 100%;
}
.svc-perk-banner__copy p {
  margin-top: 14px;
  max-width: 100%;
  font-family: var(--font-body);
  font-weight: var(--type-body-weight);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  color: rgba(255, 255, 255, .78);
  text-align: left;
}
.svc-perk-banner__copy .btn { margin-top: 28px; }
.svc-perk-banner__badge {
  display: none !important;
}

/* ----- service brand scroller ----- */
.svc-brand-strip { padding-block: 64px; }
.svc-brand-strip__heading {
  margin-top: 14px;
  color: #fff;
}
.svc-brand-strip__lead {
  max-width: 780px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, .78);
}
.svc-brand-strip__track {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.svc-brand-strip__track::-webkit-scrollbar { display: none; }
.svc-brand-strip__track.is-dragging,
.svc-brand-strip__track.is-dragging-x { cursor: grabbing; }
.svc-brand-strip__item {
  flex: 0 0 220px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}
.svc-brand-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.18);
}

/* ----- related services ----- */
.svc-related {
  padding-block: 90px;
  background: var(--bg-review);
}
.svc-related__head { margin-bottom: 40px; }
.svc-related__head .section-heading--center { margin-top: 14px; }
.svc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.svc-related__card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-related__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}
.svc-related__card--active {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}
.svc-related__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.svc-related__body {
  padding: 22px 22px 24px;
}
.svc-related__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-bottom: 12px;
}
.svc-related__body h3,
.svc-related__title {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--type-h3-weight);
  font-size: var(--type-h3-size);
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 10px;
}
.svc-related__body span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
}
.svc-related__body span img {
  width: 16px;
  height: 7px;
}

/* ----- about / video ----- */
.svc-about-video { padding-block: 90px; }
.svc-about-video__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.svc-about-video__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.18;
  color: #fff;
  margin-top: 14px;
}
.svc-about-video__text {
  margin-top: 18px;
  font-size: 16px;
  color: rgba(255, 255, 255, .78);
}
.svc-about-video__copy .btn { margin-top: 28px; }
.svc-about-video__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.svc-about-video__media > img {
  width: 100%;
  height: clamp(260px, 32vw, 400px);
  object-fit: cover;
}
.svc-about-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  transition: transform .2s ease;
}
.svc-about-video__play img {
  width: 72px;
  height: 72px;
}
.svc-about-video__play:hover { transform: translate(-50%, -50%) scale(1.06); }

.page-hero--outdoor .page-hero__bg img {
  object-position: center 40%;
}

/* ----- services hub ----- */
.svc-hub {
  padding-block: 90px;
  background: #fff;
}
.svc-hub__head {
  max-width: 720px;
  margin-inline: auto 0;
  margin-bottom: 28px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.svc-hub__head .section-heading--center { margin-top: 14px; }
.svc-hub__lead {
  margin-top: 16px;
  font-size: 16px;
  color: var(--text-gray);
}
.svc-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.svc-hub-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .05);
  transition: transform .25s ease, box-shadow .25s ease;
  color: inherit;
}
.svc-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .1);
}
.svc-hub-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.svc-hub-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.svc-hub-card:hover .svc-hub-card__media img {
  transform: scale(1.05);
}
.svc-hub-card__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 8px 20px rgba(199, 30, 45, .35);
}
.svc-hub-card__badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.svc-hub-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 24px 28px;
}
.svc-hub-card__body h3,
.svc-hub-card__title {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--type-h3-weight);
  font-size: var(--type-h3-size);
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 12px;
}
.svc-hub-card__body > p {
  font-size: 15px;
  color: var(--text-gray);
}
.svc-hub-card__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-hub-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.svc-hub-card__list img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.svc-hub-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  transition: gap .2s ease;
}
.svc-hub-card__link img {
  width: 20px;
  height: 10px;
  display: block;
  filter: invert(18%) sepia(84%) saturate(2850%) hue-rotate(341deg) brightness(90%) contrast(90%);
  transition: transform .2s ease;
}
.svc-hub-card:hover .svc-hub-card__link { gap: 14px; }
.svc-hub-card:hover .svc-hub-card__link img { transform: translateX(4px); }

@media (max-width: 1140px) {
  .svc-why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-why__grid--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-why__grid--six { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero__title { font-size: clamp(38px, 5vw, 56px); }
  .svc-hub__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

@media (max-width: 1023px) {
  .page-hero {
    min-height: auto;
    align-items: stretch;
  }
  .page-hero__inner {
    padding-top: 48px;
    padding-bottom: 52px;
  }
  .page-hero__bg img { object-position: center 35%; }
  .page-hero__veil {
    background:
      linear-gradient(180deg,
        rgba(18, 18, 18, .88) 0%,
        rgba(18, 18, 18, .78) 45%,
        rgba(18, 18, 18, .7) 100%);
  }
  .page-hero--compact .page-hero__veil {
    background:
      linear-gradient(180deg,
        rgba(199, 30, 45, .96) 0%,
        rgba(199, 30, 45, .93) 50%,
        rgba(204, 35, 50, .9) 100%);
  }
  .page-blog-index .page-hero--compact .page-hero__veil,
  .page-about-us .page-hero--compact .page-hero__veil,
  .page-contact-index .page-hero--compact .page-hero__veil,
  .page-faqs-index .page-hero--compact .page-hero__veil,
  .page-videomonials-index .page-hero--compact .page-hero__veil,
  .page-project-single .page-hero--compact .page-hero__veil {
    background:
      linear-gradient(180deg,
        rgba(18, 18, 18, .88) 0%,
        rgba(18, 18, 18, .78) 45%,
        rgba(18, 18, 18, .7) 100%);
  }
  .svc-intro { padding-block: 64px 56px; }
  .svc-intro__grid,
  .svc-diff__top,
  .svc-ready__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svc-diff__media {
    min-height: 260px;
    height: auto;
  }
  .svc-diff__media img {
    min-height: 260px;
    height: 300px;
  }
  .svc-intro__media > img { height: 360px; }
  .svc-diff__list { grid-template-columns: 1fr; }
  .svc-ready { padding-block: 64px; }
  .svc-diff { padding-block: 64px; }
  .svc-why { padding-block: 64px; }
  .svc-reviews { padding-block: 64px; }
  .svc-reviews__grid { grid-template-columns: 1fr; }
  .svc-related { padding-block: 64px; }
  .svc-related__grid { grid-template-columns: 1fr; }
  .svc-brand-strip__item { flex-basis: 200px; }
  .svc-perk-banner { padding-block: 56px; }
  .svc-perk-banner__inner { flex-direction: column; align-items: flex-start; }
  .svc-perk-banner__copy { max-width: 100%; }
  .svc-about-video { padding-block: 64px; }
  .svc-about-video__inner { grid-template-columns: 1fr; gap: 28px; }
  .svc-hub { padding-block: 64px; }
  .svc-hub-card__media { height: 200px; }
}

@media (max-width: 767px) {
  .page-hero--compact,
  .page-content-landing .page-hero--compact {
    min-height: 200px;
    height: 200px;
    max-height: 200px;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
  }
  .page-hero--compact .page-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding-top: 16px;
    padding-bottom: 0;
    text-align: left;
  }
  .page-hero--compact .page-hero__main {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .page-hero--compact .page-hero__crumb {
    margin-bottom: 8px;
    align-self: flex-start;
  }
  .page-hero--compact .page-hero__title {
    font-size: clamp(28px, 8vw, 36px);
    text-align: left;
    width: 100%;
  }
  .page-hero--compact .page-hero__lead {
    margin-top: 12px;
  }
  .page-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-hero__actions .btn,
  .page-hero__call {
    width: auto;
    max-width: 100%;
    justify-content: center;
  }
  .page-hero__actions .btn:nth-child(n + 2),
  .page-hero__actions .page-hero__call:nth-child(n + 2) {
    display: none;
  }
  .page-hero__call { padding-right: 14px; }
  .svc-why__grid { grid-template-columns: 1fr; }
  .svc-why__grid--five { grid-template-columns: 1fr; }
  .svc-why__grid--six { grid-template-columns: 1fr; }
  .svc-intro__badge { left: 12px; bottom: 12px; padding: 10px 12px; }
  .svc-ready__media { grid-template-columns: 1fr; }
  .svc-ready__media-side { display: none; }
  .svc-ready__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .svc-ready__actions .btn { width: auto; max-width: 100%; }
  .svc-ready__actions .btn:nth-child(n + 2) { display: none; }
  .svc-diff__perk { flex-direction: column; align-items: flex-start; }
  .svc-brand-strip__item { flex-basis: 160px; height: 94px; }
}

/* ==========================================================================
   Test page — BMG-style layout, Dream Kitchen colors/fonts (home unchanged)
   ========================================================================== */

body.page-test {
  background: #ffffff;
  color: #171717;
}

.page-test__shell {
  position: relative;
  min-height: auto;
}

/* Always fixed on homepage — avoids gray flash when leaving scrolled state */
.page-test__chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  background: transparent;
  box-shadow: none;
}

body.dk-scrolled .page-test__chrome,
body.page-test--nav-open .page-test__chrome {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.page-test .topbar,
.page-test__topbar {
  position: relative;
  z-index: 2;
  display: block;
  top: auto;
  left: auto;
  right: auto;
  background: var(--red);
  flex-shrink: 0;
}

.page-test__topbar .topbar__item,
.page-test__topbar .topbar__item span {
  color: #fff;
}

.page-test__header.header {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  background: transparent;
  box-shadow: none;
  z-index: 1;
}

.page-test__header .header__inner {
  position: relative;
}

.page-test__header::before {
  display: none !important;
  content: none !important;
}

.page-test__header .header__inner,
.page-test__header .header__logo,
.page-test__header .nav,
.page-test__header .header__cta,
.page-test__header .header__burger {
  position: relative;
  z-index: 1;
}

.page-test__header .header__logo img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, .45));
}

.page-test__header .nav__link {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}

.page-test__header .nav__link:hover,
.page-test__header .nav__link:focus-visible,
.page-test__header .nav__link--active,
.page-test__header .nav__link[aria-current="page"] {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.page-test__header .nav__dropdown-toggle img,
.page-test__header .nav__link img {
  filter: brightness(0) invert(1);
}

.page-test__header .header__burger span {
  background: #fff;
}

.page-test__header .header__cta,
.page-test__header .nav__cta {
  background: var(--red);
  border-color: var(--red);
  box-shadow: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  border-radius: 6px;
  padding: 15px 30px;
}

body.dk-scrolled .page-test__header.header,
body.page-test--nav-open .page-test__header.header {
  background: #fff;
  box-shadow: none;
}

body.dk-scrolled .page-test__header .header__logo img,
body.page-test--nav-open .page-test__header .header__logo img {
  filter: none;
}

body.dk-scrolled .page-test__header .nav__link,
body.page-test--nav-open .page-test__header .nav__link {
  color: var(--text-alt);
  font-weight: 500;
  text-shadow: none;
}

body.dk-scrolled .page-test__header .nav__link:hover,
body.dk-scrolled .page-test__header .nav__link:focus-visible,
body.dk-scrolled .page-test__header .nav__link--active,
body.dk-scrolled .page-test__header .nav__link[aria-current="page"],
body.page-test--nav-open .page-test__header .nav__link:hover,
body.page-test--nav-open .page-test__header .nav__link:focus-visible,
body.page-test--nav-open .page-test__header .nav__link--active,
body.page-test--nav-open .page-test__header .nav__link[aria-current="page"] {
  color: var(--red);
  text-decoration: none;
}

body.dk-scrolled .page-test__header .nav__dropdown-toggle img,
body.dk-scrolled .page-test__header .nav__link img,
body.page-test--nav-open .page-test__header .nav__dropdown-toggle img,
body.page-test--nav-open .page-test__header .nav__link img {
  filter: none;
}

body.dk-scrolled .page-test__header .header__burger span,
body.page-test--nav-open .page-test__header .header__burger span {
  background: var(--text-alt);
}

.page-test__hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
}

.page-test__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.page-test__hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page-test__hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-test__media--fallback {
  z-index: 0;
}

.page-test__hero--has-video {
  background: #111;
}

.page-test__hero--has-video picture,
.page-test__hero--has-video .page-test__media--fallback {
  display: none !important;
}

.page-test__media--video {
  z-index: 1;
  display: block !important;
  opacity: 1;
  visibility: visible;
  border: 0;
  background: #111;
}

.page-test__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .42) 42%, rgba(0, 0, 0, .18) 68%, rgba(0, 0, 0, .28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, transparent 28%, transparent 70%, rgba(0, 0, 0, .55) 100%);
  pointer-events: none;
}

.page-test__hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding-top: clamp(190px, 22vh, 230px);
  padding-bottom: clamp(28px, 4vh, 48px);
}

.page-test__copy {
  max-width: 720px;
  text-align: left;
}

.page-test__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
}

.page-test__headline {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(34px, 5.2vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
  max-width: 16ch;
}

.page-test__offer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 0;
  max-width: 42ch;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, .92);
}

.page-test__offer-mark {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  flex-shrink: 0;
  background: var(--red);
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(199, 30, 45, .25);
}

.page-test__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  width: 100%;
  max-width: 100%;
}

.page-test__btn {
  min-height: 0;
  box-sizing: border-box;
  max-width: 100%;
  padding: 15px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.page-test__btn--primary {
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
}

.page-test__btn--primary:hover,
.page-test__btn--primary:focus-visible {
  background: transparent;
  border-color: transparent;
  color: var(--red);
}

.page-test__btn--secondary {
  background: #fff;
  border: 1px solid #fff;
  color: #111;
}

.page-test__btn--secondary:hover,
.page-test__btn--secondary:focus-visible {
  background: transparent;
  color: #fff;
}

.page-test__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  max-width: 860px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.page-test__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
  cursor: default;
  pointer-events: none;
}

.page-test__feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  overflow: hidden;
}

.page-test__feature-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.page-test__feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.page-test__feature-text strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.page-test__feature-text span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, .78);
}

.page-test__rail {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Legacy red edge tabs — replaced by circular rail */
.sticky-contact {
  display: none !important;
}

.page-test__rail-link {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  border: 1px solid var(--red);
  backdrop-filter: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.page-test__rail-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.page-test__rail-link:hover,
.page-test__rail-link:focus-visible {
  background: #a5121f;
  border-color: #a5121f;
  transform: translateY(-2px);
  outline: none;
}

/* Keep white header when menu opens (desktop) */
@media (min-width: 1140px) {
  .page-test__header:has(.header__burger[aria-expanded="true"]) {
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
  }

  body:not(.dk-scrolled) .page-test__header:has(.header__burger[aria-expanded="true"]) .header__logo img {
    filter: none;
  }

  body:not(.dk-scrolled) .page-test__header:has(.header__burger[aria-expanded="true"]) .nav__link {
    color: var(--text-alt);
    text-shadow: none;
  }
}

@media (max-width: 1139px) {
  /* Keep hero height content-driven on tablet instead of a full 100vh slab */
  .page-test__shell {
    min-height: 0;
  }
  .page-test__hero {
    min-height: 0;
    height: auto;
  }
  .page-test__hero-inner {
    min-height: min(70vh, 660px);
    padding-top: clamp(132px, 15vh, 176px);
    padding-bottom: clamp(24px, 3.2vh, 40px);
    gap: 32px;
    justify-content: space-between;
  }
  .page-test__headline {
    max-width: min(18ch, 100%);
    font-size: clamp(30px, 4.5vw, 48px);
  }
  .page-test__offer {
    max-width: 54ch;
  }
  .page-test__actions {
    flex-wrap: wrap;
  }
  .page-test__features {
    gap: 16px 24px;
  }

  /* Clear fixed contact rail so copy/buttons aren't covered */
  .page-test__hero-inner,
  .page-test__copy,
  .page-test__actions {
    padding-right: 56px;
  }

  .page-test__chrome {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    background: transparent;
    box-shadow: none;
  }

  body.dk-scrolled .page-test__chrome,
  body.page-test--nav-open .page-test__chrome {
    position: fixed;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
  }

  .page-test__topbar {
    position: relative;
    z-index: 2;
    background: var(--red);
  }

  .page-test__topbar .topbar__inner {
    min-height: 52px;
    height: 52px;
    max-height: 52px;
    justify-content: flex-end;
    padding-block: 0;
    gap: 12px;
    overflow: hidden;
  }

  .page-test__topbar .topbar__address {
    display: none;
  }

  .page-test__topbar .topbar__contacts {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    width: auto;
    margin-left: auto;
  }

  .page-test__topbar .topbar__item {
    font-size: 13px;
    justify-content: flex-start;
    white-space: nowrap;
  }

  /* Transparent over hero at top; white comes from body.dk-scrolled rules */
  .page-test__header.header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 1;
    height: auto;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .page-test__chrome {
    background: transparent;
    box-shadow: none;
  }

  body.dk-scrolled .page-test__chrome,
  body.page-test--nav-open .page-test__chrome {
    position: fixed;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
  }

  body.dk-scrolled .page-test__header.header,
  body.page-test--nav-open .page-test__header.header,
  .page-test__header:has(.header__burger[aria-expanded="true"]) {
    background: #fff;
    box-shadow: none;
  }

  .page-test__header .header__inner {
    height: 90px;
  }

  body:not(.dk-scrolled):not(.page-test--nav-open) .page-test__header .header__logo img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, .45));
  }

  body:not(.dk-scrolled):not(.page-test--nav-open) .page-test__header .header__burger span {
    background: #fff;
    box-shadow: none;
  }

  .page-test__header .header__burger {
    z-index: 130;
    position: relative;
    background: transparent;
    border-radius: 0;
  }

  /* Match other pages: white slide-out drawer */
  .page-test__header .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 100px 32px 32px;
    box-shadow: -12px 0 32px rgba(0, 0, 0, .12);
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 60;
  }

  .page-test__header .nav.nav--open {
    transform: translateX(0);
  }

  .page-test__header .nav__link,
  .page-test__header .nav__dropdown-link {
    color: var(--text-alt);
    font-size: 18px;
    font-weight: 500;
    text-shadow: none;
  }

  .page-test__header .nav__link:hover,
  .page-test__header .nav__link:focus-visible,
  .page-test__header .nav__link--active,
  .page-test__header .nav__link[aria-current="page"],
  .page-test__header .nav__dropdown-link:hover,
  .page-test__header .nav__dropdown-link:focus-visible,
  .page-test__header .nav__dropdown-link--active {
    color: var(--red);
    text-decoration: none;
    background: transparent;
  }

  .page-test__header .nav__dropdown-link:hover,
  .page-test__header .nav__dropdown-link:focus-visible {
    background: rgba(199, 30, 45, .07);
  }

  .page-test__header .nav__item {
    width: 100%;
    border-bottom: 0;
    padding: 0;
    flex-wrap: wrap;
  }

  .page-test__header .nav__link {
    width: auto;
    padding: 0;
    border-radius: 0;
  }

  .page-test__header .nav__dropdown {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    padding: 5px 0 0 14px;
    border: 0;
    border-left: 2px solid rgba(199, 30, 45, .18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .page-test__header .nav__item--open > .nav__dropdown {
    display: grid;
  }

  .page-test__header .nav__dropdown::before {
    display: none;
  }

  .page-test__header .nav__dropdown-link {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    white-space: normal;
  }

  .page-test__header .nav__dropdown-toggle img,
  .page-test__header .nav__link img {
    filter: none;
  }

  .page-test__header .nav__cta {
    display: inline-flex;
    width: auto;
    justify-content: center;
    margin-top: 8px;
    box-shadow: none;
  }

  .page-test__header .header__cta {
    display: none;
  }

  .page-test__rail {
    display: flex;
    right: 10px;
    gap: 8px;
  }

  .page-test__rail-link {
    width: 36px;
    height: 36px;
  }

  .page-test__rail-link img {
    width: 14px;
    height: 14px;
  }

  /* Dim page content only — stay under chrome so drawer/header stay white */
  .page-test__shell::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 110;
  }

  .page-test--nav-open {
    overflow: hidden;
  }

  .page-test--nav-open .page-test__shell::after {
    opacity: 1;
    pointer-events: auto;
  }

  .page-test__hero-inner {
    padding-top: 180px;
  }
}

@media (max-width: 767px) {
  .page-test__topbar .topbar__inner {
    min-height: 48px;
    height: 48px;
    max-height: 48px;
    justify-content: center;
  }

  .page-test__topbar .topbar__contacts {
    justify-content: center;
    gap: 12px 14px;
  }

  .page-test__topbar .topbar__item {
    font-size: 12px;
  }

  /* Long email can overflow narrow phones — keep phone visible */
  .page-test__topbar .topbar__contacts .topbar__item:first-child {
    max-width: min(52vw, 210px);
    overflow: hidden;
  }
  .page-test__topbar .topbar__contacts .topbar__item:first-child span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .page-test__header.header,
  .page-test__header:has(.header__burger[aria-expanded="true"]) {
    background: transparent;
    box-shadow: none;
  }

  body.dk-scrolled .page-test__header.header,
  body.page-test--nav-open .page-test__header.header,
  .page-test__header:has(.header__burger[aria-expanded="true"]) {
    background: #fff;
  }

  .page-test__header .header__inner {
    height: 76px;
  }

  body:not(.dk-scrolled):not(.page-test--nav-open) .page-test__header .header__logo img {
    width: 100px;
    height: 52px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, .45));
  }

  body.dk-scrolled .page-test__header .header__logo img,
  body.page-test--nav-open .page-test__header .header__logo img {
    width: 84px;
    height: 44px;
    filter: none;
  }

  .page-test__header .nav {
    padding-top: 100px;
    width: min(320px, 85vw);
  }

  .page-test__shell {
    position: relative;
    min-height: 0;
  }

  .page-test__hero {
    min-height: 0;
    height: auto;
  }

  .page-test__hero-inner {
    min-height: min(68vh, 560px);
    padding-top: 140px;
    gap: 28px;
  }

  .page-test__headline {
    max-width: none;
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.15;
  }

  .page-test__offer {
    font-size: 15px;
  }

  .page-test__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .page-test__btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 15px 22px;
    white-space: normal;
  }

  /* Keep both CTAs — stack instead of hiding the secondary */
  .page-test__actions .page-test__btn:nth-child(n + 2),
  .page-test__actions .btn:nth-child(n + 2) {
    display: inline-flex;
  }

  .page-test__features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-test__feature-text strong {
    font-size: 16px;
  }

  .page-test__rail {
    right: 8px;
    gap: 6px;
  }

  .page-test__rail-link {
    width: 32px;
    height: 32px;
  }

  .page-test__hero-inner,
  .page-test__copy,
  .page-test__actions {
    padding-right: 48px;
  }

  .page-test__rail-link img {
    width: 13px;
    height: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-test__header.header,
  .page-test__btn,
  .page-test__rail-link {
    transition: none;
  }
}

/* ---------- Test page CTA card ---------- */

.page-test-cta {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
  background: #1a1a1a;
}

.page-test-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-test-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px) brightness(.45);
  transform: scale(1.04);
}

.page-test-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, .45);
}

.page-test-cta__inner {
  position: relative;
  z-index: 1;
}

.page-test-cta__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.page-test-cta__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.page-test-cta__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.page-test-cta__text {
  margin: 16px 0 0;
  max-width: 38ch;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: #5d5d5d;
}

.page-test-cta__schedule {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  transition: color .2s ease;
}

.page-test-cta__schedule:hover,
.page-test-cta__schedule:focus-visible {
  color: var(--red);
  outline: none;
}

.page-test-cta__schedule-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  flex-shrink: 0;
  transition: background .2s ease;
}

.page-test-cta__schedule:hover .page-test-cta__schedule-icon,
.page-test-cta__schedule:focus-visible .page-test-cta__schedule-icon {
  background: var(--red);
}

.page-test-cta__contacts {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.page-test-cta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #e8e8e8;
  transition: opacity .2s ease;
}

.page-test-cta__row:first-child {
  padding-top: 4px;
}

.page-test-cta__row:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}

.page-test-cta__row:hover,
.page-test-cta__row:focus-visible {
  opacity: .82;
  outline: none;
}

.page-test-cta__row-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.page-test-cta__row-copy strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.page-test-cta__row-copy span {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: #5d5d5d;
}

.page-test-cta__row-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.page-test-cta__row-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0);
}

@media (max-width: 900px) {
  .page-test-cta__card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-test-cta__heading {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .page-test-cta {
    padding: 40px 0;
  }
  .page-test-cta__card {
    border-radius: 14px;
    padding: 22px 18px;
  }
  .page-test-cta__heading {
    font-size: clamp(24px, 7vw, 32px);
  }
  .page-test-cta__schedule {
    font-size: 16px;
  }
  .page-test-cta__schedule-icon {
    width: 46px;
    height: 46px;
  }
  .page-test-cta__row {
    padding: 16px 0;
    gap: 12px;
  }
  .page-test-cta__row-copy strong {
    font-size: 16px;
  }
  .page-test-cta__row-copy span {
    font-size: 14px;
  }
}

/* ---------- Site-wide — Uiverse skew hover on .btn ---------- */
/*
 * Light / white sections: primary red → branding dark + white text.
 * Dark surfaces: primary red → white fill + red text (contrast).
 */
.btn,
.page-test__btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  transition: color 1000ms, transform 1000ms, outline-color 1000ms, box-shadow 1000ms, background-color 1000ms, border-color 1000ms, filter 1000ms;
}

.btn::before,
.page-test__btn::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
  pointer-events: none;
}

.btn:hover,
.btn:focus-visible,
.page-test__btn:hover,
.page-test__btn:focus-visible {
  transform: none;
  outline: 0 !important;
  box-shadow: none;
  background-color: transparent;
  border-color: transparent;
}

.btn:hover::before,
.btn:focus-visible::before,
.page-test__btn:hover::before,
.page-test__btn:focus-visible::before {
  width: 250%;
}

/* Primary default (light sections) — rest: red → hover: branding dark + white text */
.btn--primary::before {
  background-color: var(--brand-dark);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  color: #fff;
  outline: 0 !important;
  box-shadow: none;
  transform: none;
}
.btn--primary:hover .btn__arrow,
.btn--primary:focus-visible .btn__arrow {
  filter: none;
}

/* Dark surfaces — rest: red → hover: white + red text */
.section-dark .btn--primary::before,
.stories .btn--primary::before,
.why .btn--primary::before,
.footer .btn--primary::before,
.hero .btn--primary::before,
.page-hero .btn--primary::before,
.cta .btn--primary::before,
.dk-thank-you-next .btn--primary::before,
.dk-policy-cta .btn--primary::before {
  background-color: #fff;
}
.section-dark .btn--primary:hover,
.section-dark .btn--primary:focus-visible,
.stories .btn--primary:hover,
.stories .btn--primary:focus-visible,
.why .btn--primary:hover,
.why .btn--primary:focus-visible,
.footer .btn--primary:hover,
.footer .btn--primary:focus-visible,
.hero .btn--primary:hover,
.hero .btn--primary:focus-visible,
.page-hero .btn--primary:hover,
.page-hero .btn--primary:focus-visible,
.cta .btn--primary:hover,
.cta .btn--primary:focus-visible,
.dk-thank-you-next .btn--primary:hover,
.dk-thank-you-next .btn--primary:focus-visible,
.dk-policy-cta .btn--primary:hover,
.dk-policy-cta .btn--primary:focus-visible {
  color: var(--red);
}
.section-dark .btn--primary:hover .btn__arrow,
.section-dark .btn--primary:focus-visible .btn__arrow,
.stories .btn--primary:hover .btn__arrow,
.stories .btn--primary:focus-visible .btn__arrow,
.why .btn--primary:hover .btn__arrow,
.why .btn--primary:focus-visible .btn__arrow,
.footer .btn--primary:hover .btn__arrow,
.footer .btn--primary:focus-visible .btn__arrow,
.hero .btn--primary:hover .btn__arrow,
.hero .btn--primary:focus-visible .btn__arrow,
.page-hero .btn--primary:hover .btn__arrow,
.page-hero .btn--primary:focus-visible .btn__arrow,
.cta .btn--primary:hover .btn__arrow,
.cta .btn--primary:focus-visible .btn__arrow,
.dk-thank-you-next .btn--primary:hover .btn__arrow,
.dk-thank-you-next .btn--primary:focus-visible .btn__arrow,
.dk-policy-cta .btn--primary:hover .btn__arrow,
.dk-policy-cta .btn--primary:focus-visible .btn__arrow {
  filter: brightness(0) saturate(100%) invert(18%) sepia(78%) saturate(2876%) hue-rotate(341deg) brightness(88%) contrast(92%);
}

.btn.hover-bg-white::before,
.btn--primary.hover-bg-white::before {
  background-color: #fff;
}
.btn.hover-bg-white:hover,
.btn.hover-bg-white:focus-visible,
.btn--primary.hover-bg-white:hover,
.btn--primary.hover-bg-white:focus-visible {
  color: var(--red);
}
.btn.hover-bg-white:hover .btn__arrow,
.btn.hover-bg-white:focus-visible .btn__arrow,
.btn--primary.hover-bg-white:hover .btn__arrow,
.btn--primary.hover-bg-white:focus-visible .btn__arrow {
  filter: brightness(0) saturate(100%) invert(18%) sepia(78%) saturate(2876%) hue-rotate(341deg) brightness(88%) contrast(92%);
}

/* Home hero CTA (over video/image) — white hover for contrast */
.page-test__btn--primary::before {
  background-color: #fff;
}
.page-test__btn--primary:hover,
.page-test__btn--primary:focus-visible {
  color: var(--red);
  outline: 0 !important;
  box-shadow: none;
  transform: none;
}

/* Header CTA — over dark hero: white hover; on light header chrome: branding dark */
body.home .header__cta.btn--primary::before,
body.home .nav__cta.btn--primary::before {
  background-color: #fff;
}
body.home .header__cta.btn--primary:hover,
body.home .header__cta.btn--primary:focus-visible,
body.home .nav__cta.btn--primary:hover,
body.home .nav__cta.btn--primary:focus-visible {
  color: var(--red);
}
body.home.dk-scrolled .header__cta.btn--primary::before,
body.home.dk-scrolled .nav__cta.btn--primary::before,
body.home.page-test--nav-open .header__cta.btn--primary::before,
body.home.page-test--nav-open .nav__cta.btn--primary::before {
  background-color: var(--brand-dark);
}
body.home.dk-scrolled .header__cta.btn--primary:hover,
body.home.dk-scrolled .header__cta.btn--primary:focus-visible,
body.home.dk-scrolled .nav__cta.btn--primary:hover,
body.home.dk-scrolled .nav__cta.btn--primary:focus-visible,
body.home.page-test--nav-open .header__cta.btn--primary:hover,
body.home.page-test--nav-open .header__cta.btn--primary:focus-visible,
body.home.page-test--nav-open .nav__cta.btn--primary:hover,
body.home.page-test--nav-open .nav__cta.btn--primary:focus-visible {
  color: #fff;
}
body.home.dk-scrolled .header__cta.btn--primary:hover .btn__arrow,
body.home.dk-scrolled .header__cta.btn--primary:focus-visible .btn__arrow,
body.home.dk-scrolled .nav__cta.btn--primary:hover .btn__arrow,
body.home.dk-scrolled .nav__cta.btn--primary:focus-visible .btn__arrow,
body.home.page-test--nav-open .header__cta.btn--primary:hover .btn__arrow,
body.home.page-test--nav-open .header__cta.btn--primary:focus-visible .btn__arrow,
body.home.page-test--nav-open .nav__cta.btn--primary:hover .btn__arrow,
body.home.page-test--nav-open .nav__cta.btn--primary:focus-visible .btn__arrow {
  filter: none;
}

body:not(.home) .header__cta.btn--primary::before,
body:not(.home) .nav__cta.btn--primary::before {
  background-color: var(--brand-dark);
}
body:not(.home) .header__cta.btn--primary:hover,
body:not(.home) .header__cta.btn--primary:focus-visible,
body:not(.home) .nav__cta.btn--primary:hover,
body:not(.home) .nav__cta.btn--primary:focus-visible {
  color: #fff;
}
body:not(.home) .header__cta.btn--primary:hover .btn__arrow,
body:not(.home) .header__cta.btn--primary:focus-visible .btn__arrow,
body:not(.home) .nav__cta.btn--primary:hover .btn__arrow,
body:not(.home) .nav__cta.btn--primary:focus-visible .btn__arrow {
  filter: none;
}

/* Outline dark — rest: transparent + black text → hover fill: branding dark, text: white */
.btn--outline-dark::before {
  background-color: var(--brand-dark);
}
.btn--outline-dark:hover,
.btn--outline-dark:focus-visible {
  color: #fff;
  outline: 0 !important;
  box-shadow: none;
  transform: none;
}
.btn--outline-dark:hover .btn__arrow,
.btn--outline-dark:focus-visible .btn__arrow {
  filter: invert(1);
}

/* White CTA (on red/dark banner) — rest: white + black text → hover fill: branding dark, text: white */
.btn--white::before {
  background-color: var(--brand-dark);
}
.btn--white:hover,
.btn--white:focus-visible {
  color: #fff;
  outline: 0 !important;
  box-shadow: none;
  transform: none;
}

/* Outline white CTA — rest: transparent + white text → hover fill: white, text: branding dark */
.btn--outline-white::before {
  background-color: #fff;
}
.btn--outline-white:hover,
.btn--outline-white:focus-visible {
  color: var(--brand-dark);
  outline: 0 !important;
  box-shadow: none;
  transform: none;
}

/* Live-home secondary (white button on hero) — hover fill: branding dark, text: white */
.page-test__btn--secondary::before {
  background-color: var(--brand-dark);
}
.page-test__btn--secondary:hover,
.page-test__btn--secondary:focus-visible {
  color: #fff;
  outline: 0 !important;
  box-shadow: none;
  transform: none;
}

/* Contact form submit (on white card) — branding dark fill on hover */
.dk-contact-form .btn::before {
  background-color: var(--brand-dark);
}
.dk-contact-form .btn:hover,
.dk-contact-form .btn:focus-visible {
  color: #fff;
  outline: 0 !important;
  box-shadow: none;
  transform: none;
}
.dk-contact-form .btn:hover .btn__arrow,
.dk-contact-form .btn:focus-visible .btn__arrow {
  filter: none;
}

/* ---------- service offerings image grid ---------- */

.svc-offerings {
  padding-block: clamp(64px, 8vw, 100px);
  background: var(--bg-review);
}
.svc-offerings__head {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}
.svc-offerings__head .section-heading {
  color: var(--navy);
}
.svc-offerings__lead {
  margin-top: 14px;
  color: var(--text-gray);
  line-height: 1.65;
  font-size: 16px;
  max-width: 52em;
  margin-inline: auto;
}
.svc-offerings__lead p {
  margin: 0;
}
.svc-offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.svc-offering-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: #1a1a1a;
}
.svc-offering-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.svc-offering-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}
.svc-offering-card--desc .svc-offering-card__veil {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.82) 100%);
}
.svc-offering-card__copy {
  position: absolute;
  left: 20px;
  right: 16px;
  bottom: 18px;
  z-index: 1;
}
.svc-offering-card__label {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.svc-offering-card__text,
.svc-offering-card__text p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.svc-offering-card:hover .svc-offering-card__img {
  transform: scale(1.06);
}

@media (max-width: 900px) {
  .svc-offerings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .svc-offering-card__copy {
    left: 14px;
    right: 12px;
    bottom: 14px;
  }
}
@media (max-width: 800px) {
  .svc-offerings__lead,
  .svc-offerings__lead p {
    text-align: left;
  }
}
@media (max-width: 560px) {
  .svc-offerings__grid {
    grid-template-columns: 1fr;
  }
  .svc-offering-card {
    aspect-ratio: 16 / 11;
  }
}

/* ---------- Projects page ---------- */

.projects-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: #fff;
  background:
    radial-gradient(circle at 16% 12%, rgba(199, 30, 45, 0.3), transparent 30%),
    #171717;
}
.projects-hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -160px auto;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.projects-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}
.projects-hero__content {
  max-width: 540px;
}
.projects-hero__crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
}
.projects-hero__crumb a {
  color: inherit;
  text-decoration: none;
}
.projects-hero__crumb a:hover {
  color: #fff;
}
.projects-hero__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: #f08d96;
}
.projects-hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.projects-hero__title span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.72);
}
.projects-hero__lead {
  max-width: 500px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
}
.projects-hero__lead p {
  margin: 0 0 0.6em;
}
.projects-hero__lead p:last-child {
  margin-bottom: 0;
}
.projects-hero__mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 480px;
}
.projects-hero__image {
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
}
.projects-hero__image--main {
  grid-row: 1 / 3;
}
.projects-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.projects-hero__mosaic:hover .projects-hero__image img {
  transform: scale(1.035);
}
.projects-hero__count {
  display: none !important;
}
.projects-hero__count strong {
  display: none !important;
}

.dk-projects-page {
  padding-block: clamp(64px, 8vw, 100px);
  background:
    radial-gradient(circle at 10% 0%, rgba(199, 30, 45, 0.06), transparent 40%),
    linear-gradient(180deg, #faf8f6 0%, #fff 40%, #f7f4f1 100%);
}
.home-past-work {
  margin-top: 90px;
}
.dk-home-projects .section-heading {
  margin-bottom: 28px;
}
.dk-home-projects .projects-tabs {
  margin-top: 0;
}
.projects-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.projects-tabs {
  margin-bottom: 36px;
  justify-content: center;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.project-card {
  position: relative;
  background: #f1f1f1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(31, 31, 31, 0.1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease;
}
.project-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #e85a65);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 2;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: none;
  border-color: rgba(199, 30, 45, 0.28);
}
.project-card:hover::before {
  transform: scaleX(1);
}
.project-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #1a1a1a;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.project-card:hover .project-card__media img {
  transform: scale(1.07);
}
.project-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}
.project-card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  background: rgba(199, 30, 45, 0.95);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  padding: 7px 11px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}
.project-card__body {
  padding: 18px 18px 20px;
  background: #f1f1f1;
}
.project-card__name {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.project-card__name a {
  color: inherit;
  text-decoration: none;
}
.project-card__name a:hover {
  color: var(--red);
}

.projects-intro__lead p,
.projects-about__text p,
.project-single-about__text p {
  margin: 0 0 0.6em;
}
.projects-intro__lead p:last-child,
.projects-about__text p:last-child,
.project-single-about__text p:last-child {
  margin-bottom: 0;
}

.projects-about {
  padding-block: clamp(72px, 9vw, 110px);
  background:
    radial-gradient(circle at 85% 20%, rgba(199, 30, 45, 0.07), transparent 40%),
    #fff;
}
.projects-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.projects-about__media {
  position: relative;
}
.projects-about__media img {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 480px);
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 22px 48px rgba(23, 20, 18, 0.16);
}
.projects-about__accent {
  position: absolute;
  left: -14px;
  display: none !important;
  top: 18%;
  width: 10px;
  height: 42%;
  border-radius: 10px;
  background: var(--red);
}
.projects-about__heading {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.12;
  color: var(--navy);
}
.projects-about__text {
  margin-top: 16px;
  color: var(--text-gray);
  line-height: 1.65;
  max-width: 36em;
}
.projects-about__points {
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.projects-about__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.projects-about__points img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Single project */
.project-single-gallery {
  padding-block: clamp(64px, 8vw, 100px);
  background: #faf8f6;
}
.project-single-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.project-single-gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.project-single-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.project-single-gallery__item:hover img {
  transform: scale(1.05);
}

.project-single-about {
  padding-block: clamp(72px, 9vw, 110px);
  background: #fff;
}
.project-single-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.project-single-about__media img {
  display: block;
  width: 100%;
  height: clamp(320px, 40vw, 460px);
  object-fit: cover;
  border-radius: 10px;
}
.project-single-about__heading {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  color: var(--navy);
}
.project-single-about__text {
  margin: 16px 0 28px;
  color: var(--text-gray);
  line-height: 1.7;
}
.project-single-about .btn--primary::before {
  background-color: var(--brand-dark);
}
.project-single-about .btn--primary:hover,
.project-single-about .btn--primary:focus-visible {
  color: #fff;
}
.project-single-about .btn--primary:hover .btn__arrow,
.project-single-about .btn--primary:focus-visible .btn__arrow {
  filter: none;
}

@media (max-width: 1100px) {
  .projects-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .projects-hero__mosaic {
    max-width: 640px;
    height: 420px;
  }
  .projects-hero__count {
    left: 16px;
    bottom: 16px;
  }
  .projects-about__grid,
  .project-single-about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .projects-about__accent {
    display: none;
  }
}
@media (max-width: 980px) {
  .projects-grid,
  .project-single-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .projects-hero {
    padding: 56px 0 48px;
  }
  .projects-hero__mosaic {
    height: 320px;
    gap: 10px;
  }
  .projects-hero__title {
    font-size: clamp(40px, 11vw, 52px);
  }
  .projects-grid,
  .project-single-gallery__grid {
    grid-template-columns: 1fr;
  }
  .project-card__name {
    font-size: 17px;
  }
}

.svc-guide {
  padding-block: clamp(64px, 8vw, 96px);
  background: #fff;
}
.svc-guide--process,
.svc-guide--materials {
  background: var(--bg-review);
}
.svc-guide--problems {
  background: #fff;
}
.svc-problem-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.svc-problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .1);
}
.svc-problem-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1a1a;
}
.svc-problem-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.svc-problem-card:hover .svc-problem-card__media img {
  transform: scale(1.06);
}
.svc-problem-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 26px;
  flex: 1;
}
.svc-problem-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
}
.svc-problem-card__text,
.svc-problem-card__text p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.65;
  font-size: 15px;
}
.svc-guide__head {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}
.svc-guide__lead,
.svc-guide__lead p,
.svc-guide__close,
.svc-guide__close p,
.svc-guide__item div,
.svc-guide__item p,
.svc-guide__steps div,
.svc-guide__steps p {
  color: var(--text-gray);
  line-height: 1.65;
}
.svc-guide__lead {
  margin-top: 14px;
}
@media (max-width: 800px) {
  .svc-guide__lead,
  .svc-guide__lead p {
    text-align: left;
  }
}
.svc-guide__list {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin-inline: auto;
}
.svc-guide__item h3,
.svc-guide__steps h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}
.svc-guide__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin-inline: auto;
}
.svc-guide__steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 18px 20px;
}
.svc-guide__step-num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-family: var(--font-heading);
}
.svc-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.svc-guide__grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.svc-guide__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-inline: auto;
}
.svc-guide--materials .svc-feature ul {
  margin: 10px 0 0;
  padding-left: 1.1em;
}
.svc-guide--materials .svc-feature li {
  margin: 0 0 6px;
}
.svc-guide__grid--four .svc-problem-card__title {
  font-size: 18px;
}
.svc-guide__close {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
}

.svc-guide--process .svc-guide__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.svc-guide--process .svc-guide__media {
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  position: sticky;
  top: 132px;
  height: calc(100vh - 164px);
  max-height: 720px;
}
.svc-guide--process .svc-guide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-guide--process .svc-guide__copy {
  min-width: 0;
}
.svc-guide--process .svc-guide__scroll {
  width: 100%;
}
.svc-guide--process .svc-guide__head {
  max-width: none;
  margin: 0 0 24px;
  text-align: left;
}
.svc-guide--process .svc-guide__steps {
  max-width: none;
  margin-inline: 0;
}
@media (max-width: 1024px) {
  .svc-guide__grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .svc-guide__grid--two {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .svc-guide--process .svc-guide__media {
    top: 100px;
    height: calc(100vh - 132px);
    max-height: 560px;
  }
}
@media (max-width: 800px) {
  .svc-guide__grid {
    grid-template-columns: 1fr;
  }
  .svc-guide--process .svc-guide__layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .svc-guide--process .svc-guide__media {
    position: relative;
    top: auto;
    height: 280px;
    max-height: none;
    border-radius: 14px;
  }
}

.svc-hub__grid--four,
.svc-hub__grid--five,
.svc-hub__grid--six,
.svc-hub__grid--seven {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1200px) {
  .svc-hub__grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .svc-hub__grid--five,
  .svc-hub__grid--six,
  .svc-hub__grid--seven {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1140px) {
  .svc-hub__grid--four,
  .svc-hub__grid--five,
  .svc-hub__grid--six,
  .svc-hub__grid--seven {
    grid-template-columns: 1fr;
  }
}

.svc-guide__actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.svc-cabinets-gallery {
  padding-block: 90px;
  background: #fff;
}
.svc-cabinets-gallery__head {
  margin-bottom: 36px;
}
.svc-cabinets-gallery__head .section-heading--center {
  margin-top: 14px;
}
.svc-cabinets-gallery__lead {
  max-width: 760px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--text-gray, #555);
}
.svc-cabinets-gallery__lead p {
  margin: 0;
}
.svc-cabinets-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.svc-cabinets-gallery__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #eee;
}
.svc-cabinets-gallery__item img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.svc-cabinets-gallery__actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media (max-width: 1023px) {
  .svc-cabinets-gallery {
    padding-block: 56px;
  }
  .svc-cabinets-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .svc-cabinets-gallery__item img {
    height: 200px;
  }
  .svc-cabinets-gallery__lead,
  .svc-cabinets-gallery__lead p {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .svc-cabinets-gallery__grid {
    grid-template-columns: 1fr;
  }
}
