
/* ========================================
   ARTTREE FORGE — RESPONSIVE
======================================== */

/* ========================================
   MENU MOBILE — ÉTAT PAR DÉFAUT
======================================== */

.menu-toggle {
  display: none;
}

/* TABLETTE */
@media (max-width: 1024px) {

}


/* MOBILE */

@media (max-width:768px){

    /* ===========================
   HEADER MOBILE
=========================== */

.site-header {
  padding: 0;
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  transform: none;
  font-size: 1.65rem;
  line-height: 1;
  white-space: nowrap;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(212, 116, 43, 0.45);
  border-radius: 50%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent, #d4742b);
}

.main-nav {
  display: none;
}
.main-nav.is-open{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:1.5rem;

    position:absolute;
    top:100%;
    left:0;
    right:0;

    padding:2rem;

    background:#0b0b0c;

    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:999;

    box-shadow:0 18px 45px rgba(0,0,0,.45);
}
.site-header {
  overflow: visible;
}

.main-nav.is-open a {
  width: 100%;
  font-size: 1rem;
}
/* ===========================
   HERO MOBILE
=========================== */

.hero__layout{
    min-height:auto;
    padding-top:3rem;
    padding-bottom:4rem;

    display:grid;
    grid-template-columns:1fr;
    gap:3rem;

    align-items:start;
}

.hero__content{
    width:100%;
    max-width:none;
}

.hero__visual{
    width:100%;
    min-height:auto;
}
.hero-artwork {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.hero-artwork__frame {
  min-height: 320px;
}
.hero-artwork__overlay {
  padding-left: 4.5rem;
  padding-right: 2rem;
}
/* ===========================
   HERO MOBILE — PROMESSES
=========================== */

.hero__promise {
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
}

.hero__promise-item {
  gap: 0.1rem;
}

/* HERO MOBILE — ESPACEMENTS APRÈS LE VISUEL */

.hero__visual {
  margin-bottom: 0;
}

.hero__promise {
  margin-top: 0;
  padding-top: 1.25rem;
}

.hero-artwork__signature {
  margin-bottom: 0;
}
/* ===========================
   HERO MOBILE — LISIBILITÉ DES PROMESSES
=========================== */

.hero__promise-item strong {
  color: var(--text-main);
  font-size: 1.05rem;
}

.hero__promise-item span {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.45;
}
/* ===========================
   COLLECTIONS ACCUEIL
=========================== */

.collections__grid{
    grid-template-columns:1fr;
    gap:1.5rem;
}

.collection-tile{
    min-height:auto;
}

.collection-tile h3{
    font-size:clamp(2.2rem,10vw,3.2rem);
}

.collection-tile__image{
    aspect-ratio:16/10;
}
/* ===========================
   PROCESSUS — STRUCTURE MOBILE
=========================== */

.creation-process__timeline {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.creation-process__timeline::before {
  display: none;
}

.creation-step {
  min-height: auto;
  padding: 2rem;
}

.creation-step__content {
  margin-top: 3rem;
}
/* ===========================
   CTA ACCUEIL — MOBILE
=========================== */

.project-cta__inner {
  min-height: auto;
  padding: 2.5rem 2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.project-cta h2 {
  font-size: clamp(2.5rem, 12vw, 3.8rem);
}

.project-cta .button {
  width: 100%;
}
/* ===========================
   NOS CRÉATIONS — MOBILE
=========================== */

.home-gallery__grid {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.gallery-card {
  min-height: auto;
}

.gallery-card__image {
  height: auto;
  aspect-ratio: 1 / 1;
}
/* ===========================
   FOOTER — STRUCTURE MOBILE
=========================== */

.site-footer__inner {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.site-footer__nav {
  width: 100%;
}
/* ===========================
   NOS CRÉATIONS — ESPACEMENT
=========================== */

.home-gallery{
    padding:5rem 0;
}
/* =========================================
   COLLECTION FONDATRICE — MOBILE
========================================= */

  .collection-featured {
  grid-template-columns: 1fr !important;
  height: auto;
  min-height: 0;
  overflow: visible;
}

  .collection-featured__content {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-bottom: 2rem;
  }

  .collection-featured .collection-link {
    display: inline-flex;
    margin-top: 1.5rem;
  }

}





























