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

  :root {
    --pink: #E8185A;
    --pink-light: #f04080;
    --teal: #3A9E9A;
    --teal-dark: #2d8480;
    --dark: #1a1a1a;
    --gray: #555;
    --light-gray: #f0f4f4;
    --light-teal: #ebf5f5;
    --white: #fff;
    --cream: #fafafa;
  }

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

  svg {
    display: block;
    flex-shrink: 0;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: var(--white);
    font-size: 14px;
    line-height: 1.6;
  }

  /* â”€â”€â”€ NAV â”€â”€â”€ */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 60px;
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-brand {
    flex-shrink: 0;
  }

  .logo {
    display: block;
    line-height: 1;
  }

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

  .footer-bottom-logo .logo img {
    height: 36px;
  }

  .tagline {
    font-size: 10px;
    padding: 4px 0 0 2px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color .2s;
  }

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

  .nav-links .active {
    color: var(--pink);
    border-bottom: 2px solid var(--pink);
    padding-bottom: 2px;
  }

  .nav-links .has-arrow::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform .2s;
  }

  .btn-contact {
    background: var(--pink);
    color: var(--white) !important;
    padding: 12px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: background .2s;
  }

  .btn-contact:hover { background: var(--pink-light); }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: transform .25s, opacity .25s;
  }

  nav.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  nav.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .tagline .dot { margin: 0 6px; color: var(--teal); font-weight: 700; }
  .tagline .pink { color: var(--pink); font-weight: 600; }
  .tagline .teal { color: var(--teal); font-weight: 600; }

  /* â”€â”€â”€ HERO â”€â”€â”€ */
  .hero {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 12px 0 40px;
    min-height: 0;
    width: 100%;
    overflow: hidden;
    background: var(--light-gray);
  }

  .hero-content,
  .hero-image {
    min-width: 0;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    flex: 1 1 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    height: auto;
  }

  .hero-content .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .hero-content .hero-title {
    margin-bottom: 16px;
    font-size: 52px;
  }

  .hero-content .hero-divider {
    margin-bottom: 16px;
  }

  .hero-content .hero-desc {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .hero-content .btn-primary,
  .hero-content .btn-ghost {
    font-size: 12px;
  }

  .hero-content::after {
    display: none;
  }

  .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
  }

  .hero-title .teal { color: var(--teal); font-style: italic; }
  .hero-title .pink { color: var(--pink); font-style: italic; }

  .hero-content .eyebrow,
  .hero-content .hero-title,
  .hero-content .hero-desc,
  .hero-content .hero-btns {
    width: 100%;
    max-width: 480px;
    align-self: center;
  }

  .hero-divider {
    width: 40px;
    height: 3px;
    background: var(--pink);
    margin-bottom: 22px;
    align-self: center;
  }

  .hero-content .hero-divider {
    align-self: center;
  }

  .hero-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 34px;
  }

  .hero-btns {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .btn-primary {
    background: var(--pink);
    color: var(--white);
    padding: 14px 26px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s;
  }

  .btn-primary:hover { background: var(--pink-light); }
  .btn-primary .arrow { font-size: 14px; }

  .btn-ghost {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-ghost:hover { color: var(--teal); }

  .hero-image {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    background: transparent;
    overflow: visible;
    min-height: 0;
    width: auto;
    margin: 0;
  }

  .hero-image::before {
    display: none;
  }

  .hero-image img {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 560px;
    object-fit: contain;
    object-position: right center;
    display: block;
    margin-left: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  /* â”€â”€â”€ SERVICES â”€â”€â”€ */
  .services-section {
    background: var(--light-teal);
    padding: 70px 60px;
    text-align: center;
  }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 50px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 40px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 10px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .service-icon svg {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px;
    max-height: 48px;
  }

  .service-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--pink);
    text-transform: uppercase;
    line-height: 1.35;
  }

  .service-desc {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.45;
    text-align: center;
  }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--teal);
    border: 2px solid var(--teal);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, color .2s;
  }

  .btn-outline:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }

  /* â”€â”€â”€ PORTFOLIO â”€â”€â”€ */
  .portfolio-section {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(0, 1050px);
    gap: 24px;
    align-items: center;
    min-height: 460px;
  }

  .portfolio-left {
    padding: 60px 30px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }

  .portfolio-left .eyebrow-small {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 16px;
  }

  .portfolio-divider {
    width: 36px;
    height: 3px;
    background: var(--pink);
    margin-bottom: 18px;
  }

  .portfolio-desc {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .portfolio-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .portfolio-link:hover { color: var(--pink); }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 4px;
    padding: 40px 60px 40px 0;
    width: 100%;
  }

  .portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-height: 0;
    background: #888;
  }

  .portfolio-item img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
    transition: transform .4s;
  }

  .portfolio-item:hover img { transform: scale(1.05); }

  .portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  /* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
  .testimonials-section {
    padding: 70px 60px;
    text-align: center;
    background: var(--white);
    position: relative;
    z-index: 0;
  }

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

  .testimonial-card {
    text-align: left;
    padding: 10px 0;
  }

  .quote-mark {
    font-size: 36px;
    color: var(--pink);
    line-height: 0.8;
    margin-bottom: 12px;
    font-family: Georgia, serif;
  }

  .testimonial-text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
  }

  .stars {
    color: var(--pink);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 8px;
  }

  .testimonial-author {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
  }

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

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.4;
  }

  .dot.active { background: var(--pink); opacity: 1; }

  /* â”€â”€â”€ CTA / FOOTER TOP â”€â”€â”€ */
  .cta-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    align-items: stretch;
    min-height: 320px;
    background: var(--white);
    overflow: visible;
  }

  .cta-image {
    min-height: 320px;
    height: 100%;
    overflow: visible;
    background: var(--white);
    line-height: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .cta-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: contain;
    object-position: left center;
    display: block;
  }

  .cta-content {
    padding: 40px 36px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--teal);
    min-height: 320px;
  }

  .footer-contact {
    padding: 40px 36px 40px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    background: var(--teal);
    min-height: 320px;
  }

  .cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
  }

  .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.1;
  }

  .cta-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: none;
    margin-bottom: 30px;
  }

  .btn-white {
    background: var(--pink);
    color: var(--white);
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s;
  }

  .btn-white:hover { background: var(--pink-light); }

  /* â”€â”€â”€ FOOTER â”€â”€â”€ */
  footer {
    background: var(--white);
    border-top: 1px solid #eee;
  }

  .footer-contact-bar {
    background: var(--teal);
    display: grid;
    grid-template-columns: 340px 1fr;
  }

  .footer-info {
    padding: 0 60px 40px 60px;
    background: var(--teal);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-size: 13px;
  }

  .footer-info-item svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px;
    max-height: 18px;
    flex-shrink: 0;
    stroke: var(--white);
  }

  .socials {
    display: flex;
    gap: 20px;
    margin-top: 14px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: background .2s, transform .2s, border-color .2s, box-shadow .2s;
  }

  .social-icon:hover {
    background: rgba(255,255,255,0.3);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  }

  .social-icon[data-social="linkedin"] {
    font-size: 14px;
    letter-spacing: -0.5px;
  }

  .social-icon[data-social="youtube"] {
    font-size: 18px;
  }

  .social-icon svg {
    width: 22px;
    height: 22px;
  }

  .social-icon-static {
    cursor: default;
  }

  .social-icon-static:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.9);
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: var(--white);
  }

  .footer-links {
    display: flex;
    gap: 24px;
  }

  .footer-links a {
    font-size: 11px;
    color: var(--teal);
    text-decoration: none;
    transition: color .2s;
  }

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

  .footer-copy {
    font-size: 11px;
    color: var(--gray);
  }

  @media (max-width: 1100px) {
    nav { padding: 16px 30px; }
    .nav-links { gap: 20px; }
    .hero { padding: 10px 0 32px; gap: 0; }
    .hero-content { padding: 0 0 0 30px; }
    .services-section { padding: 50px 30px; }
    .services-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 10px;
    }
    .portfolio-section { grid-template-columns: minmax(260px, 1fr) minmax(0, 780px); gap: 20px; }
    .portfolio-left { padding: 40px 20px 40px 30px; }
    .testimonials-section { padding: 50px 30px; }
    .cta-section { grid-template-columns: 1fr 1.2fr 0.8fr; }
  }

  @media (max-width: 900px) {
    nav {
      flex-wrap: nowrap;
      padding: 12px 20px;
    }

    .nav-toggle {
      display: flex;
    }

    .nav-brand .tagline {
      display: none;
    }

    .nav-links {
      display: none;
      position: fixed;
      top: 69px;
      left: 0;
      right: 0;
      bottom: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 8px 24px 40px;
      background: var(--white);
      overflow-y: auto;
      z-index: 99;
      border-top: 1px solid #eee;
    }

    nav.nav-open .nav-links {
      display: flex;
    }

    .nav-links > li {
      border-bottom: 1px solid #eee;
    }

    .nav-links > li > a {
      display: block;
      padding: 16px 4px;
      font-size: 14px;
    }

    .nav-links .active {
      border-bottom: none;
      padding-bottom: 16px;
    }

    .nav-links .btn-contact {
      text-align: center;
      margin-top: 8px;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
      display: block;
    }

    .nav-dropdown::before {
      display: none !important;
    }

    .nav-dropdown-menu {
      position: static;
      box-shadow: none;
      border: none;
      padding: 0 0 8px 12px;
      min-width: 0;
    }

    .nav-dropdown-menu a {
      padding: 12px 4px;
      font-size: 13px;
    }
    .hero {
      flex-direction: column;
      min-height: 0;
      padding: 0;
      align-items: stretch;
    }
    .hero-content {
      flex: none;
      padding: 40px 30px 20px;
      align-items: flex-start;
      justify-content: flex-start;
      height: auto;
    }
    .hero-content .eyebrow,
    .hero-content .hero-title,
    .hero-content .hero-desc,
    .hero-content .hero-btns {
      align-self: flex-start;
      max-width: none;
    }
    .hero-content .hero-title { font-size: 40px; }
    .hero-divider { align-self: flex-start; }
    .hero-image {
      min-height: 0;
      padding: 0;
      margin: 0;
      width: 100%;
    }
    .hero-image::before { display: none; }
    .hero-image img {
      width: 100%;
      height: auto;
      max-height: none;
      min-height: 0;
      object-fit: contain;
      object-position: center top;
      -webkit-mask-image: none;
      mask-image: none;
    }
    .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
    .portfolio-section { grid-template-columns: 1fr; min-height: 0; }
    .portfolio-left { padding: 40px 30px 24px; }
    .portfolio-grid { padding: 0 30px 40px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-section { grid-template-columns: 1fr; background: var(--teal); }
    .cta-image {
      min-height: auto;
      background: var(--white);
      order: -1;
    }
    .cta-image img {
      width: 100%;
      height: auto;
      min-height: 0;
      max-height: none;
      object-fit: contain;
      object-position: center bottom;
    }
    .cta-content,
    .footer-contact {
      min-height: 0;
      background: var(--teal);
    }
    .footer-contact { padding: 0 30px 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  }

  /* ─── Fonctionnel (sans changement visuel global) ─── */
  .nav-dropdown { position: relative; }
  .nav-dropdown > a { cursor: pointer; }

  .nav-dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
    display: none;
  }

  .nav-dropdown:hover::before,
  .nav-dropdown.open::before,
  .nav-dropdown:focus-within::before { display: block; }

  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    background: var(--white);
    border: 1px solid #eee;
    min-width: 240px;
    padding: 8px 0;
    list-style: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 200;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }

  .nav-dropdown.open > a.has-arrow::after {
    transform: rotate(180deg);
    transform-origin: center;
  }

  .nav-dropdown-menu li { list-style: none; }

  .nav-dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 12px;
    white-space: nowrap;
  }

  .nav-dropdown-menu a:hover { background: var(--light-gray); }

  a.service-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 8px 4px;
    min-width: 0;
  }

  .service-sub {
    font-size: 10px;
    color: var(--gray);
    line-height: 1.5;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .page-header {
    background: var(--light-gray);
    padding: 50px 60px;
  }

  .page-header .section-title { margin-bottom: 12px; }

  .page-content {
    padding: 50px 60px 70px;
    max-width: 820px;
  }

  .page-content p { margin-bottom: 16px; color: var(--gray); line-height: 1.8; }

  .page-content h2 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 16px;
  }

  .page-content h2:first-of-type { margin-top: 0; }

  .legal-content .legal-updated { margin-bottom: 24px; }

  .page-content ul { margin: 0 0 20px 20px; color: var(--gray); }
  .page-content li { margin-bottom: 8px; }

  .page-content a { color: var(--pink); text-decoration: underline; }
  .page-content a:hover { color: var(--dark); }

  .service-layout {
    display: grid;
    grid-template-columns: minmax(260px, 400px) 1fr;
    gap: 50px;
    align-items: start;
    padding: 50px 60px 70px;
    max-width: 1100px;
  }

  .service-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
  }

  .service-text {
    color: var(--gray);
    line-height: 1.8;
  }

  .service-text p {
    margin-bottom: 16px;
    color: var(--gray);
    line-height: 1.8;
  }

  .service-text ul {
    margin: 0 0 24px 20px;
    color: var(--gray);
  }

  .service-text li { margin-bottom: 8px; }

  .service-cta {
    margin-top: 32px;
  }

  .portfolio-page { padding: 50px 60px 70px; }

  .portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
  }

  .filter-btn {
    padding: 10px 18px;
    background: var(--white);
    border: 2px solid var(--teal);
    color: var(--teal);
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: var(--teal);
    color: var(--white);
  }

  .portfolio-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .portfolio-item.hidden { display: none; }

  button.portfolio-item {
    cursor: pointer;
    border: none;
    padding: 0;
    text-align: left;
    width: 100%;
  }

  a.portfolio-item {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .project-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .project-modal.open { display: flex; }

  .project-modal-box {
    background: var(--white);
    max-width: 760px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
  }

  .project-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
    z-index: 2;
    line-height: 1;
  }

  .project-modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 4px;
  }

  .project-modal-body { padding: 28px 32px 32px; }

  .project-modal-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 8px;
  }

  .project-modal-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .project-modal-video {
    margin: 20px 0;
    aspect-ratio: 16/9;
    background: var(--dark);
  }

  .project-modal-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 60px 70px;
  }

  .contact-form label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 13px;
    margin-bottom: 16px;
  }

  .contact-form textarea { min-height: 140px; resize: vertical; }

  .google-reviews-link {
    display: inline-flex;
    margin-top: 24px;
  }

  .footer-info-item a { color: var(--white); text-decoration: none; }
  .footer-info-item a:hover { text-decoration: underline; }

  /* ─── À PROPOS ─── */
  .about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--light-gray);
    overflow: hidden;
  }

  .about-hero-content {
    padding: 70px 40px 70px 60px;
  }

  .about-hero-content .hero-title {
    font-size: 42px;
    margin-bottom: 16px;
  }

  .about-intro {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 440px;
  }

  .about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }

  .about-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1;
    border: 2px solid transparent;
  }

  .about-pill.pink {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
  }

  .about-pill.teal {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
  }

  .about-pill.outline {
    background: var(--white);
    color: var(--teal);
    border-color: var(--teal);
  }

  .about-photo-wrap {
    position: relative;
    padding: 50px 60px 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-photo-stack {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    min-height: 440px;
  }

  .about-photo-wrap::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: var(--pink);
    opacity: 0.12;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    z-index: 0;
  }

  .about-photo-wrap::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--teal);
    opacity: 0.15;
    border-radius: 50%;
    bottom: 10%;
    right: 15%;
    z-index: 0;
  }

  .about-photo-secondary {
    position: absolute;
    left: 0;
    top: 14%;
    width: 54%;
    max-width: 250px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
    border: 5px solid var(--white);
  }

  .about-photo-main {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    width: 68%;
    max-width: 340px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 5px solid var(--white);
  }

  .about-quote {
    background: var(--light-teal);
    padding: 50px 60px;
    text-align: center;
  }

  .about-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto 12px;
    line-height: 1.4;
  }

  .about-quote blockquote .teal { color: var(--teal); font-style: italic; }
  .about-quote blockquote .pink { color: var(--pink); font-style: italic; }

  .about-quote cite {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink);
    font-style: normal;
  }

  .about-values {
    padding: 70px 60px;
    background: var(--white);
  }

  .about-values .section-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .about-value-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--light-gray);
    transition: transform .25s;
  }

  .about-value-card:hover { transform: translateY(-4px); }

  .about-value-icon {
    font-size: 32px;
    margin-bottom: 14px;
    line-height: 1;
  }

  .about-value-card h3 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 10px;
  }

  .about-value-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
  }

  .about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 70px 60px;
    background: var(--white);
  }

  .about-story-text p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-story-text strong { color: var(--dark); }

  .about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .about-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center center;
  }

  .about-gallery img:nth-child(2) {
    object-position: center top;
  }

  .about-cta-band {
    background: var(--teal);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .about-cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 8px;
  }

  .about-cta-band p {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
  }

  /* ─── CONTACT ─── */
  .contact-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--light-gray);
    overflow: hidden;
  }

  .contact-hero-content {
    padding: 70px 40px 70px 60px;
  }

  .contact-hero-content .hero-title {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .contact-hero-intro {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 28px;
  }

  .contact-hero-photo {
    position: relative;
    padding: 50px 60px 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-hero-photo::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: var(--teal);
    opacity: 0.12;
    border-radius: 50%;
    top: 20%;
    right: 20%;
    z-index: 0;
  }

  .contact-hero-photo img {
    position: relative;
    z-index: 1;
    max-width: 360px;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  }

  .contact-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--white);
  }

  .contact-form-wrap {
    padding: 60px;
    background: var(--white);
  }

  .contact-form-wrap .eyebrow { margin-bottom: 10px; }

  .contact-form-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 28px;
  }

  .contact-form-box {
    background: var(--light-gray);
    padding: 36px 40px;
  }

  .contact-alert {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-alert ul {
    margin: 0;
    padding-left: 18px;
  }

  .contact-alert-success {
    background: #e8f7f6;
    border: 1px solid #b8e4e1;
    color: #1f5f5c;
  }

  .contact-alert-error {
    background: #fde8ef;
    border: 1px solid #f5b8cc;
    color: #9c1444;
  }

  .contact-form label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 8px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-family: inherit;
    font-size: 13px;
    margin-bottom: 20px;
    background: var(--white);
    transition: border-color .2s;
  }

  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    outline: none;
    border-color: var(--teal);
  }

  .contact-form textarea { min-height: 130px; resize: vertical; }

  .contact-form button[type="submit"] {
    border: none;
    cursor: pointer;
    font-family: inherit;
  }

  .contact-aside {
    background: var(--teal);
    padding: 60px 50px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-aside h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
  }

  .contact-aside > p {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    color: var(--white);
    transition: background .2s;
  }

  .contact-info-card:hover {
    background: rgba(255,255,255,0.18);
    color: var(--white);
  }

  .contact-info-card svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--white);
  }

  .contact-info-card span {
    font-size: 13px;
    font-weight: 500;
  }

  .contact-aside .socials { margin-top: 4px; }

  .contact-aside .social-icon {
    color: var(--white);
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.15);
  }

  .contact-aside .social-icon:hover {
    background: rgba(255,255,255,0.3);
    border-color: var(--white);
  }

  .contact-steps {
    background: var(--light-teal);
    padding: 50px 60px;
    text-align: center;
  }

  .contact-steps .section-title { margin-bottom: 36px; }

  .contact-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
  }

  .contact-step {
    padding: 24px 20px;
  }

  .contact-step-num {
    width: 36px;
    height: 36px;
    background: var(--pink);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
  }

  .contact-step h3 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
  }

  .contact-step p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
  }

  @media (max-width: 900px) {
    .page-header, .page-content, .portfolio-page, .contact-grid { padding-left: 30px; padding-right: 30px; }
    .portfolio-page-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .about-hero { grid-template-columns: 1fr; }
    .about-hero-content { padding: 40px 30px 20px; }
    .about-photo-wrap { padding: 0 30px 40px; }
    .about-photo-stack {
      min-height: 380px;
      max-width: 420px;
      margin: 0 auto;
    }
    .about-photo-secondary {
      width: 52%;
      max-width: 210px;
      top: 18%;
    }
    .about-photo-main {
      width: 66%;
      max-width: 280px;
    }
    .about-quote { padding: 40px 30px; }
    .about-quote blockquote { font-size: 22px; }
    .about-values { padding: 50px 30px; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-story { grid-template-columns: 1fr; padding: 50px 30px; gap: 30px; }
    .about-cta-band { flex-direction: column; text-align: center; padding: 40px 30px; }
    .contact-hero { grid-template-columns: 1fr; }
    .contact-hero-content { padding: 40px 30px 20px; }
    .contact-hero-photo { padding: 0 30px 40px; }
    .contact-main { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 40px 30px; }
    .contact-form-box { padding: 28px 24px; }
    .contact-aside { padding: 40px 30px; }
    .contact-steps { padding: 40px 30px; }
    .contact-steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-layout {
      grid-template-columns: 1fr;
      padding: 40px 30px 50px;
      gap: 30px;
    }
    .service-image img { max-height: 360px; aspect-ratio: 16 / 10; }
  }

.home-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin: 0 auto 28px;
  max-width: 900px;
}

.home-stats span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
}

.about-team {
  padding: 60px 80px;
  background: var(--light-gray);
}

.about-team .about-story-text {
  max-width: 820px;
  margin: 0 auto;
}

.about-team p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-cta-band .socials {
  margin-top: 18px;
}

.footer-contact .socials {
  margin-top: 18px;
}

.service-back-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 80px 10px;
}

.page-intro {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
  color: var(--gray);
  line-height: 1.7;
}

.text-large {
  font-size: 1.15em;
}

@media (max-width: 768px) {
  .about-team { padding: 40px 30px; }
  .service-back-wrap { padding: 0 30px 10px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.portfolio-back-link {
  color: inherit;
  text-decoration: none;
}

.portfolio-back-link:hover { color: var(--pink); }

.portfolio-category-page {
  padding: 0 60px 70px;
  max-width: 1100px;
}

.portfolio-category-header {
  padding-bottom: 24px;
}

.portfolio-rubrique-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.portfolio-rubrique-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: var(--white);
  color: var(--dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}

.portfolio-rubrique-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.portfolio-rubrique-btn.active {
  background: #c8b8e8;
  border-color: #c8b8e8;
  color: var(--white);
}

.portfolio-item-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}

.portfolio-filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: var(--white);
  color: var(--dark);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.portfolio-filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.portfolio-filter-btn.active {
  background: #c8b8e8;
  border-color: #c8b8e8;
  color: var(--white);
}

.portfolio-sections {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.portfolio-item-section.is-hidden {
  display: none;
}

.portfolio-item-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.portfolio-item-section-inner.is-reverse .portfolio-item-section-text {
  order: 2;
}

.portfolio-item-section-inner.is-reverse .portfolio-item-section-media {
  order: 1;
}

.portfolio-item-section-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.portfolio-item-divider {
  width: 48px;
  height: 2px;
  background: var(--dark);
  margin-bottom: 24px;
}

.portfolio-item-section-media img,
.portfolio-item-section-media .portfolio-tile-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.portfolio-sections-band {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.portfolio-band-card {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.portfolio-band-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.portfolio-band-card span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio-category-intro p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.portfolio-tags-line {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-top: 8px;
}

.portfolio-tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.portfolio-tile {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.portfolio-tile img,
.portfolio-tile-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--light-gray);
}

.portfolio-tile-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
}

.portfolio-tile-label {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.portfolio-band-wrap {
  margin-top: 36px;
  overflow: hidden;
}

.portfolio-band {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.portfolio-band-item {
  flex: 0 0 220px;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  scroll-snap-align: start;
  text-align: left;
}

.portfolio-band-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.portfolio-band-item span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
}

.portfolio-wup-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
}

.portfolio-wup-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 16px;
}

.portfolio-wup-cta { margin-top: 28px; display: inline-flex; }

.portfolio-empty-state {
  margin-top: 36px;
  padding: 40px;
  background: var(--light-gray);
  text-align: center;
  color: var(--gray);
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.portfolio-modal[hidden] { display: none; }

.portfolio-modal-box {
  background: var(--white);
  width: min(920px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 28px 24px 32px;
}

.portfolio-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}

.portfolio-modal-title {
  font-family: var(--font-serif);
  font-size: 28px;
  margin: 0 48px 20px 0;
}

.portfolio-modal-gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.portfolio-modal-gallery img {
  flex: 0 0 min(85%, 640px);
  width: min(85%, 640px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  scroll-snap-align: start;
}

.portfolio-modal-video {
  aspect-ratio: 16 / 9;
  background: var(--dark);
}

.portfolio-modal-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .portfolio-category-page { padding: 0 30px 50px; }
  .portfolio-item-section-inner,
  .portfolio-item-section-inner.is-reverse {
    grid-template-columns: 1fr;
  }
  .portfolio-item-section-inner.is-reverse .portfolio-item-section-text,
  .portfolio-item-section-inner.is-reverse .portfolio-item-section-media {
    order: unset;
  }
  .portfolio-tiles-grid { grid-template-columns: 1fr; }
  .portfolio-band-item { flex-basis: 180px; }
  .portfolio-rubrique-nav,
  .portfolio-item-filters {
    gap: 8px;
  }
  .portfolio-rubrique-btn,
  .portfolio-filter-btn {
    padding: 8px 14px;
    font-size: 10px;
  }
}

