/* ============================================================
   BLUB CLEAN — Design tokens
   Bege #f0e7df · Azul #113157 · Dourado #99713f
   ============================================================ */

:root {
  --cream:        #f0e7df;
  --cream-soft:   #f7f2ec;
  --cream-deep:   #e6d9c8;
  --navy:         #113157;
  --navy-deep:    #0a2038;
  --navy-soft:    #1c4a7c;
  --gold:         #99713f;
  --gold-light:   #b78e57;
  --gold-pale:    #d9c19b;
  --surface:      #fffdfb;
  --text:         #1e2b3a;
  --muted:        #6b6055;
  --muted-cool:   #5c6a7a;
  --line:         rgba(17, 49, 87, 0.12);
  --line-gold:    rgba(153, 113, 63, 0.28);
  --shadow:       0 26px 60px rgba(17, 49, 87, 0.12);
  --shadow-soft:  0 16px 36px rgba(153, 113, 63, 0.16);
  --shadow-navy:  0 22px 50px rgba(10, 32, 56, 0.28);
  --radius:       22px;
  --radius-lg:    30px;
  --max:          1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', 'Inter', Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-weight: 600;
}

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

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

::selection {
  background: var(--gold-pale);
  color: var(--navy-deep);
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

/* ============================================================
   Ornamento assinatura — divisor com losango dourado
   ============================================================ */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 20px;
}

.ornament .line {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament .line.right {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament .dot {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--gold);
  flex-shrink: 0;
}

.ornament.on-dark .line {
  background: linear-gradient(90deg, transparent, var(--gold-pale));
}

.ornament.on-dark .line.right {
  background: linear-gradient(90deg, var(--gold-pale), transparent);
}

.ornament.on-dark .dot {
  background: var(--gold-pale);
}

/* ============================================================
   Header
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(240, 231, 223, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-gold);
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--navy);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
  box-shadow: 0 8px 20px rgba(17, 49, 87, 0.14);
}

.brand .light {
  color: var(--gold);
  font-style: italic;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.28s ease;
}

.nav a:hover {
  color: var(--gold);
}

.nav a:hover::after {
  right: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ============================================================
   Botões
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  box-shadow: 0 16px 30px rgba(153, 113, 63, 0.32);
}

.btn-primary:hover {
  filter: brightness(1.04);
  box-shadow: 0 20px 38px rgba(153, 113, 63, 0.4);
}

.btn-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

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

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: brightness(0.5) saturate(1.05);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.14);
  filter: brightness(0.5) saturate(1.05);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 32, 56, 0.72) 0%, rgba(10, 32, 56, 0.5) 45%, rgba(10, 32, 56, 0.82) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 84px 0;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(240, 231, 223, 0.08);
  border: 1px solid var(--gold-pale);
  color: var(--gold-pale);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
}

h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.06;
  letter-spacing: 0.005em;
  margin-bottom: 24px;
  color: #fdfaf6;
  font-weight: 600;
}

h1 .highlight {
  color: var(--gold-pale);
  font-style: italic;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(253, 250, 246, 0.86);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-features {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.hero-features li {
  background: rgba(253, 250, 246, 0.08);
  border: 1px solid rgba(253, 250, 246, 0.2);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(8px);
}

/* ============================================================
   Seções gerais
   ============================================================ */

section {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.section-head span,
.section-tag {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.08;
  margin: 14px 0 16px;
  letter-spacing: 0.005em;
}

.section-head p {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 300;
}

#servicos {
  background: var(--cream);
}

#galeria {
  background: var(--cream-soft) !important;
}

#depoimentos {
  background: var(--cream) !important;
}

#donos {
  background: var(--cream-soft);
}

/* ============================================================
   Cards de serviço
   ============================================================ */

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-soft);
}

.card .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(153, 113, 63, 0.14), rgba(17, 49, 87, 0.08));
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 20px;
  border: 1px solid var(--line-gold);
}

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

.card p {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 300;
}

/* ============================================================
   Bastidores — vídeos verticais na seção de serviços
   ============================================================ */

.process-head {
  text-align: center;
  max-width: 640px;
  margin: 76px auto 40px;
}

.process-head span {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.process-head h3 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.15;
  margin-top: 6px;
  letter-spacing: 0.005em;
}

.process-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.process-video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-gold);
  background: var(--navy-deep);
}

.process-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 32, 56, 0.82) 100%);
  pointer-events: none;
}

.process-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px 20px 22px;
  color: #fdfaf6;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.005em;
}

@media (max-width: 992px) {
  .process-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-showcase .process-video-card:last-child {
    grid-column: span 2;
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .process-showcase {
    grid-template-columns: 1fr;
  }

  .process-showcase .process-video-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .process-head {
    margin: 56px auto 32px;
  }
}

/* ============================================================
   Quem somos / split
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.about-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}

.about-box.photo-box {
  padding: 0;
  overflow: hidden;
  min-height: 420px;
}

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

.about-box h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.14;
  margin-bottom: 20px;
  letter-spacing: 0.005em;
}

.about-box p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
  font-weight: 300;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.check-list li {
  position: relative;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px 14px 44px;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--navy);
}

.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.82rem;
}

/* ============================================================
   Testemunhos — cartão com aspas douradas, inspirado no feed
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 30px 30px;
  box-shadow: var(--shadow);
  height: 100%;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 26px;
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  color: var(--gold-pale);
  line-height: 1;
  font-weight: 700;
}

.testimonial-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 22px;
  font-size: 1rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonial-author strong {
  color: var(--navy);
  font-size: 0.98rem;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ============================================================
   Painel informativo (reservado / genérico)
   ============================================================ */

.info-panel {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-panel h3 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.info-panel p,
.info-panel li {
  color: rgba(253, 250, 246, 0.82);
}

.info-panel ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 20px 0 28px;
}

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  background: var(--surface);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* ============================================================
   Galeria (antes/depois)
   ============================================================ */

.gallery-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.gallery-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.gallery-track.dragging {
  cursor: grabbing;
  transition: none !important;
}

.gallery-slide {
  min-width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  flex: 0 0 calc((100% - 48px) / 3);
}

.gallery-card {
  height: 100%;
  padding: 16px;
  background: var(--surface);
}

.gallery-media {
  aspect-ratio: 4 / 6;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream-deep);
}

.gallery-media img,
.gallery-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.gallery-content {
  padding: 18px 8px 6px;
}

.gallery-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.gallery-content p {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
}

.gallery-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: var(--surface);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  z-index: 3;
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: 0.2s ease;
}

.gallery-nav:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.gallery-prev {
  left: 4px;
}

.gallery-next {
  right: 4px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-gold);
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.gallery-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

/* ============================================================
   CTA / Contato
   ============================================================ */

.cta {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(153, 113, 63, 0.18), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(153, 113, 63, 0.14), transparent 55%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
}

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

.cta-box h2 {
  color: #fdfaf6;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: 0.005em;
}

.cta-box p {
  color: rgba(253, 250, 246, 0.82);
  font-size: 1.08rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.contact-inline {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cta .btn-secondary {
  border-color: rgba(253, 250, 246, 0.5);
  color: #fdfaf6;
}

.cta .btn-secondary:hover {
  background: #fdfaf6;
  color: var(--navy);
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--navy-deep);
  color: rgba(253, 250, 246, 0.72);
  padding: 30px 0;
  border-top: 1px solid rgba(153, 113, 63, 0.3);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.92rem;
}

.footer-inner strong {
  color: var(--gold-pale);
}

/* ============================================================
   Contato flutuante
   ============================================================ */

.float-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-contact a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 16px 32px rgba(10, 32, 56, 0.28);
  font-size: 1.45rem;
  border: 2px solid rgba(253, 250, 246, 0.5);
}

.float-whats {
  background: #25d366;
}

.float-insta {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* ============================================================
   Menu mobile
   ============================================================ */

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  background: var(--surface);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 1.1rem;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 32, 56, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 59;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 340px);
  height: 100vh;
  background: var(--cream);
  box-shadow: -16px 0 40px rgba(10, 32, 56, 0.2);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  background: var(--surface);
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
}

.mobile-menu-nav {
  display: grid;
  gap: 10px;
}

.mobile-menu-nav a {
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--surface);
  color: var(--navy);
  font-weight: 500;
  border: 1px solid var(--line);
}

.mobile-menu-cta {
  margin-top: 24px;
}

/* ============================================================
   Responsivo
   ============================================================ */

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .nav {
    gap: 20px;
  }
}

@media (max-width: 1120px) {
  .cards,
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .gallery-slide {
    min-width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .hero-content {
    max-width: 760px;
  }

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

@media (max-width: 860px) {
  .nav,
  .header-cta {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-inner {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    min-height: 84px;
  }

  .brand {
    font-size: 1.5rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 100px 0 76px;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .split {
    grid-template-columns: 1fr !important;
  }

  #donos .about-box img {
    max-width: 360px !important;
  }
}

@media (max-width: 768px) {
  section {
    padding: 76px 0;
  }

  .cards,
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    padding: 28px 24px;
  }

  .process-head {
    margin: 56px auto 30px;
  }

  .hero-video {
    transform: scale(1.08);
  }

  .gallery-slide {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .gallery-nav {
    display: none;
  }

  .hero-content {
    padding: 88px 0 68px;
  }

  h1 {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    line-height: 1.08;
  }

  .hero p {
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .eyebrow {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
    justify-content: center;
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-inline .btn {
    width: 100%;
  }

  .float-contact {
    right: 14px;
    bottom: 14px;
  }

  .float-contact a {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    font-size: 1.3rem;
    gap: 10px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 2.05rem;
  }

  .btn {
    padding: 14px 20px;
  }

  #donos .about-box {
    padding: 26px !important;
  }

  #donos h2 {
    font-size: 1.85rem !important;
  }

  .check-list li {
    font-size: 0.92rem;
  }

  .footer-inner {
    text-align: center;
    justify-content: center;
  }

  .testimonial-card {
    padding: 34px 24px 24px;
  }
}
