/* Bundled responsive stylesheet (generated to remove @import request waterfall). */

/* Source: assets/css/responsive/reset.css */
/* Responsive reset baseline */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

/* Source: assets/css/responsive/global.css */
/*
Responsive Architecture Guide
- Strategy: mobile-first, only min-width breakpoints (480, 768, 1024, 1280).
- Layers: reset -> tokens -> base -> layout -> components -> pages -> overrides.
- Tokens: scale tokens (--r-*) + semantic tokens (--space-section-*, --text-*).
- Pages: page-specific adjustments only, no component skinning.
- Components: reusable BEM blocks without page wrapper dependency.
- Layout: grid/section spacing and structural flow rules.
- Utilities: low-specificity helpers prefixed with .u-.
*/

:root {
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;

    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);

    --container-inline: 12px;
    --container-max: 1240px;

    --r-space-1: 4px;
    --r-space-1-5: 6px;
    --r-space-2: 8px;
    --r-space-2-5: 10px;
    --r-space-3: 12px;
    --r-space-3-5: 14px;
    --r-space-4: 16px;
    --r-space-4-5: 18px;
    --r-space-5: 20px;
    --r-space-5-5: 22px;
    --r-space-6: 24px;
    --r-space-6-5: 26px;
    --r-space-7: 32px;
    --r-space-7-5: 30px;
    --r-space-8: 40px;
    --r-space-9: 52px;

    --r-radius-xs: 12px;
    --r-radius-sm: 10px;
    --r-radius-md: 14px;
    --r-radius-lg: 16px;

    --r-text-xs: 12px;
    --r-text-sm: 14px;
    --r-text-md: 16px;
    --r-text-lg: clamp(18px, 2.3vw, 22px);
    --r-title-md: clamp(24px, 6vw, 34px);
    --r-title-lg: clamp(34px, 5vw, 52px);

    /* semantic tokens */
    --space-section-sm: 52px;
    --space-section-md: 64px;
    --space-section-lg: 74px;

  --text-body: var(--r-text-sm);
  --text-muted: rgba(255, 255, 255, 0.78);
  --text-heading: var(--r-title-md);
}

@media (min-width: 480px) {
  :root {
    --container-inline: 16px;
  }
}

@media (min-width: 768px) {
  :root {
    --container-inline: 20px;
    --text-heading: clamp(34px, 4.8vw, 42px);
  }
}

@media (min-width: 1024px) {
  :root {
    --container-inline: 24px;
  }
}

@media (min-width: 1280px) {
  :root {
    --container-inline: 28px;
  }
}

html,
body {
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
  overflow-y: visible;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100%, var(--container-max));
  padding-inline: var(--container-inline);
}

/* Source: assets/css/responsive/utilities.css */
.u-center {
  margin-inline: auto;
  text-align: center;
}

.u-max-ch-38 {
  max-width: 38ch;
}

.u-balance {
  text-wrap: balance;
}

.u-stack-sm {
  display: grid;
  gap: var(--r-space-3);
}

.u-stack-md {
  display: grid;
  gap: var(--r-space-5);
}

@media (hover: none) and (pointer: coarse) {
  .u-touch-target,
  :where(.btn, .burger, .menu-close, .portfolio__filter, .faq__question) {
    min-height: 44px;
  }
}

/* Source: assets/css/responsive/sections/section-base.css */
.section {
  padding-top: var(--section-pt-sm, var(--space-section-sm));
  padding-bottom: var(--section-pb-sm, var(--space-section-sm));
}

.section--hero {
  --section-pt-sm: var(--space-section-sm);
  --section-pb-sm: var(--space-section-sm);
}

.section--compact {
  --section-pt-sm: var(--space-section-sm);
  --section-pb-sm: var(--space-section-sm);
}

.section--spacious {
  --section-pt-sm: var(--space-section-sm);
  --section-pb-sm: var(--space-section-sm);
}

.section--alt {
  --section-pt-sm: var(--space-section-sm);
  --section-pb-sm: var(--space-section-sm);
}

.services .container,
.portfolio .container,
.reviews .container,
.faq .container,
.contact .container {
  display: grid;
  gap: var(--r-space-5);
}

@media (min-width: 480px) {
  .section {
    padding-top: var(--section-pt-md, var(--space-section-md));
    padding-bottom: var(--section-pb-md, var(--space-section-md));
  }
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--section-pt-lg, var(--space-section-lg));
    padding-bottom: var(--section-pb-lg, var(--space-section-lg));
  }

  .services .container,
  .portfolio .container,
  .reviews .container,
  .faq .container,
  .contact .container {
    gap: var(--r-space-5-5);
  }
}

@media (min-width: 1024px) {
  .portfolio .container,
  .reviews .container,
  .faq .container {
    display: block;
  }

  .services .container {
    display: grid;
    gap: var(--space-8);
  }

  .section--compact {
    --section-pt-lg: var(--space-11);
    --section-pb-lg: var(--space-11);
  }

  .section--spacious {
    --section-pt-lg: var(--space-14);
    --section-pb-lg: var(--space-13);
  }

  .section--alt {
    --section-pt-lg: var(--space-11);
    --section-pb-lg: var(--space-14);
  }
}

/* Source: assets/css/responsive/sections/services.css */
.services__intro {
  display: grid;
  gap: var(--r-space-2-5);
  margin-bottom: var(--r-space-6);
}

.services__intro h2 {
  font-size: var(--text-heading);
  line-height: 1.16;
}

.services__subtitle {
  font-size: var(--text-body);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 40ch;
}

.services__grid,
.services-proof__grid,
.services-process__timeline {
  grid-template-columns: 1fr;
  gap: 20px;
}

.services article {
  min-height: 0;
  padding: var(--r-space-6-5);
  gap: var(--r-space-4);
}

.services article h3 {
  display: grid;
  gap: var(--r-space-2);
  font-size: 20px;
  line-height: 1.25;
}

.services article h3::before {
  content: "\25C8";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 14px;
  color: #f5c542;
  background: rgba(245, 197, 66, 0.12);
  border: 1px solid rgba(245, 197, 66, 0.35);
}

.services article p {
  font-size: 15px;
  line-height: 1.7;
}

.service__list {
  gap: var(--r-space-2);
}

.service__list li {
  font-size: var(--text-body);
  line-height: 1.62;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.84);
}

.service__cta {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.35;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 480px) {
  .services__subtitle {
    max-width: 52ch;
  }

  .services article {
    padding: var(--r-space-6-5);
  }
}

@media (min-width: 768px) {
  .services__intro {
    max-width: 760px;
    margin-inline: auto;
  }

  .services__intro h2 {
    font-size: var(--text-heading);
  }

  .services__subtitle {
    max-width: 60ch;
    font-size: 15px;
    line-height: 1.6;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--r-space-5-5);
  }

  .services article {
    padding: var(--r-space-7-5);
  }

  .services article h3 {
    font-size: 24px;
    line-height: 1.22;
  }

  .services article h3::before {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .services article p {
    font-size: 16px;
    line-height: 1.62;
  }

  .service__list {
    gap: var(--r-space-2);
  }

  .service__list li {
    font-size: 15px;
    line-height: 1.5;
  }

  .service__cta {
    margin-top: 8px;
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .services__intro {
    max-width: none;
    margin-inline: 0;
    margin-bottom: var(--space-8);
  }
}

@media (max-width: 767.98px) {
  .services article {
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .service__list li:nth-child(n + 4) {
    display: none;
  }

  .service__cta {
    color: #f5c542;
    font-weight: 600;
  }

  .services article:active {
    transform: translateY(1px);
    border-color: rgba(245, 197, 66, 0.56);
    box-shadow: 0 0 0 1px rgba(245, 197, 66, 0.22), 0 12px 30px rgba(0, 0, 0, 0.45);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-7);
  }

  .services article {
    min-height: 420px;
    padding: 36px;
    gap: var(--r-space-4-5);
  }

  .services article h3 {
    display: block;
    font-size: 21px;
    line-height: 1.2;
  }

  .services article h3::before {
    content: none;
  }

  .services article p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
  }

  .service__list {
    gap: 8px;
  }

  .service__list li {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.88);
  }

  .service__cta {
    margin-top: auto;
    display: inline-block;
    min-height: 0;
    font-size: 15px;
    line-height: 1.35;
  }

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

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

/* Source: assets/css/responsive/sections/portfolio.css */
.portfolio__filters {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: var(--r-space-2);
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

.portfolio__filter {
  white-space: nowrap;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 8px 12px;
  scroll-snap-align: start;
}

.portfolio__grid,
.portfolio-kpis__grid {
  grid-template-columns: 1fr;
  gap: var(--r-space-4);
}

.portfolio__item,
.portfolio__item--card {
  min-height: 0;
}

.portfolio__media img,
.portfolio__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.portfolio__summary,
.portfolio__case-params,
.portfolio__stats {
  display: none;
}

.portfolio__title {
  font-size: 18px;
  line-height: 1.3;
}

.portfolio__badge,
.portfolio__location {
  opacity: 0.88;
}

@media (max-width: 767.98px) {
  .portfolio__item:active,
  .portfolio__item--card:active {
    transform: translateY(1px);
    border-color: rgba(245, 197, 66, 0.5);
  }
}

@media (hover: none) {
  .portfolio__overlay {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .portfolio__filters {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: var(--r-space-2-5);
    padding-bottom: 0;
  }

  .portfolio__grid,
  .portfolio-kpis__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--r-space-5-5);
  }

  .portfolio__summary,
  .portfolio__stats {
    display: block;
  }

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

  .portfolio__media img {
    aspect-ratio: 4 / 3;
  }

  .portfolio__title {
    font-size: inherit;
    line-height: inherit;
  }

  .portfolio__badge,
  .portfolio__location {
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .page-home .portfolio__case-params {
    display: none;
  }

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

/* Source: assets/css/responsive/sections/reviews.css */
.reviews__title {
  font-size: var(--text-heading);
  line-height: 1.16;
}

.reviews .js-reveal,
.reviews .js-reveal.is-hidden,
.reviews .js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reviews .container {
  display: block;
}

.reviews__subtitle {
  font-size: var(--text-body);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 40ch;
  margin-bottom: 26px;
}

.reviews__badge {
  display: inline-grid;
  width: fit-content;
  max-width: 100%;
  grid-template-columns: auto auto;
  gap: var(--r-space-1) var(--r-space-2);
  align-items: center;
  padding: var(--r-space-1-5) var(--r-space-2);
  margin-bottom: var(--r-space-2);
  border: 1px solid rgba(245, 197, 66, 0.28);
  border-radius: var(--r-radius-xs);
  background: rgba(16, 16, 16, 0.55);
  backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 12px;
  line-height: 1.2;
}

.reviews__stars {
  letter-spacing: 1px;
}

.reviews__count {
  grid-column: 1 / -1;
  opacity: 0.78;
  font-size: 11px;
  line-height: 1.35;
}

.reviews__swipe-hint {
  margin: 0 0 var(--r-space-3);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}

.reviews__grid {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(88%, 88%);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  gap: var(--r-space-2-5);
  padding-right: var(--r-space-2-5);
  scroll-padding-inline: var(--r-space-2-5);
  padding-bottom: 2px;
  width: 100%;
  max-width: 100%;
}

.review {
  padding: var(--r-space-5-5);
  border-radius: var(--r-radius-md);
  scroll-snap-align: start;
}

.review::before {
  top: 12px;
  right: 14px;
  font-size: 44px;
}

@media (min-width: 480px) {
  .reviews__grid {
    grid-auto-columns: minmax(90%, 90%);
  }

  .reviews__subtitle {
    max-width: 52ch;
  }

  .reviews__badge {
    display: inline-flex;
    flex-wrap: wrap;
    gap: var(--r-space-2) var(--r-space-3);
    width: fit-content;
    font-size: 13px;
  }

  .reviews__count {
    grid-column: auto;
  }
}

@media (min-width: 768px) {
  .reviews__swipe-hint {
    display: none;
  }

  .reviews__title {
    font-size: var(--text-heading);
  }

  .reviews__subtitle {
    max-width: 60ch;
    font-size: 15px;
    line-height: 1.6;
    margin-inline: auto;
    margin-bottom: 34px;
  }

  .reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-right: 0;
    scroll-padding-inline: 0;
    gap: var(--r-space-4-5);
    max-width: none;
    margin-inline: auto;
  }

  .review {
    padding: var(--r-space-6) var(--r-space-6) var(--r-space-5-5);
  }

  .review::before {
    top: 14px;
    right: 16px;
    font-size: 52px;
  }
}

@media (max-width: 767.98px) {
  .reviews {
    overflow-x: clip;
  }

  .review {
    min-width: 0;
  }
}

@media (min-width: 1024px) {
  .reviews__badge {
    display: inline-flex;
    width: auto;
    max-width: none;
    justify-self: start;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 20px;
  }

  .reviews__count {
    grid-column: auto;
    font-size: inherit;
    line-height: inherit;
  }

  .reviews__title {
    margin-bottom: 12px;
  }

  .reviews__subtitle {
    max-width: 560px;
    margin-inline: 0;
    margin-bottom: 48px;
    font-size: inherit;
    line-height: inherit;
  }

  .reviews__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 32px;
  }

  .review {
    padding: 32px;
  }

  .review::before {
    top: 20px;
    right: 24px;
    font-size: 64px;
  }
}

/* Source: assets/css/responsive/sections/faq.css */
.faq__title {
  font-size: var(--text-heading);
}

.faq__subtitle {
  font-size: 15px;
  margin-bottom: 40px;
  padding: 0 12px;
}

.faq__list {
  gap: var(--r-space-4);
  padding: 0 var(--r-space-1-5);
}

.faq__item {
  border-radius: var(--r-radius-lg);
}

.faq__item--featured::after {
  display: none;
}

.faq__question {
  min-height: 52px;
  padding: var(--r-space-4-5) 52px var(--r-space-4-5) var(--r-space-4-5);
  line-height: 1.45;
  font-size: 15px;
}

.faq__icon {
  right: 18px;
  width: 12px;
  height: 12px;
}

.faq__answer p {
  font-size: 14px;
  padding: 0 var(--r-space-4-5) var(--r-space-4-5);
}

@media (max-width: 430px) {
  .faq__subtitle {
    font-size: 14px;
    margin-bottom: 32px;
    padding: 0 8px;
  }

  .faq__list {
    gap: var(--r-space-3);
    padding: 0;
  }

  .faq__question {
    min-height: 48px;
    padding: var(--r-space-4) 44px var(--r-space-4) var(--r-space-4);
    font-size: 14px;
    line-height: 1.4;
  }

  .faq__icon {
    right: 14px;
    width: 11px;
    height: 11px;
  }

  .faq__answer p {
    font-size: 13px;
    line-height: 1.6;
    padding: 0 var(--r-space-4) var(--r-space-4);
  }
}

@media (hover: none) {
  .faq__item:hover {
    transform: none;
    box-shadow: none;
  }

  .faq__question:active {
    background: rgba(255, 255, 255, 0.05);
  }
}

@media (min-width: 768px) {
  .faq__subtitle {
    font-size: inherit;
    margin: 0 auto var(--space-10);
    padding: 0;
  }

  .faq__list {
    gap: var(--space-5);
    padding: 0;
  }

  .faq__item {
    border-radius: var(--radius-main);
  }

  .faq__item--featured::after {
    display: block;
  }

  .faq__question {
    padding: var(--space-5) var(--space-11) var(--space-5) var(--space-6);
    font-size: 16px;
  }

  .faq__icon {
    right: var(--space-6);
    width: 14px;
    height: 14px;
  }

  .faq__answer p {
    padding: var(--space-5) var(--space-6);
  }
}

/* Source: assets/css/responsive/sections/contact.css */
.contact .contact__layout {
  display: flex;
  flex-direction: column;
  gap: var(--r-space-4);
}

.services-page-hero.section,
.portfolio-page-hero.section {
  --section-pt-sm: calc(var(--header-h, 72px) + 14px);
  --section-pb-sm: var(--space-8);
}

.contact__form {
  order: 1;
}

.contact__info {
  order: 2;
}

.contact__map-block {
  margin-top: var(--r-space-4);
}

.contact-map {
  padding: var(--r-space-4-5);
  border-radius: var(--r-radius-md);
}

.contact-map h2 {
  font-size: clamp(1.375rem, 4.2vw, 1.75rem);
}

.contact-map__canvas {
  min-height: 280px;
}

.contact-map__result {
  font-size: 12px;
}

.contact-map__selected {
  font-size: 12px;
}

.contact-map__actions {
  flex-direction: column;
}

.contact-map__cta {
  width: 100%;
  min-width: 0;
}

.contact__info,
.contact__form,
.services-page-hero__inner,
.portfolio-page-hero__inner {
  padding: var(--r-space-4-5);
  border-radius: var(--r-radius-md);
}

.contact__value--strong {
  font-size: 16px;
}

.contact__item--email .contact__value--strong {
  font-size: 14px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact__areas {
  gap: var(--r-space-1-5);
}

.contact__areas li {
  font-size: 12px;
  padding: 5px 8px;
}

.contact__form input:not([type="checkbox"]),
.contact__form textarea,
.contact__form select {
  min-height: 48px;
}

.contact__form textarea {
  min-height: 120px;
}

.contact__next,
.contact__trust-row,
.contact__note {
  display: none;
}

.services-page-hero__actions,
.portfolio-page-hero__actions,
.portfolio__conversion-actions {
  flex-direction: column;
  align-items: flex-start;
}

.services-page-hero__actions .btn,
.portfolio-page-hero__actions .btn,
.portfolio__conversion-actions .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .contact__info,
  .contact__form,
  .services-page-hero__inner,
  .portfolio-page-hero__inner {
    padding: 24px;
  }

  .contact-map {
    padding: 24px;
  }

  .contact-map__canvas {
    min-height: 300px;
  }
}

@media (min-width: 768px) {
  .services-page-hero.section,
  .portfolio-page-hero.section {
    --section-pt-lg: calc(var(--header-h, 76px) + 18px);
    --section-pb-lg: var(--space-10);
  }

  .contact__layout {
    gap: var(--r-space-5-5);
  }

  .contact__info,
  .contact__form {
    padding: 24px;
  }

  .services-page-hero__actions,
  .portfolio-page-hero__actions,
  .portfolio__conversion-actions {
    flex-direction: row;
    align-items: center;
  }

  .services-page-hero__actions .btn,
  .portfolio-page-hero__actions .btn,
  .portfolio__conversion-actions .btn {
    width: auto;
  }

  .contact__next,
  .contact__note {
    display: block;
  }

  .contact__trust-row {
    display: flex;
  }

  .contact__map-block {
    margin-top: var(--r-space-5-5);
  }

  .contact-map__canvas {
    min-height: 330px;
  }

  .contact-map__result {
    font-size: 13px;
  }

  .contact-map__actions {
    flex-direction: row;
  }

  .contact-map__cta {
    width: auto;
    min-width: 220px;
  }
}

@media (min-width: 1024px) {
  .services-page-hero.section,
  .portfolio-page-hero.section {
    --section-pt-lg: calc(var(--header-h, 92px) + 24px);
    --section-pb-lg: var(--space-11);
  }

  .contact .contact__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: var(--r-space-7);
  }

  .contact__form,
  .contact__info {
    order: initial;
  }

  .contact__info,
  .contact__form {
    padding: 32px;
    border-radius: var(--radius-main);
  }

  .contact__map-block {
    margin-top: var(--r-space-7);
  }

  .contact-map {
    padding: 32px;
    border-radius: var(--radius-main);
  }

  .contact-map__canvas {
    min-height: 360px;
  }

  .contact__value--strong {
    font-size: 18px;
  }

  .contact__item--email .contact__value--strong {
    font-size: 16px;
  }

  .services-page-hero__inner,
  .portfolio-page-hero__inner {
    padding: var(--space-7);
  }
}

/* Source: assets/css/responsive/header.css */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  padding-top: var(--safe-top);
  backdrop-filter: blur(10px);
}

.header__inner {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 64px;
  column-gap: var(--r-space-2);
}

.logo {
  width: 58px;
  height: 58px;
}

.logo img {
  width: 48px;
  height: 48px;
}

.header__contact {
  justify-self: end;
}

.nav--desktop {
  display: none;
}

.nav--mobile {
  display: none;
  visibility: hidden;
  pointer-events: none;
}

.nav--mobile.active {
  display: flex;
  visibility: visible;
  pointer-events: auto;
}

.burger {
  width: 42px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  gap: 5px;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
}

.header__phone {
  align-items: flex-end;
  justify-content: center;
  min-height: 44px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-radius-sm);
  background: rgba(0, 0, 0, 0.45);
}

.header__contact .phone-number {
  font-size: var(--r-text-xs);
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}

.header__contact .phone-hours {
  display: none;
  font-size: 12px;
  opacity: 0.64;
}

@media (max-width: 360px) {
  .header__inner {
    min-height: 62px;
    column-gap: var(--r-space-1-5, 6px);
  }

  .logo {
    width: 54px;
    height: 54px;
  }

  .logo img {
    width: 44px;
    height: 44px;
  }

  .header__phone {
    padding: 6px 9px;
  }

  .header__contact .phone-number {
    font-size: 12px;
  }
}

@media (min-width: 480px) {
  .header__inner {
    min-height: 68px;
    column-gap: var(--r-space-3);
  }

  .logo {
    width: 62px;
    height: 62px;
  }

  .logo img {
    width: 52px;
    height: 52px;
  }
}

@media (min-width: 768px) {
  .header__inner {
    min-height: 72px;
  }

  .header__contact .phone-number {
    font-size: var(--r-text-sm);
  }

  .header__contact .phone-hours {
    display: block;
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .header {
    position: fixed;
    inset: 0 0 auto 0;
    padding-top: 0;
    backdrop-filter: none;
  }

  .header__inner {
    grid-template-columns: auto 1fr auto auto;
    column-gap: 24px;
    min-height: 0;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .logo img {
    width: 90px;
    height: 90px;
  }

  .header__phone {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav--desktop {
    display: block;
  }

  .nav--mobile,
  .nav--mobile.active {
    display: none;
    visibility: hidden;
    pointer-events: none;
  }

  .header__contact .phone-number {
    font-size: 15px;
  }

  .header__contact .phone-hours {
    font-size: 12px;
  }
}

@media (min-width: 1280px) {
  .header__inner {
    column-gap: 32px;
  }

  .nav--desktop ul {
    gap: 32px;
  }

  .nav a {
    font-size: 15px;
    padding: 10px 14px;
  }
}

/* Source: assets/css/responsive/hero.css */
/* hero-layout */
:where(.hero, .hero-layout) {
  background: url("../images/hero-poster-mobile.jpg") center / cover no-repeat;
  height: auto;
  min-height: 0;
  overflow: visible;
}

@media (min-width: 768px) {
  :where(.hero, .hero-layout) {
    background-image: url("../images/hero-poster.jpg");
  }
}

:where(.hero__inner, .hero-layout .hero__inner) {
  position: relative;
  z-index: 2;
  height: auto;
  min-height: auto;
  align-items: flex-start;
  padding: calc(var(--header-h, 72px) + 12px + var(--safe-top)) 0 30px;
  overflow: visible;
}

/* hero-media */
:where(.hero__video, .hero-media .hero__video) {
  display: none;
}

:where(.hero, .hero-media.hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(6px) brightness(0.92);
  transform: scale(1.04);
  z-index: 0;
}

:where(.hero__overlay, .hero-media .hero__overlay) {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.78));
}

/* hero-content */
:where(.hero__content, .hero-content) {
  max-width: min(94vw, 520px);
  margin-inline: auto;
  gap: var(--r-space-3);
  position: static;
  transform: none;
  overflow: visible;
}

:where(.hero__content, .hero-content) > h1 {
  font-size: clamp(32px, 8.8vw, 40px);
  font-weight: 700;
  line-height: 1.14;
  max-width: 14.5ch;
}

.hero__title-short {
  display: inline;
}

.hero__title-full {
  display: none;
}

:where(.hero__subtitle, .hero-content .hero__subtitle) {
  max-width: 34ch;
  font-size: 16px;
  line-height: 1.45;
  padding-left: 12px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

:where(.hero__benefits, .hero-content .hero__benefits) {
  max-width: 34ch;
  gap: var(--r-space-2);
}

:where(.hero__benefits li, .hero-content .hero__benefits li) {
  font-size: 15px;
  line-height: 1.45;
  padding-left: 24px;
}

:where(.hero__actions, .hero-content .hero__actions) {
  flex-direction: column;
  align-items: stretch;
  gap: var(--r-space-2-5);
}

:where(.hero__actions .btn, .hero-content .hero__actions .btn) {
  width: 100%;
}

:where(.hero__trust-list, .hero-content .hero__trust-list) {
  display: grid;
  max-width: 34ch;
  gap: var(--r-space-2);
  font-size: 15px;
  margin-top: 6px;
}

:where(.hero__trust-list li, .hero-content .hero__trust-list li) {
  display: block;
  line-height: 1.42;
}

:where(.hero__trust-list li span, .hero-content .hero__trust-list li span) {
  display: block;
  margin-left: 0;
  opacity: 0.78;
  font-size: 0.92em;
}

@media (max-width: 430px) {
  :where(.hero__inner, .hero-layout .hero__inner) {
    padding-top: calc(var(--header-h, 72px) + 10px + var(--safe-top));
    padding-bottom: 22px;
  }

  :where(.hero__content, .hero-content) {
    max-width: min(95vw, 440px);
    gap: var(--r-space-2-5);
  }

  :where(.hero__content, .hero-content) > h1 {
    font-size: clamp(30px, 8.6vw, 36px);
    max-width: 14ch;
    line-height: 1.12;
  }

  :where(.hero__subtitle, .hero-content .hero__subtitle) {
    max-width: 32ch;
    font-size: 15px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
  }

  :where(.hero__benefits, .hero-content .hero__benefits),
  :where(.hero__trust-list, .hero-content .hero__trust-list) {
    max-width: 32ch;
  }
}

@media (max-width: 767.98px) {
  .hero__bg::before,
  .hero-effects .hero__bg::before {
    animation: none;
    transform: none;
    filter: none;
  }
}

@media (max-width: 360px) {
  :where(.hero__content, .hero-content) > h1 {
    font-size: clamp(28px, 9.4vw, 33px);
    max-width: 13.4ch;
  }

  :where(.hero__subtitle, .hero-content .hero__subtitle) {
    max-width: 30ch;
    font-size: 14px;
  }

  :where(.hero__benefits li, .hero-content .hero__benefits li) {
    font-size: 14px;
  }

  :where(.hero__trust-list, .hero-content .hero__trust-list) {
    font-size: 14px;
  }
}

/* hero-effects */
:where(.hero-effects .hero__bg::before) {
  animation: inherit;
}

@media (max-width: 1023.98px) {
  .hero__tiles,
  .hero-effects .hero__tiles {
    display: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  .hero__bg::before,
  .hero-effects .hero__bg::before {
    animation: none;
    transform: none;
    filter: none;
  }

  .hero__bg .grid-spark,
  .hero__tiles,
  .hero-effects .hero__bg .grid-spark,
  .hero-effects .hero__tiles {
    animation: none;
    display: none;
  }
}

@media (min-width: 480px) {
  :where(.hero__inner, .hero-layout .hero__inner) {
    padding-top: calc(var(--header-h, 72px) + 16px + var(--safe-top));
  }

  :where(.hero__content, .hero-content) > h1 {
    font-size: clamp(34px, 7vw, 44px);
    max-width: 19ch;
  }

  :where(.hero__subtitle, .hero__benefits, .hero__trust-list, .hero-content .hero__subtitle, .hero-content .hero__benefits, .hero-content .hero__trust-list) {
    max-width: 40ch;
  }

  :where(.hero__trust-list li span, .hero-content .hero__trust-list li span) {
    display: inline;
    margin-left: 4px;
  }
}

@media (min-width: 768px) {
  :where(.hero, .hero-layout) {
    padding: 0 0 40px;
  }

  :where(.hero__inner, .hero-layout .hero__inner) {
    padding: calc(var(--header-h, 84px) + 20px) 0 48px;
  }

  :where(.hero__content, .hero-content) {
    max-width: min(92vw, 760px);
    margin-inline: auto;
    gap: 18px;
  }

  :where(.hero__content, .hero-content) > h1 {
    font-size: clamp(38px, 5vw, 50px);
    line-height: 1.14;
    max-width: 23ch;
  }

  :where(.hero__subtitle, .hero-content .hero__subtitle) {
    max-width: 58ch;
    font-size: var(--r-text-md);
    line-height: 1.62;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
    overflow: visible;
  }

  :where(.hero__benefits, .hero-content .hero__benefits) {
    max-width: 58ch;
    gap: var(--r-space-3);
  }

  :where(.hero__actions, .hero-content .hero__actions) {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--r-space-3);
  }

  :where(.hero__actions .btn, .hero-content .hero__actions .btn) {
    width: auto;
  }

  :where(.hero__trust-list, .hero-content .hero__trust-list) {
    max-width: 58ch;
    font-size: 15px;
    margin-top: 10px;
  }

  :where(.hero__trust-list li span, .hero-content .hero__trust-list li span) {
    opacity: 0.82;
  }

  .hero__title-short {
    display: none;
  }

  .hero__title-full {
    display: inline;
  }
}

@media (min-width: 1024px) {
  :where(.hero, .hero-layout) {
    background: none;
  }

  :where(.hero, .hero-media.hero)::before {
    content: none;
  }

  :where(.hero__video, .hero-media .hero__video) {
    display: block;
  }

  .hero__tiles,
  .hero-effects .hero__tiles {
    display: grid;
  }

  :where(.hero__inner, .hero-layout .hero__inner) {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: flex-start;
    padding: calc(var(--header-h, 92px) + 20px) 0 96px;
  }

  :where(.hero__content, .hero-content) {
    max-width: min(94vw, 980px);
    margin-inline: 0;
    gap: 28px;
  }

  :where(.hero__content, .hero-content) > h1 {
    font-size: clamp(42px, 4vw, 62px);
    max-width: 19.5ch;
  }

  :where(.hero__subtitle, .hero-content .hero__subtitle) {
    max-width: 62ch;
    margin-bottom: 8px;
  }

  :where(.hero__benefits, .hero-content .hero__benefits) {
    gap: var(--r-space-3);
  }

  :where(.hero__actions, .hero-content .hero__actions) {
    gap: var(--r-space-4);
  }

  :where(.hero__trust-list, .hero-content .hero__trust-list) {
    display: flex;
    flex-wrap: wrap;
    max-width: none;
    gap: 12px 24px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  :where(.hero__trust-list li, .hero-content .hero__trust-list li) {
    display: flex;
  }

  :where(.hero__trust-list li span, .hero-content .hero__trust-list li span) {
    margin-left: 0;
    opacity: 1;
  }
}

@media (min-width: 1280px) {
  :where(.hero__inner, .hero-layout .hero__inner) {
    align-items: flex-start;
    padding: calc(var(--header-h, 92px) + 16px) 0 96px;
  }

  :where(.hero__content, .hero-content) {
    max-width: min(90ch, 100%);
    margin-top: 0;
    gap: 30px;
  }

  :where(.hero__content, .hero-content) > h1 {
    font-size: clamp(46px, 3.6vw, 62px);
    max-width: 26ch;
  }
}

/* Source: assets/css/responsive/footer.css */
.footer {
  padding: var(--space-10) 0 var(--space-8);
}

.footer__grid {
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.footer__brand p {
  max-width: none;
}

.footer__contact {
  gap: var(--r-space-2-5);
}

.footer__contact::before {
  margin-bottom: 8px;
}

.footer__contact a {
  padding: var(--r-space-2-5) var(--r-space-3);
  border-radius: var(--r-radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__value {
  overflow-wrap: anywhere;
}

.footer__cta {
  grid-column: auto;
  justify-content: flex-start;
}

.footer__cta-card {
  max-width: none;
  padding: var(--r-space-4-5);
}

.footer__seo {
  display: none;
}

.footer__bottom {
  display: grid;
  gap: var(--r-space-1-5);
  margin-top: var(--space-8);
  text-align: left;
}

.footer__contact a:not(.footer__phone):not([href^="mailto:"]) {
  display: none;
}

@media (max-width: 767.98px) {
  .footer {
    padding: var(--space-8) 0 var(--space-7);
  }

  .footer__grid {
    gap: var(--r-space-5);
  }

  .footer__brand {
    padding: var(--r-space-4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  }

  .footer__brand-head {
    margin-bottom: var(--r-space-2);
    gap: var(--r-space-2-5);
  }

  .footer__brand strong {
    font-size: 18px;
  }

  .footer__brand p {
    margin-top: var(--r-space-2);
    line-height: 1.55;
  }

  .footer__why {
    margin-top: var(--r-space-1-5);
    font-size: 12px;
    opacity: 0.88;
  }

  .footer__contact {
    gap: 0;
  }

  .footer__contact::before {
    display: none;
  }

  .footer__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 56px;
    border-radius: var(--r-radius-md);
    border: 1px solid rgba(245, 197, 66, 0.34);
    background: rgba(12, 12, 12, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .footer__phone .footer__label {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .footer__phone .footer__value {
    font-size: 18px;
    line-height: 1.2;
  }

  .footer__cta-card {
    padding: var(--r-space-4);
    border-radius: var(--r-radius-md);
  }

  .footer__cta-card p {
    margin-bottom: var(--r-space-2-5);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }

  .footer__contact a[href^="mailto:"] {
    margin-top: var(--r-space-2);
    justify-content: center;
    text-align: center;
    min-height: 48px;
  }

  .footer__contact a[href^="mailto:"] .footer__label {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .footer__contact a[href^="mailto:"] .footer__value {
    font-size: 14px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .footer__cta .btn {
    min-height: 46px;
  }

  .footer__bottom {
    margin-top: var(--space-7);
    text-align: center;
    justify-items: center;
  }
}

.mobile-sticky-cta {
  position: fixed;
  left: auto;
  right: calc(12px + env(safe-area-inset-right, 0px));
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 1100;
  display: none;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
}

.mobile-sticky-cta__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.86);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-sticky-cta__toggle:active {
  transform: translateY(1px);
}

@media (hover: hover) {
  .mobile-sticky-cta__toggle:hover {
    border-color: rgba(245, 197, 66, 0.5);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
  }
}

.mobile-sticky-cta__toggle::after {
  content: " +";
  color: rgba(245, 197, 66, 0.95);
  display: inline-block;
  transition: transform 0.2s ease;
}

.mobile-sticky-cta.is-open .mobile-sticky-cta__toggle::after {
  transform: rotate(45deg);
}

.mobile-sticky-cta__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: min(280px, calc(100vw - 24px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
  display: grid;
  gap: var(--r-space-2);
  padding: var(--r-space-2-5);
  border-radius: var(--r-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.52);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-sticky-cta.is-open .mobile-sticky-cta__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mobile-sticky-cta .btn {
  width: 100%;
  max-width: none;
  min-height: 44px;
  padding-inline: 12px;
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .mobile-sticky-cta:not([hidden]) {
    display: block;
  }
}

.mobile-sticky-cta[hidden] {
  display: none;
}

@media (max-width: 430px) {
  .mobile-sticky-cta {
    right: calc(10px + env(safe-area-inset-right, 0px));
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-sticky-cta__toggle {
    min-height: 44px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .mobile-sticky-cta__panel {
    width: min(260px, calc(100vw - 20px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
    border-radius: var(--r-radius-xs);
    padding: 8px;
  }

  .mobile-sticky-cta .btn {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .mobile-sticky-cta {
    right: calc(8px + env(safe-area-inset-right, 0px));
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-sticky-cta__panel {
    width: min(240px, calc(100vw - 16px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
  }

  .mobile-sticky-cta .btn {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .footer {
    padding: var(--space-10) 0 var(--space-7);
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: var(--r-space-4-5);
  }

  .footer__cta {
    grid-column: 1 / -1;
  }

  .footer__cta-card {
    max-width: 420px;
  }

  .footer__bottom {
    text-align: center;
  }

  .footer__contact a:not(.footer__phone) {
    display: flex;
  }

  .mobile-sticky-cta .btn {
    min-height: 44px;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: var(--space-12) 0 var(--space-9);
  }

  .footer__grid {
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: var(--space-9);
    align-items: flex-start;
  }

  .footer__cta {
    grid-column: auto;
    justify-content: flex-end;
  }

  .footer__cta-card {
    max-width: 320px;
  }

  .footer__seo {
    display: block;
  }

  .footer__contact a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

/* Source: assets/css/responsive/pages/home.css */
/* Home page composition without page-wrapper coupling */
.services.section {
  --section-pt-sm: var(--space-section-sm);
  --section-pb-sm: var(--space-section-sm);
}

.services--specialty.section {
  --section-pt-sm: var(--space-section-sm);
  --section-pb-sm: var(--space-section-sm);
}

.portfolio.section,
.reviews.section,
.faq.section,
.contact.section,
.cta.section {
  --section-pt-sm: var(--space-section-sm);
  --section-pb-sm: var(--space-section-sm);
}

.portfolio.section {
  --section-pt-sm: var(--space-section-sm);
}

@media (min-width: 480px) {
  .services.section,
  .services--specialty.section,
  .portfolio.section,
  .reviews.section,
  .faq.section,
  .contact.section,
  .cta.section {
    --section-pt-md: var(--space-section-md);
    --section-pb-md: var(--space-section-md);
  }
}

@media (min-width: 768px) {
  .services.section,
  .services--specialty.section,
  .portfolio.section,
  .reviews.section,
  .faq.section,
  .contact.section,
  .cta.section {
    --section-pt-lg: var(--space-section-lg);
    --section-pb-lg: var(--space-section-lg);
  }
}

@media (min-width: 1024px) {
  .services.section {
    --section-pt-lg: var(--space-13);
    --section-pb-lg: var(--space-11);
  }

  .services--specialty.section {
    --section-pt-lg: var(--space-11);
    --section-pb-lg: var(--space-14);
  }

  .portfolio.section {
    --section-pt-lg: var(--space-14);
    --section-pb-lg: var(--space-12);
  }

  .cta.section,
  .reviews.section {
    --section-pt-lg: var(--space-13);
    --section-pb-lg: var(--space-13);
  }

  .faq.section {
    --section-pt-lg: var(--space-14);
    --section-pb-lg: var(--space-13);
  }

  .contact.section {
    --section-pt-lg: var(--space-11);
    --section-pb-lg: var(--space-15);
  }
}

/* Source: assets/css/responsive/pages/privacy.css */
.page-privacy .container {
  padding-inline: var(--container-inline);
}

.privacy-page {
  padding-top: calc(var(--header-h, 72px) + 8px);
  padding-bottom: 44px;
}

.privacy-content__grid {
  grid-template-columns: 1fr;
  gap: var(--r-space-3);
}

.privacy-hero h1 {
  font-size: clamp(26px, 6vw, 32px);
}

.privacy-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
}

.privacy-hero__updated {
  margin: 8px 0 12px;
  font-size: 13px;
}

.privacy-hero__panel,
.privacy-card {
  padding: var(--r-space-4);
  border-radius: var(--r-radius-md);
}

.privacy-card h2 {
  font-size: clamp(21px, 5vw, 26px);
}

.page-privacy .cookie-notice__text {
  font-size: 0.88rem;
}

.page-privacy .cookie-notice {
  left: calc(12px + var(--safe-left));
  right: calc(12px + var(--safe-right));
  bottom: calc(12px + var(--safe-bottom));
}

@media (min-width: 768px) {
  .privacy-page {
    padding-top: calc(var(--header-h, 72px) + 12px);
    padding-bottom: 64px;
  }

  .privacy-hero__panel,
  .privacy-card {
    padding: var(--r-space-5);
    border-radius: var(--r-radius-lg);
  }

  .privacy-hero h1 {
    line-height: 1.15;
  }

  .privacy-hero__updated {
    font-size: 14px;
  }

  .privacy-hero__lead,
  .privacy-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .privacy-content {
    padding-top: 18px;
  }

  .privacy-card h2 {
    line-height: 1.25;
  }

  .privacy-contact a,
  .privacy-card p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (min-width: 1024px) {
  .privacy-content__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--r-space-3-5);
  }

  .privacy-page {
    padding-bottom: 72px;
  }
}

/* Source: assets/css/responsive/pages/portfolio.css */
.page-portfolio .portfolio__grid {
  grid-template-columns: 1fr;
}

.page-portfolio .portfolio__item--featured {
  grid-column: auto;
  grid-row: auto;
}

.portfolio__conversion-actions {
  flex-direction: column;
  align-items: flex-start;
}

.portfolio__conversion-actions .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .page-portfolio .portfolio__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-portfolio .portfolio__item--featured {
    grid-column: span 2;
    grid-row: 1;
  }

  .portfolio__conversion-actions {
    flex-direction: row;
    align-items: center;
  }

  .portfolio__conversion-actions .btn {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .page-portfolio .portfolio__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-portfolio .portfolio__item--featured {
    grid-column: span 2;
  }
}
