/* ============================================================
   Responsive — tablet (1024), mobile (768), small (480)
   ============================================================ */

@media (max-width: 1100px) {
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 11px; letter-spacing: 0.06em; }
  .brand-logo { height: 72px; max-width: 280px; }
}

/* ---- Tablet / iPad ---- */
@media (max-width: 1024px) {
  :root {
    --section-h: 2rem;
    --section-v: 4.5rem;
  }

  .site-nav { padding: 0 1.5rem; }

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

  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(3) {
    grid-column: 1 / -1;
    border-right: 0;
    border-top: 1px solid rgba(110, 58, 69, 0.12);
  }

  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-top > div:last-child {
    grid-column: 2 / 4;
  }

  .about-hero-grid,
  .injection-hero-grid,
  .contact-grid,
  .laser-hero,
  .soins-intro-grid,
  .benefits-grid,
  .story-grid {
    gap: 2.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

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

  .soins-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .values-grid > :last-child {
    grid-column: 1 / -1;
  }
}

/* ---- Nav collapses on tablet + below ---- */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-cta-mobile-li { display: block; }

  .site-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.5rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(110, 58, 69, 0.12);
    z-index: 999;
  }

  .site-nav.open .nav-links li {
    border-bottom: 1px solid rgba(110, 58, 69, 0.1);
  }

  .site-nav.open .nav-links a {
    display: flex;
    align-items: center;
    padding: 0.9rem 0;
    font-size: 13px;
    border-bottom: none;
  }

  .site-nav.open .nav-links .nav-cta-mobile-li {
    border-bottom: none !important;
    margin-top: 0.65rem;
    padding-top: 0.65rem;
  }

  .site-nav.open .nav-links .nav-cta-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin: 0;
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--wine);
    color: var(--wine);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .nav-cta-mobile {
    display: block;
  }

/* ---- Phone + iPad portrait: stack layouts ---- */
@media (max-width: 900px) {
  .section-2col,
  .about-hero-grid,
  .injection-hero-grid,
  .contact-grid,
  .laser-hero,
  .soins-intro-grid,
  .benefits-grid,
  .story-grid {
    grid-template-columns: 1fr !important;
  }

  .home-hero {
    display: flex;
    flex-direction: column;
    min-height: unset;
    align-items: stretch;
  }

  .home-hero-media {
    position: relative;
    inset: auto;
    height: min(58vw, 420px);
    min-height: 280px;
    flex-shrink: 0;
  }

  .home-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 18%;
    animation: none;
  }

  .home-hero-media::before {
    background: radial-gradient(ellipse 70% 60% at 50% 35%, rgba(110, 58, 69, 0.2), transparent 70%);
  }

  .home-hero-media::after {
    background: linear-gradient(
      to bottom,
      transparent 40%,
      rgba(8, 7, 7, 0.35) 70%,
      rgba(8, 7, 7, 0.95) 100%
    );
  }

  .home-hero-content {
    padding: 1.75rem var(--section-h) 2.75rem;
    max-width: none;
    background: #0a0909;
  }

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

  .service-card {
    border-right: 0;
    border-bottom: 1px solid rgba(110, 58, 69, 0.12);
  }

  .service-card:nth-child(3) {
    grid-column: auto;
    border-top: 0;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-visual {
    min-height: 280px;
    height: 300px;
  }

  .about-vertical-label {
    font-size: 9px;
    padding: 0.85rem 0.5rem;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band-actions { width: 100%; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .footer-top > div:first-child,
  .footer-top > div:last-child {
    grid-column: 1 / -1;
  }

  .injection-grid,
  .soins-detail-grid,
  .values-grid,
  .process-steps {
    grid-template-columns: 1fr !important;
  }

  .values-grid > :last-child { grid-column: auto; }

  .about-hero-content,
  .injection-hero-left,
  .contact-left,
  .contact-right {
    padding: 2.5rem 1.5rem !important;
  }

  .about-hero-img {
    min-height: 320px !important;
    order: -1;
  }

  .about-hero-img img {
    max-width: min(280px, 70%) !important;
    width: auto !important;
  }

  .injection-hero-right {
    min-height: 260px;
    order: -1;
  }

  .laser-hero > div:last-child { order: -1; }
  .laser-hero .img-box { height: 280px !important; }

  .soins-intro-grid > div:last-child { order: -1; }
  .soins-intro-grid .img-box { height: 280px !important; }

  .contact-left { order: 2; }
  .contact-right { order: 1; }

  .story-sidebar { position: static !important; }
  .hours-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 2.75rem 1.5rem 2.25rem; }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 88px;
    --section-h: 1.25rem;
    --section-v: 3.25rem;
  }

  .site-nav {
    padding: 0 1.15rem;
    height: var(--nav-h);
  }

  .brand-logo {
    height: 64px;
    max-width: 240px;
  }

  .btn-dark,
  .btn-ghost,
  .inj-ghost {
    width: 100%;
    text-align: center;
  }

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

  .hero-actions .btn-text {
    justify-content: center;
  }

  .about-visual {
    height: 240px;
    min-height: 240px;
  }

  .about-img-main { width: 82%; height: 88%; }
  .about-img-accent { width: 52%; height: 52%; }

  .quote-block { text-align: left; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .marquee-track {
    justify-content: flex-start;
  }

  .treatment-strip {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  :root {
    --section-h: 1rem;
    --section-v: 2.75rem;
  }

  .home-hero-media {
    height: min(72vw, 360px);
    min-height: 240px;
  }

  .home-hero-media img {
    object-position: center 14%;
  }

  .home-hero-content {
    padding-top: 1.25rem;
    padding-bottom: 2.25rem;
  }

  .brand-hero {
    font-size: 1.15rem;
  }

  .about-visual {
    height: 210px;
    min-height: 210px;
  }

  .about-vertical-label { display: none; }

  .service-card {
    padding: 1.5rem 0.25rem 1.75rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .soin-item {
    grid-template-columns: 36px 1fr auto !important;
    gap: 0.75rem !important;
    padding: 1.1rem 0 !important;
  }

  .soin-item-desc { display: none; }

  .process-step,
  .detail-card,
  .injection-card,
  .value-card {
    padding: 1.5rem 1.15rem !important;
  }

  .contact-left,
  .contact-right,
  .about-hero-content,
  .injection-hero-left {
    padding: 2rem 1rem !important;
  }
}

/* Mentions legales */
@media (max-width: 768px) {
  .legal-page {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}

/* Injection PNG contain */
.injection-hero-right .img-box img {
  object-fit: contain !important;
  padding: 1rem;
  background: transparent;
}

/* Touch targets — interactive controls only */
.nav-cta,
.nav-cta-mobile,
.btn-dark,
.btn-ghost,
.inj-ghost,
.nav-toggle {
  min-height: 44px;
}

.nav-links a,
.btn-text {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
}