:root{
  --bg: #000000;
  --panel: #050505;
  --line: rgba(255,255,255,0.06);
  --line-soft: rgba(255,255,255,0.035);
  --white: #f4f4f4;
  --text: rgba(255,255,255,0.88);
  --muted: rgba(255,255,255,0.48);
  --gold: #d1a91f;
  --gold-soft: #c39b19;
  --sidebar-width: 335px;
  --content-max: 1180px;
  --header-height: 82px;
  --transition: 0.28s ease;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: inherit;
  text-decoration: none;
}

.page-shell{
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
}

/* HEADER */
.site-header{
  height: var(--header-height);
  width: calc(100% - 72px);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo{
  position: fixed;
  top: -10px;
  left: 56px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.logo img{
  width: 160px;
  height: auto;
  object-fit: contain;
}

.header-right{
  display: flex;
  align-items: center;
  gap: 46px;
}

.header-link,
.checkout-btn{
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: var(--gold);
  transition: var(--transition);
}

.header-link:hover{
  opacity: 0.7;
}

.checkout-btn{
  border: 1px solid rgba(209,169,31,0.4);
  padding: 18px 28px;
  min-width: 173px;
  text-align: center;
}

.checkout-btn:hover{
  background: rgba(209,169,31,0.08);
}

/* MENU TOGGLE */
.menu-toggle{
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
}

.menu-toggle span{
  position: absolute;
  left: 9px;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.menu-toggle span:first-child{
  top: 15px;
}

.menu-toggle span:last-child{
  top: 24px;
}

.menu-toggle.active span:first-child{
  transform: rotate(45deg);
  top: 20px;
}

.menu-toggle.active span:last-child{
  transform: rotate(-45deg);
  top: 20px;
}

/* MOBILE MENU */
.mobile-menu{
  display: none;
  width: calc(100% - 72px);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: #020202;
}

.mobile-menu.open{
  display: block;
}

.mobile-nav{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 0 28px;
}

.mobile-nav a{
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}

/* LAYOUT */
.home-layout{
  width: calc(100% - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  min-height: calc(100vh - var(--header-height));
  border-left: 1px solid var(--line-soft);
}

.left-sidebar{
  position: sticky;
  top: 130px;
  align-self: start;
  height: calc(100vh - 130px);
  border-right: 1px solid var(--line);
  padding: 0 44px 34px 44px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-nav{
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.category-nav a,
.category-nav-bottom a{
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  font-weight: 500;
  transition: var(--transition);
}

.category-nav a:hover,
.category-nav-bottom a:hover{
  opacity: 0.72;
  transform: translateX(2px);
}

.category-nav-bottom{
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 40px;
}

.insta-link{
  display: inline-flex;
  align-items: center;
}

.insta-link img{
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}
.insta-link svg{
  width: 18px;
  height: 18px;
  fill: var(--gold);
  transition: var(--transition);
}

.insta-link svg:hover{
  opacity: 0.7;
}

.main-content{
  padding: 48px 54px 0 54px;
  position: relative;
}

/* HERO */
.hero-section{
  border-left: 1px solid var(--line-soft);
  padding-left: 20px;
  margin-bottom: 88px;
}

.hero-inner{
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-visual{
  width: 100%;
  max-width: none;
  height: 620px;
  margin-left: auto;
  position: relative;
}

.hero-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay{
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  max-width: 980px;
}

.brand-title{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.brand-title-main{
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.9rem, 4.8vw, 4.6rem);
  line-height: 0.95;
  font-weight: 600;
  color: #ffffff;
}

.brand-title-logo{
  font-size: 1.9rem;
  color: #ffffff;
  line-height: 1;
}

.hero-tagline{
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  line-height: 0.9;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.055em;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.hero-actions{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 255px;
  height: 58px;
  padding: 0 24px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-gold{
  background: var(--gold);
  color: #0c0c0c;
}

.btn-gold:hover{
  background: #ddb737;
}

.btn-outline{
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
}

.btn-outline:hover{
  background: rgba(255,255,255,0.06);
}

/* SECTION HEAD */
.section-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.section-head h3{
  font-size: clamp(1.9rem, 2.7vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.view-all{
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

/* PRODUCTS */
.drops-section{
  padding-bottom: 100px;
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  align-items: start;
}

.product-card{
  display: flex;
  flex-direction: column;
}

.product-image{
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px; /* même hauteur pour les 3 */
  width: 100%;
  overflow: hidden;
}

.product-image img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image img{
  transform: scale(1.02);
}

.product-info{
  padding-top: 20px;
}

.product-info h4{
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-info p{
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 500;
}

/* EDITORIAL */
.editorial-section{
  display: grid;
  grid-template-columns: 1.18fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.manifesto-section{
  grid-template-columns: 1fr 1fr;
}

.editorial-image{
  width: 100%;
}

.editorial-image img{
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.editorial-content{
  max-width: 420px;
}

.eyebrow{
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  font-weight: 700;
  margin-bottom: 16px;
}

.editorial-content h3{
  font-size: clamp(2.6rem, 4.4vw, 4.9rem);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.editorial-content p{
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 390px;
  margin-bottom: 34px;
}

.editorial-link{
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

/* FOOTER */
.site-footer{
  padding-bottom: 52px;
}

.footer-top{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 120px;
  margin-bottom: 68px;
}

.footer-brand h4{
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 18px;
}

.footer-brand p{
  max-width: 420px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-links{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.footer-column{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column span{
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-column a{
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: var(--transition);
}

.footer-column a:hover{
  color: var(--white);
}

.footer-bottom{
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p{
  color: rgba(255,255,255,0.28);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.socials{
  display: flex;
  align-items: center;
  gap: 34px;
}

.socials a{
  color: rgba(255,255,255,0.28);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  transition: var(--transition);
}

.socials a:hover{
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 1280px){
  .hero-section{
    padding-left: 28px;
  }

  .main-content{
    padding: 36px 30px 0 30px;
  }

  .product-grid{
    gap: 34px;
  }

  .editorial-section{
    gap: 48px;
  }
}

@media (max-width: 1080px){
  .home-layout{
    grid-template-columns: 1fr;
  }

  .left-sidebar{
    display: none;
  }

  .main-content{
    padding: 34px 0 0;
  }

  .hero-section{
    border-left: none;
    padding-left: 0;
    margin-bottom: 72px;
  }

  .hero-overlay{
    left: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .editorial-section{
    grid-template-columns: 1fr;
  }

  .editorial-image img{
    max-width: 100%;
  }

  .footer-top{
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 860px){
  .site-header{
    width: calc(100% - 32px);
    height: 74px;
  }

  .mobile-menu{
    width: calc(100% - 32px);
  }

  .home-layout{
    width: calc(100% - 32px);
  }

  .header-right{
    display: none;
  }

  .menu-toggle{
    display: block;
  }

  .hero-inner{
    min-height: auto;
  }

  .hero-visual{
    min-height: 470px;
  }

  .hero-visual img{
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: center top;
  }

  .hero-overlay{
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .hero-tagline{
    margin-bottom: 22px;
  }

  .product-grid{
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-head{
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links{
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }

  .socials{
    gap: 18px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px){
  .site-header{
    width: calc(100% - 20px);
  }

  .mobile-menu{
    width: calc(100% - 20px);
  }

  .home-layout{
    width: calc(100% - 20px);
    border-left: none;
  }

  .logo img{
    width: 40px;
  }

  .hero-overlay{
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-title{
    gap: 8px;
  }

  .brand-title-logo{
    font-size: 1.4rem;
  }

  .btn{
    width: 100%;
    min-width: auto;
    height: 52px;
  }

  .hero-actions{
    flex-direction: column;
    gap: 12px;
  }

  .section-head h3{
    font-size: 1.9rem;
  }

  .editorial-section{
    padding: 58px 0 64px;
  }

  .editorial-content h3{
    font-size: 2.5rem;
  }

  .footer-links{
    grid-template-columns: 1fr;
  }
}

.manifesto-section{
  margin-top: 120px;
}
.site-footer{
  margin-top: 140px;
  padding-top: 40px;
}
.editorial-image{
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.editorial-image img{
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.editorial-image:hover img{
  transform: scale(1.06);
}
/* =========================
   TSHIRTS PAGE
========================= */

.shop-content{
  padding: 56px 68px 0 68px;
  border-left: 1px solid var(--line-soft);
  min-height: 100%;
}

.category-nav-shop a{
  position: relative;
  opacity: 0.72;
}

.category-nav-shop a.active{
  color: var(--gold);
  opacity: 1;
  padding-left: 22px;
}

.category-nav-shop a.active::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.shop-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 80px;
}

.shop-top-left{
  display: flex;
  align-items: center;
  gap: 24px;
}

.shop-top-left h1{
  font-size: 3.4rem;
  font-weight: 300;
  letter-spacing: -0.05em;
  color: #f2f2f2;
}

.shop-top-left span{
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  font-weight: 500;
  padding-top: 8px;
}

.shop-sort{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
}

.sort-arrow{
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
}

.shop-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 76px;
  row-gap: 104px;
}

.shop-card{
  display: flex;
  flex-direction: column;
}

.shop-card-image{
  width: 100%;
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-card-image img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.shop-card:hover .shop-card-image img{
  transform: scale(1.03);
}

.shop-card-info{
  padding-top: 34px;
}

.shop-card-info h3{
  color: var(--gold);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 10px;
}

.shop-card-info p{
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
}

.shop-view-all-wrap{
  margin-top: 82px;
  padding-top: 34px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: center;
  margin-bottom: 150px;
}

.shop-view-all{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
}

.shop-view-all:hover{
  opacity: 0.8;
}

.shop-view-all-arrow{
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-1px);
}

/* footer spacing page shop */
.shop-content .site-footer{
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid var(--line-soft);
}

.shop-content .footer-top{
  padding-top: 84px;
}

/* RESPONSIVE */
@media (max-width: 1400px){
  .shop-content{
    padding: 48px 42px 0 42px;
  }

  .shop-grid{
    column-gap: 42px;
  }
}

@media (max-width: 1080px){
  .shop-content{
    border-left: none;
    padding: 40px 0 0 0;
  }

  .shop-top{
    margin-bottom: 56px;
  }

  .shop-grid{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 34px;
    row-gap: 72px;
  }

  .shop-card-image{
    height: 360px;
  }
}

@media (max-width: 860px){
  .shop-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .shop-top-left{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .shop-top-left h1{
    font-size: 2.5rem;
  }

  .shop-top-left span{
    padding-top: 0;
  }

  .shop-grid{
    grid-template-columns: 1fr;
    row-gap: 56px;
  }

  .shop-card-image{
    height: 320px;
  }

  .shop-view-all-wrap{
    margin-bottom: 110px;
  }
}

@media (max-width: 560px){
  .shop-content{
    padding-top: 28px;
  }

  .shop-top{
    margin-bottom: 42px;
    padding-bottom: 24px;
  }

  .shop-top-left h1{
    font-size: 2rem;
  }

  .shop-sort{
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .shop-card-info h3{
    font-size: 0.92rem;
  }

  .shop-view-all{
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    gap: 12px;
  }

  .shop-view-all-arrow{
    font-size: 1.35rem;
  }
}