/* ============================================
   PLASTER ME — Styles
   Brand: #D0021B (red), #FFFFFF (white)
   Fonts: Bebas Neue (display), DM Sans (body)
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #D0021B;
  --red-dark: #A80116;
  --white: #FFFFFF;
  --off-white: #F7F7F7;
  --grey-100: #EEEEEE;
  --grey-200: #D4D4D4;
  --grey-600: #6B6B6B;
  --grey-800: #2A2A2A;
  --grey-900: #1A1A1A;
  --black: #111111;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --header-h: 72px;
  --transition: 0.15s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.text-red { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(208, 2, 27, 0.15);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 16px rgba(208, 2, 27, 0.25);
}

.btn-full { width: 100%; }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--grey-900);
  margin-bottom: 20px;
}

.section-desc {
  color: var(--grey-600);
  font-size: 1.05rem;
  max-width: 540px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for child elements */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.45s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.6s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.75s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.9s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 1.05s; }
.reveal-stagger > *:nth-child(9) { transition-delay: 1.2s; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- NAVIGATION --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--grey-100);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  color: var(--grey-800);
}

.nav-links a:hover {
  color: var(--red);
  background: rgba(208, 2, 27, 0.06);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  border-radius: 10px !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--grey-900);
  border-radius: 0;
  transition: var(--transition);
  transform-origin: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 8s ease-in-out forwards;
}

@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.92) 0%,
    rgba(17, 17, 17, 0.75) 50%,
    rgba(17, 17, 17, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  position: relative;
  padding-left: 48px;
}

.hero-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 2px;
  background: var(--red);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--grey-200);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-diagonal {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

/* --- ABOUT --- */
.about {
  padding: 80px 0 100px;
  background: var(--white);
}

.about-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--off-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--grey-100);
}

.about-card-text {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card-text p {
  color: var(--grey-600);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-card-text p:last-of-type {
  margin-bottom: 28px;
}

.about-ticks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 28px;
  list-style: none;
}

.about-ticks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grey-900);
}

.about-ticks svg {
  flex-shrink: 0;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 0.82rem;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.about-card-image {
  position: relative;
  min-height: 400px;
}

.about-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- SERVICES --- */
.services {
  padding: 80px 0 100px;
  background: var(--grey-800);
}

.services .section-title {
  color: var(--white);
}

.services .section-desc {
  color: var(--grey-200);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2), 0 0 14px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

@media (hover: hover) {
  .service-card:hover {
    border-color: var(--red);
    box-shadow: 0 10px 40px rgba(208, 2, 27, 0.3), 0 0 20px rgba(208, 2, 27, 0.15);
  }
}

.service-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(208, 2, 27, 0.18), rgba(208, 2, 27, 0.08));
  border-radius: 12px;
  color: var(--red);
  box-shadow: 0 2px 8px rgba(208, 2, 27, 0.1);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--grey-900);
  margin-bottom: 4px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--grey-600);
  line-height: 1.5;
}

.services-grid > *:nth-child(1) { transition-delay: 0s; }
.services-grid > *:nth-child(2) { transition-delay: 0.06s; }
.services-grid > *:nth-child(3) { transition-delay: 0.12s; }
.services-grid > *:nth-child(4) { transition-delay: 0.18s; }
.services-grid > *:nth-child(5) { transition-delay: 0.24s; }
.services-grid > *:nth-child(6) { transition-delay: 0.3s; }
.services-grid > *:nth-child(7) { transition-delay: 0.36s; }
.services-grid > *:nth-child(8) { transition-delay: 0.42s; }
.services-grid > *:nth-child(9) { transition-delay: 0.48s; }
.services-grid > *:nth-child(10) { transition-delay: 0.54s; }
.services-grid > *:nth-child(11) { transition-delay: 0.6s; }
.services-grid > *:nth-child(12) { transition-delay: 0.66s; }

.services-grid > * {
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- GALLERY --- */
.gallery {
  padding: 80px 0 100px;
  background: var(--off-white);
}

.gallery-swiper-wrap {
  position: relative;
  padding: 0 60px;
}

.gallery-swiper {
  border-radius: 12px;
  overflow: hidden;
}

.gallery-swiper .swiper-slide {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

@media (hover: hover) {
  .gallery-swiper .swiper-slide:hover img {
    transform: scale(1.05);
  }
}

.gallery-btn-prev,
.gallery-btn-next {
  color: var(--white);
  background: var(--red);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.15s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn-prev {
  left: 0;
}

.gallery-btn-next {
  right: 0;
}

.gallery-btn-prev:hover,
.gallery-btn-next:hover {
  background: var(--black);
}

.gallery-swiper .swiper-pagination-bullet {
  background: var(--grey-600);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--white);
  opacity: 1;
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 24px;
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
  z-index: 10;
}

.lightbox-close:hover {
  color: var(--red);
  transform: rotate(90deg);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-swiper {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.lightbox.open .lightbox-swiper {
  display: block;
}

.lightbox.open .lightbox-img {
  display: none;
}

.lightbox-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
}

.lightbox-swiper .swiper-slide img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.lightbox-btn-prev,
.lightbox-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lightbox-btn-prev {
  left: 16px;
}

.lightbox-btn-next {
  right: 16px;
}

.lightbox-btn-prev:hover,
.lightbox-btn-next:hover {
  background: var(--red);
}

/* --- TESTIMONIALS --- */
.testimonials {
  position: relative;
  padding: 100px 0 80px;
  background: var(--grey-900);
  overflow: hidden;
}

.testimonials-diagonal {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--off-white);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  z-index: 2;
}

.testimonials .section-tag {
  color: var(--red);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track-wrapper {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 32px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-card--featured {
  background: rgba(208, 2, 27, 0.12);
  border-color: rgba(208, 2, 27, 0.25);
}

.testimonial-card--featured:hover {
  background: rgba(208, 2, 27, 0.18);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-card blockquote p {
  color: var(--grey-200);
  font-size: 0.98rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--grey-600);
}

/* --- CONTACT --- */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info p {
  color: var(--grey-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--grey-800);
}

.contact-form {
  background: var(--off-white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--grey-100);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--grey-800);
  margin-bottom: 6px;
}

.required {
  color: var(--red);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid var(--grey-100);
  border-radius: 6px;
  background: var(--white);
  color: var(--grey-900);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208, 2, 27, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: block;
  font-size: 0.82rem;
  color: var(--red);
  margin-top: 4px;
  min-height: 1.2em;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 6px;
  color: #059669;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-success.show {
  display: flex;
}

/* --- FOOTER --- */
.site-footer {
  position: relative;
  background: var(--grey-800);
  color: var(--grey-200);
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-diagonal {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--grey-600);
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--grey-600);
  transition: var(--transition);
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--grey-600);
}

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

/* Tablet (768px) */
@media (max-width: 1024px) {
  .about-card {
    grid-template-columns: 1fr;
  }

  .about-card-image {
    min-height: 300px;
    order: -1;
  }

  .about-card-text {
    padding: 40px 32px;
  }

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

  .carousel-track .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .site-header {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .site-header.nav-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 88px 32px 32px;
    background: var(--white);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--grey-100);
  }

  .nav-cta {
    margin-top: 20px;
    border-bottom: none !important;
    text-align: center;
    border-radius: 8px !important;
    padding: 10px 18px !important;
    font-size: 0.85rem !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .about-card-text {
    padding: 32px 24px;
  }

  .about-card-image {
    min-height: 240px;
  }

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

  .about-stats {
    gap: 20px;
  }

  .about-stat-number {
    font-size: 1.8rem;
  }

  .carousel-track .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonials-carousel {
    flex-wrap: wrap;
    justify-content: center;
  }

  .carousel-track-wrapper {
    width: 100%;
    flex: none;
    order: 1;
  }

  .carousel-arrow {
    width: 60px;
    height: 60px;
    margin-top: 16px;
    order: 2;
  }

  .carousel-arrow svg {
    width: 28px;
    height: 28px;
  }

  .hero-headline {
    font-size: clamp(3rem, 11vw, 4.5rem);
    line-height: 1.2;
  }

  .hero-content {
    padding: 100px 24px 60px;
  }

  .hero-diagonal,
  .testimonials-diagonal,
  .footer-diagonal {
    height: 48px;
  }

  .gallery-swiper-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }

  .gallery-swiper {
    width: 100%;
    order: 1;
  }

  .gallery-btn-prev,
  .gallery-btn-next {
    position: static;
    transform: none;
    order: 2;
    margin-top: 16px;
    width: 60px;
    height: 60px;
  }

  .gallery-btn-prev svg,
  .gallery-btn-next svg {
    width: 28px;
    height: 28px;
  }

  .gallery-btn-prev {
    margin-right: 8px;
  }

  .gallery-btn-next {
    margin-left: 8px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .service-icon svg {
    width: 36px;
    height: 36px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* Touch targets */
@media (pointer: coarse) {
  .btn {
    min-height: 48px;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hamburger {
    min-width: 48px;
    min-height: 48px;
  }
}
