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

:root {
  --black: #111;
  --gray: #888;
  --light: #f8f8f8;
  --dark: #111;
  --border: #e8e8e8;
  --white: #fff;
  --radius: 6px;
  --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--black);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Page load */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  animation: pageLoad 0.6s ease-out forwards;
}

@keyframes pageLoad {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px) scale(0.96);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(60px) scale(0.96);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.2s; }
.stagger-4 { transition-delay: 0.3s; }
.stagger-5 { transition-delay: 0.4s; }
.stagger-6 { transition-delay: 0.5s; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform var(--transition);
}

.nav.hidden { transform: translateY(-100%); }

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav__logo {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  perspective: 600px;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-top: -2px;
  transition: transform 0.5s ease;
}

.nav__logo:hover .nav__logo-img {
  transform: rotateY(360deg);
}

.nav__logo span { color: var(--gray); font-weight: 400; }

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.3s ease;
}

.nav__links a:hover { color: var(--black); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: var(--transition);
  transform-origin: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  overflow: hidden;
  background: var(--dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/photo-1.jpg');
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 560px;
}

.hero__tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0;
  animation: heroTag 0.8s 0.3s ease-out forwards;
  margin-bottom: 16px;
}

@keyframes heroTag {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 0.7; transform: translateY(0); }
}

.hero h1 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroTitle 0.8s 0.4s ease-out forwards;
  font-family: 'Playfair Display', serif;
}

@keyframes heroTitle {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-size: 1.1rem;
  opacity: 0;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: heroSub 0.8s 0.5s ease-out forwards;
}

@keyframes heroSub {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 0.85; transform: translateY(0); }
}

.hero__actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: heroActions 0.8s 0.6s ease-out forwards;
}

@keyframes heroActions {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  background: #333;
}

.btn--light {
  background: var(--white);
  color: var(--black);
}

.btn--light:hover {
  background: #f0f0f0;
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--outline-light:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
}

/* Sections */
.section {
  padding: 80px 0;
  position: relative;
}

.section--light { background: var(--light); }
.section--dark { background: var(--dark); color: var(--white); }

/* Why Choose Us */
.why-choose {
  margin-top: 16px;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.why-choose__point {
  display: flex;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.why-choose__point:hover {
  border-color: #ccc;
}

.why-choose__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose__icon svg {
  width: 18px;
  height: 18px;
}

.why-choose__point strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-choose__point p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

.why-choose__tags {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.why-choose__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: tagScroll 18s linear infinite;
}

@keyframes tagScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.why-choose__tag {
  padding: 10px 24px;
  background: transparent;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--gray);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.why-choose__tag:hover {
  border-color: var(--black);
  color: var(--black);
}

.section__sub {
  color: var(--gray);
  margin-top: -8px;
  margin-bottom: 56px;
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  margin-bottom: 16px;
}

.label--light { color: rgba(255,255,255,0.5); }

h2 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 40px;
  line-height: 1.15;
  font-family: 'Playfair Display', serif;
}

h2.light { color: var(--white); }

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image { position: relative; }

.about__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.about__text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.about__highlight {
  padding: 14px 16px;
}

.about__highlight strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.about__highlight span {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}

.service img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service:hover img { transform: scale(1.02); }

.service__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
}

.service__content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.service__content p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.06);
}

.gallery__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.gallery__item:hover::before {
  background: rgba(0,0,0,0.05);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  aspect-ratio: 1;
}

.gallery__item--wide { grid-column: span 2; }
.gallery__item--wide img { aspect-ratio: 16/9; }
.gallery__item:hover img { transform: scale(1.02); }

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s ease;
  z-index: 2;
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery__caption strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
  font-weight: 600;
}

.gallery__caption span {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reviews */
.reviews-summary {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.reviews-summary__score { text-align: center; }

.reviews-summary__score strong {
  font-size: 4rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  letter-spacing: -2px;
}

.reviews-summary__score > span {
  font-size: 0.85rem;
  color: var(--gray);
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.reviews-cta .btn {
  gap: 8px;
}

.reviews-cta .btn svg {
  transition: transform 0.3s ease;
}

.reviews-cta .btn:hover svg {
  transform: translate(2px, -2px);
}

.stars {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin: 12px 0;
}

.star {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: var(--border);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.filled { background: var(--black); }

/* Testimonials */
.testimonials__wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials {
  flex: 1;
  position: relative;
  min-height: 240px;
}

.testimonials__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: all 0.3s ease;
}

.testimonials__arrow:hover {
  border-color: var(--black);
}

.testimonial {
  display: none;
  text-align: center;
}

.testimonial.active {
  display: block;
  animation: testimonialIn 0.6s ease;
}

@keyframes testimonialIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-bottom: 24px;
}

.testimonial__stars .star { width: 18px; height: 18px; }

.testimonial blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 32px;
  position: relative;
}

.testimonial blockquote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--border);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial__author strong {
  display: block;
  font-size: 0.95rem;
  text-align: left;
}

.testimonial__author span {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: left;
}

.dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.dot:hover {
  border-color: var(--black);
}

.dot.active {
  background: var(--black);
  border-color: var(--black);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--black);
  transition: border-color 0.3s ease;
  outline: none;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: var(--black);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: #aaa;
}

.contact__form textarea { resize: vertical; min-height: 140px; }
.contact__form .btn { align-self: flex-start; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 4px;
}

.contact__info-item {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact__info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact__info-item span {
  color: var(--gray);
  font-size: 0.95rem;
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--black);
}

.cta-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 2px;
  opacity: 0.5;
}

.cta-collage img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  min-height: 0;
  display: block;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta {
  text-align: center;
}

.cta__sub {
  color: rgba(255,255,255,0.6);
  margin-top: -24px;
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.cta__actions .btn {
  gap: 10px;
}

.cta__actions .btn svg {
  flex-shrink: 0;
}

.cta__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.cta__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--gray);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: var(--gray);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer__social a:hover {
  color: var(--black);
}

/* Responsive â€” Tablet */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }

  .hero h1 { font-size: 3.2rem; }
  .hero__content { max-width: 480px; }

  .about { gap: 48px; }

  .services { gap: 20px; }

  .testimonials__wrapper { gap: 16px; }
}

/* Responsive â€” Tablet Portrait / Large Phone */
@media (max-width: 768px) {
  /* Nav */
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 200;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: flex; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero h1 { font-size: 2.4rem; line-height: 1.1; letter-spacing: -1px; }
  .hero__tag { font-size: 0.65rem; letter-spacing: 3px; }
  .hero__sub { font-size: 1rem; }
  .hero__actions { flex-wrap: wrap; }
  .hero__overlay { background: rgba(0,0,0,0.55); }

  /* Section */
  .section { padding: 56px 0; }
  h2 { font-size: 1.8rem; margin-bottom: 32px; }

  /* About */
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__title br { display: none; }
  .about__text p { font-size: 1rem; }

  /* Why Choose */
  .why-choose__grid { gap: 16px; }

  /* Services */
  .services { grid-template-columns: 1fr; }
  .service img { aspect-ratio: 16/9; }

  /* Gallery */
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__caption { opacity: 1; transform: translateY(0); }

  /* Testimonials */
  .testimonials__wrapper { max-width: 100%; gap: 12px; }
  .testimonials { min-height: 260px; }
  .testimonial blockquote { font-size: 1rem; line-height: 1.8; }
  .testimonial blockquote::before { font-size: 3.5rem; top: -14px; }

  /* Contact */
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .contact__row { grid-template-columns: 1fr; }
  .contact__form .btn { width: 100%; }

  /* CTA */
  .cta-section { padding: 80px 0; }
  .cta-collage { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(8, 1fr); }
  .cta__actions { flex-direction: column; align-items: center; }
  .cta__info { flex-direction: column; gap: 8px; }
  .cta__dot { display: none; }

  /* Footer */
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
}

/* Responsive â€” Small Phone */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .nav__inner { height: 52px; }
  .nav__logo-img { height: 32px; }
  .nav__links a { font-size: 1rem; }

  .hero { min-height: 70vh; }
  .hero h1 { font-size: 1.75rem; letter-spacing: -0.5px; }
  .hero__tag { font-size: 0.6rem; letter-spacing: 2px; }
  .hero__sub { font-size: 0.9rem; line-height: 1.6; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { width: 100%; padding: 14px 20px; font-size: 0.85rem; }

  .section { padding: 44px 0; }
  h2 { font-size: 1.5rem; margin-bottom: 24px; }

  .about__image img { aspect-ratio: 4/3; }
  .about__text p { font-size: 0.95rem; }
  .about__highlight strong { font-size: 0.9rem; }
  .about__highlight span { font-size: 0.8rem; }

  .why-choose__grid { grid-template-columns: 1fr; }
  .why-choose__point { padding: 20px; gap: 12px; }
  .why-choose__icon { width: 34px; height: 34px; }
  .why-choose__icon svg { width: 15px; height: 15px; }
  .why-choose__point strong { font-size: 0.9rem; }
  .why-choose__point p { font-size: 0.8rem; }

  .gallery { grid-template-columns: 1fr; gap: 6px; }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item img { aspect-ratio: 3/2; }
  .gallery__item--wide img { aspect-ratio: 3/2; }

  .testimonials__wrapper { gap: 6px; }
  .testimonials__arrow { width: 32px; height: 32px; }
  .testimonials__arrow svg { width: 14px; height: 14px; }
  .testimonials { min-height: 300px; }
  .testimonial blockquote { font-size: 0.9rem; line-height: 1.7; }
  .testimonial blockquote::before { font-size: 2.5rem; top: -8px; }
  .testimonial__author { gap: 10px; }
  .testimonial__avatar { width: 34px; height: 34px; font-size: 0.7rem; }
  .testimonial__author strong { font-size: 0.8rem; }
  .testimonial__author span { font-size: 0.65rem; }
  .dots { gap: 8px; margin-top: 24px; }
  .dot { width: 8px; height: 8px; }

  .reviews-summary__score strong { font-size: 2.5rem; }
  .reviews-summary__score > span { font-size: 0.75rem; }

  .service__content { padding: 20px 16px 16px; }
  .service__content h3 { font-size: 1rem; }
  .service__content p { font-size: 0.8rem; }

  .contact__info { gap: 16px; }
  .contact__info-item { padding: 14px; }
  .contact__info-item strong { font-size: 0.8rem; }
  .contact__info-item span { font-size: 0.85rem; }

  .cta-section { padding: 60px 0; }
  .cta-collage { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(11, 1fr); opacity: 0.25; }
  .cta-content h2 { font-size: 1.4rem; }
  .cta__sub { font-size: 0.9rem; }
  .cta-content .cta__actions .btn { width: 100%; padding: 14px 20px; font-size: 0.85rem; }
  .cta-content .cta__info span { font-size: 0.75rem; }

  .btn { padding: 12px 24px; font-size: 0.85rem; }

  .footer { padding: 32px 0; }
  .footer span { font-size: 0.75rem; }
}