/* ============================================
   HOME TABLET — min-width: 768px
   Belle Pour Son Mariage
   ============================================ */

@media (min-width: 768px) {

  /* --- Header --- */
  .header__burger {
    display: none;
  }

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

  .header__nav a {
    font-size: var(--fs-sm);
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition-fast);
  }

  .header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-primary);
    transition: width var(--transition-base);
  }

  .header__nav a:hover {
    color: var(--color-primary);
  }

  .header__nav a:hover::after {
    width: 100%;
  }

  .header__cta {
    display: inline-flex;
  }

  /* --- Hero --- */
  .hero__content {
    padding: var(--space-3xl) 0;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero__blob--1 {
    width: 500px;
    height: 500px;
  }

  .hero__blob--2 {
    width: 350px;
    height: 350px;
  }

  /* --- Collection --- */
  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  /* --- About --- */
  .about__wrapper {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3xl);
  }

  .about__image-container {
    flex: 0 0 45%;
  }

  .about__image-arch {
    max-width: 100%;
  }

  .about__content {
    text-align: left;
    flex: 1;
  }

  .about__highlight {
    display: inline-flex;
  }

  /* --- Testimonials --- */
  .testimonials__slider {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - var(--space-lg));
  }

  /* --- Process --- */
  .process__steps {
    gap: var(--space-xl);
  }

  .process__step-number {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }

  /* --- CTA --- */
  .cta-section__actions {
    flex-direction: row;
    justify-content: center;
  }

  /* --- Footer --- */
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer__brand {
    text-align: left;
    flex: 0 0 35%;
  }

  .footer__logo img {
    margin: 0 0 var(--space-md);
  }

  .footer__links {
    text-align: left;
  }

  .footer__social {
    text-align: left;
  }

  .footer__social-links {
    justify-content: flex-start;
  }
}
