/* ========================================
   0. CSS Custom Properties
   ======================================== */
:root {
  /* Colors */
  --color-bg: #FAFAF8;
  --color-surface: #FFFFFF;
  --color-surface-warm: #F5F2ED;
  --color-text: #1A1A1A;
  --color-text-muted: #6B6B6B;
  --color-accent: #C9A84C;
  --color-accent-dark: #A8872E;
  --color-accent-light: rgba(201, 168, 76, 0.10);
  --color-dark: #2C2C2C;
  --color-border: #E8E4DF;
  --color-overlay: rgba(255, 255, 255, 0.65);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.20);

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;

  /* Layout */
  --header-height: 80px;
  --container-max: 1200px;
}


/* ========================================
   1. Reset / Base
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}


/* ========================================
   2. Utilities
   ======================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--color-accent);
  color: #fff;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 700;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: var(--space-xs);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.section-header__sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-top: var(--space-sm);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  padding: 0.875rem 2rem;
  background: var(--color-accent);
  color: #FFFFFF;
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--lg {
  padding: 1rem 2.75rem;
  font-size: 0.95rem;
}

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

/* Placeholder images */
.placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: inherit;
}

.placeholder-img--fire {
  background: linear-gradient(135deg, #E8C89A 0%, #D4A55A 40%, #C98A3C 100%);
}

.placeholder-img--knight {
  background: linear-gradient(135deg, #A8B4C0 0%, #7A8B9C 40%, #5C6F80 100%);
}

.placeholder-img--laser {
  background: linear-gradient(135deg, #7AAFCF 0%, #4A8DB5 40%, #2D6E9B 100%);
}

.placeholder-img--trust {
  background: linear-gradient(135deg, #B5C8A0 0%, #8BAA6D 40%, #6E9050 100%);
}

.placeholder-img--gallery-1 {
  background: linear-gradient(135deg, #E2CDA5 0%, #C4A46D 100%);
}

.placeholder-img--gallery-2 {
  background: linear-gradient(135deg, #B0C4D8 0%, #7A9CB8 100%);
}

.placeholder-img--gallery-3 {
  background: linear-gradient(135deg, #D8C0B0 0%, #B89A80 100%);
}

.placeholder-img--gallery-4 {
  background: linear-gradient(135deg, #C5D4B0 0%, #9AB87A 100%);
}

.placeholder-img--gallery-5 {
  background: linear-gradient(135deg, #D0B8D0 0%, #A890A8 100%);
}

.placeholder-img--gallery-6 {
  background: linear-gradient(135deg, #C8D8E0 0%, #90B0C0 100%);
}


/* ========================================
   3. Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: var(--transition);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.header__logo {
  position: relative;
  display: block;
  width: 160px;
  height: 40px;
}

.header__logo img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 36px;
  width: auto;
  transition: opacity 0.3s ease;
}

.header__logo .logo-scrolled {
  opacity: 0;
}

.header--scrolled .header__logo .logo-default {
  opacity: 0;
}

.header--scrolled .header__logo .logo-scrolled {
  opacity: 1;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  gap: var(--space-lg);
}

.header__nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  position: relative;
  padding: var(--space-xs) 0;
  transition: var(--transition-fast);
}

.header--scrolled .header__nav-list a {
  color: var(--color-text);
  text-shadow: none;
}

.header__nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}

.header__nav-list a:hover::after,
.header__nav-list a.active::after {
  width: 100%;
}

.header__cta {
  font-size: 0.8rem;
  padding: 0.625rem 1.5rem;
}

/* Mobile CTA — hidden on desktop */
.header__nav-cta {
  display: none;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: var(--transition);
  border-radius: 2px;
}

.header--scrolled .header__hamburger span {
  background: var(--color-text);
}

.header__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.is-visible {
  display: block;
  opacity: 1;
}


/* ========================================
   4. Hero
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__columns {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
}

.hero__col {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero__col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #111;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: var(--space-lg);
}

.hero__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: var(--space-md);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-text-muted);
  animation: heroScroll 2s ease-in-out infinite;
}

@keyframes heroScroll {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}


/* ========================================
   5. Services
   ======================================== */
.services {
  padding: var(--space-3xl) 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card__image .placeholder-img,
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image .placeholder-img,
.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__content {
  padding: var(--space-md);
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}


/* ========================================
   6. Trust
   ======================================== */
.trust {
  padding: var(--space-3xl) 0;
  background: var(--color-surface-warm);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.trust__item {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
}

.trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.trust__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.trust__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}


/* ========================================
   7. Gallery
   ======================================== */
.gallery {
  padding: var(--space-3xl) 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: var(--space-sm);
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item .placeholder-img,
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery__item:hover .placeholder-img,
.gallery__item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}


/* ========================================
   8. Testimonials
   ======================================== */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--color-surface-warm);
}

.testimonials__slider {
  padding-bottom: var(--space-2xl);
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.25;
  position: absolute;
  top: var(--space-sm);
  left: var(--space-md);
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-top: var(--space-lg);
  flex: 1;
}

.testimonial-card__author {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.testimonial-card__name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}

.testimonial-card__role {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Swiper overrides */
.testimonials .swiper-pagination {
  user-select: none;
  -webkit-user-select: none;
}

.testimonials .swiper-pagination-bullet {
  background: var(--color-border);
  opacity: 1;
  width: 10px;
  height: 10px;
  outline: none;
  caret-color: transparent;
  transition: var(--transition-fast);
}

.testimonials .swiper-pagination-bullet-active {
  background: var(--color-accent);
  width: 28px;
  border-radius: 5px;
}


/* ========================================
   9. FAQ
   ======================================== */
.faq {
  padding: var(--space-3xl) 0;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text);
  transition: var(--transition-fast);
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  display: none;
  content: '';
}

.faq__question:hover {
  color: var(--color-accent-dark);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq__answer {
  padding: 0 0 var(--space-md) 0;
}

.faq__answer p {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq__answer a {
  color: var(--color-accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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


/* ========================================
   10. Final CTA
   ======================================== */
.cta-final {
  padding: var(--space-3xl) 0;
  background: var(--color-surface-warm);
}

.cta-final__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-final__inner h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.cta-final__text {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.cta-final__email {
  margin-top: var(--space-md);
  font-size: 0.95rem;
}

.cta-final__email a {
  color: var(--color-accent-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-final__email a:hover {
  color: var(--color-accent);
}


/* ========================================
   11. Footer
   ======================================== */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2xl) 0;
}

.footer__inner {
  text-align: center;
}

.footer__logo {
  height: 28px;
  width: auto;
  margin: 0 auto var(--space-lg);
  opacity: 0.8;
  filter: brightness(0) invert(1);
}

.footer__content {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.footer__contact,
.footer__rekvizitai {
  text-align: center;
}

.footer__company {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xs);
}

.footer__email,
.footer__phone {
  margin-bottom: 0.25rem;
}

.footer__email a,
.footer__phone a {
  color: var(--color-accent);
  font-size: 0.9rem;
}

.footer__email a:hover,
.footer__phone a:hover {
  color: #e0c66e;
}

.footer__rekvizitai p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer__rekvizitai strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.footer__copy {
  font-size: 0.75rem;
  opacity: 0.5;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* ========================================
   12. Lightbox
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}


/* ========================================
   13. Responsive: Tablet (max-width: 1199px)
   ======================================== */
@media (max-width: 1199px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery__grid {
    grid-auto-rows: 180px;
  }
}


/* ========================================
   14. Responsive: Mobile (max-width: 767px)
   ======================================== */
@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --space-3xl: 4rem;
    --space-2xl: 3rem;
    --space-xl: 2.25rem;
    --space-lg: 1.5rem;
    --space-md: 1.125rem;
    --space-sm: 0.875rem;
  }

  /* Header mobile */
  .header {
    padding: var(--space-sm) 0;
  }

  .header__hamburger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-lg) var(--space-lg);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
  }

  .header__nav.is-open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 0;
  }

  .header__nav-list a {
    display: block;
    padding: var(--space-md) 0;
    font-size: 1.15rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-text);
  }

  .header__nav-list a::after {
    display: none;
  }

  /* Mobile CTA in nav */
  .header__nav .header__nav-cta {
    display: block;
    margin-top: var(--space-lg);
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-accent);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
  }

  .header__nav .header__nav-cta:hover {
    background: var(--color-accent-dark);
  }

  /* Hero mobile */
  .hero {
    min-height: 100vh;
  }

  .hero__columns {
    flex-wrap: wrap;
  }

  .hero__col {
    flex: 0 0 50%;
    height: 50%;
  }

  .hero__content {
    padding: var(--space-md);
    margin: auto 0;
  }

  .hero__label {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: var(--space-sm);
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: var(--space-md);
  }

  .hero__scroll {
    display: none;
  }

  /* Sections */
  .services,
  .trust,
  .gallery,
  .testimonials,
  .faq,
  .cta-final {
    padding: var(--space-2xl) 0;
  }

  .section-header {
    margin-bottom: var(--space-lg);
  }

  /* Services mobile */
  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Trust mobile */
  .trust__grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .trust__item {
    padding: var(--space-md) var(--space-sm);
  }

  /* Gallery mobile */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: var(--space-xs);
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  /* FAQ mobile */
  .faq__question {
    font-size: 0.925rem;
  }

  /* CTA mobile */
  .cta-final__inner h2 {
    font-size: 1.75rem;
  }

  .cta-final .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Footer mobile */
  .footer__content {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* Very small screens */
@media (max-width: 400px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   15. Prefers Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .hero__scroll {
    animation: none;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}