:root{ 
  --bg:#000;
  --panel:#050505;
  --text:#ffffff;
  --muted:#a7a7a7;
  --soft:#777;
  --line:#222;
  --line-strong:#333;
  --red:#ff2a2a;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  overflow-y:auto;
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  background:var(--bg);
  color:var(--text);
  font-family:"Inter", Arial, Helvetica, sans-serif;
  overflow-x:hidden;
  overflow-y:visible;
  position:relative;
}

body.modal-open{
  overflow:hidden;
}

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

a{
  text-decoration:none;
  color:inherit;
}

button{
  font:inherit;
}

/* LOADER */

#loader{
  position:fixed;
  inset:0;
  background:#000;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:9999;
  transition:opacity .9s ease, visibility .9s ease;
}

#loader.hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.sun-loader{
  width:110px;
  animation:spin 4s linear infinite;
  filter:drop-shadow(0 0 18px rgba(255,0,0,.85));
}

.loader-text{
  margin-top:18px;
  font-size:26px;
  letter-spacing:4px;
  text-transform:uppercase;
}

@keyframes spin{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

/* HEADER */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:2000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 7%;
  transition:.35s ease;
}

.site-header.scrolled{
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.brand-mark{
  font-family:"Cormorant Garamond", serif;
  font-size:30px;
  letter-spacing:1px;
}

.site-nav{
  display:flex;
  gap:28px;
}

.site-nav a{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#d0d0d0;
  transition:.25s ease;
}

.site-nav a:hover{
  color:#fff;
}

/* HERO */

.hero{
  position:relative;
  height:100svh;
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  background:#000;
  isolation:isolate;
}

.hero-scene{
  position:absolute;
  inset:0;
  z-index:0;
  opacity:0;
  transition:opacity 1.8s ease;
}

body.loaded .hero-scene{
  opacity:1;
}

.sky-gradient{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,180,60,.10), transparent 14%),
    radial-gradient(circle at 78% 16%, rgba(255,255,255,.03), transparent 20%),
    linear-gradient(180deg, rgba(7,20,36,.92) 0%, rgba(6,14,24,.96) 36%, rgba(0,0,0,1) 100%);
  animation:skyPulse 10s ease-in-out infinite alternate;
}

@keyframes skyPulse{
  from{transform:scale(1);}
  to{transform:scale(1.03);}
}

.art-texture{
  position:absolute;
  inset:0;
  opacity:.07;
  background:
    radial-gradient(circle at 14% 30%, rgba(255,195,0,0.20) 0 1%, transparent 1.3%),
    radial-gradient(circle at 24% 68%, rgba(255,84,84,0.15) 0 1%, transparent 1.3%),
    radial-gradient(circle at 48% 24%, rgba(255,255,255,0.12) 0 1%, transparent 1.3%),
    radial-gradient(circle at 62% 42%, rgba(30,165,106,0.12) 0 1%, transparent 1.3%),
    linear-gradient(120deg, transparent 0 12%, rgba(255,255,255,0.025) 12.2% 12.5%, transparent 12.8% 28%);
  mix-blend-mode:screen;
  animation:textureFloat 14s ease-in-out infinite alternate;
}

@keyframes textureFloat{
  from{transform:translateY(0);}
  to{transform:translateY(-8px);}
}

.cloud{
  position:absolute;
  width:220px;
  height:70px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  filter:blur(14px);
  opacity:.18;
  animation:drift linear infinite;
}

.cloud::before,
.cloud::after{
  content:"";
  position:absolute;
  background:inherit;
  border-radius:999px;
}

.cloud::before{
  width:100px;
  height:80px;
  left:24px;
  top:-16px;
}

.cloud::after{
  width:110px;
  height:76px;
  right:22px;
  top:-12px;
}

.c1{top:10%; left:-18%; animation-duration:42s;}
.c2{top:18%; left:-24%; animation-duration:58s; transform:scale(.82);}
.c3{top:6%; left:-20%; animation-duration:68s; transform:scale(.95);}

@keyframes drift{
  to{transform:translateX(145vw);}
}

.birds{
  position:absolute;
  inset:0;
  opacity:.26;
}

.bird{
  position:absolute;
  width:18px;
  height:8px;
  border-top:2px solid rgba(255,255,255,.7);
  border-radius:50%;
  animation:birdFly linear infinite;
}

.b1{top:16%; left:-6%; animation-duration:16s;}
.b2{top:22%; left:-10%; animation-duration:21s; transform:scale(1.2);}
.b3{top:12%; left:-8%; animation-duration:19s;}
.b4{top:28%; left:-12%; animation-duration:24s; transform:scale(.85);}

@keyframes birdFly{
  to{transform:translateX(115vw) translateY(-32px);}
}

.sun-bg{
  position:absolute;
  top:50%;
  left:50%;
  width:340px;
  height:340px;
  transform:translate(-50%,-50%);
  opacity:.045;
  z-index:1;
  animation:sunRotate 120s linear infinite;
}

.sun-bg img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:blur(1px) drop-shadow(0 0 40px rgba(255,0,0,.14));
}

@keyframes sunRotate{
  from{transform:translate(-50%,-50%) rotate(0deg);}
  to{transform:translate(-50%,-50%) rotate(360deg);}
}

.mountain-layer{
  position:absolute;
  left:0;
  right:0;
  bottom:20%;
  height:18%;
  opacity:.16;
  background:
    radial-gradient(ellipse at 8% 100%, #2f8f60 0 20%, transparent 20.5%),
    radial-gradient(ellipse at 28% 100%, #2c7d54 0 25%, transparent 25.5%),
    radial-gradient(ellipse at 46% 100%, #43a96b 0 22%, transparent 22.5%),
    radial-gradient(ellipse at 63% 100%, #2e8259 0 24%, transparent 24.5%),
    radial-gradient(ellipse at 82% 100%, #4ab875 0 26%, transparent 26.5%);
  animation:hillMove 8s ease-in-out infinite alternate;
  z-index:2;
}

@keyframes hillMove{
  from{transform:translateY(0);}
  to{transform:translateY(6px);}
}

.ground-layer{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:24%;
  background:linear-gradient(180deg, rgba(8,18,14,0), rgba(3,8,5,.55) 35%, #000 100%);
  z-index:2;
}

.palm-silhouettes{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:42%;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  padding:0 1.5vw;
  opacity:.18;
  z-index:2;
}

.palm{
  position:relative;
  width:120px;
  height:100%;
  transform-origin:bottom center;
  animation:palmSway 6s ease-in-out infinite alternate;
  filter:drop-shadow(0 20px 30px rgba(0,0,0,.45));
}

.palm.p2{transform:scale(.84); animation-duration:7.2s;}
.palm.p3{transform:scale(1.1); animation-duration:6.4s;}
.palm.p4{transform:scale(.72); animation-duration:8.2s;}

@keyframes palmSway{
  from{rotate:-2deg;}
  to{rotate:3deg;}
}

.trunk{
  position:absolute;
  left:50%;
  bottom:0;
  width:14px;
  height:72%;
  transform:translateX(-50%);
  background:linear-gradient(180deg, rgba(16,16,16,.8), rgba(0,0,0,1));
  border-radius:999px;
}

.frond{
  position:absolute;
  left:50%;
  top:10%;
  width:108px;
  height:22px;
  transform-origin:0% 50%;
  background:linear-gradient(90deg, rgba(10,10,10,.92), rgba(0,0,0,1));
  border-radius:999px;
  clip-path:polygon(0 50%, 18% 0, 34% 20%, 48% 0, 62% 18%, 76% 0, 100% 50%, 76% 100%, 62% 82%, 48% 100%, 34% 78%, 18% 100%);
}

.f1{transform:translate(-10%, 20px) rotate(-55deg);}
.f2{transform:translate(-10%, 8px) rotate(-24deg);}
.f3{transform:translate(-10%, 10px) rotate(6deg);}
.f4{transform:translate(-10%, 14px) rotate(34deg);}
.f5{transform:translate(-10%, 24px) rotate(58deg);}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center, transparent 0%, transparent 42%, rgba(0,0,0,.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10), transparent 30%, rgba(0,0,0,.72) 100%);
  z-index:4;
  pointer-events:none;
}

.hero-scene,
.sun-bg,
.art-texture,
.sky-gradient,
.mountain-layer,
.ground-layer,
.palm-silhouettes,
.birds{
  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:5;
  max-width:760px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.logo{
  width:220px;
  max-width:60vw;
  display:block;
  margin:0 auto 26px;
  animation:logoBounce 5s ease-in-out infinite;
}

@keyframes logoBounce{
  0%{transform:translateY(0);}
  50%{transform:translateY(-14px);}
  100%{transform:translateY(0);}
}

.hero-kicker{
  letter-spacing:5px;
  color:#8f8f8f;
  font-size:12px;
  text-transform:uppercase;
  margin-bottom:16px;
}

.hero h1{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(46px, 7vw, 84px);
  line-height:.94;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:12px;
  animation:textPulse 4s ease-in-out infinite;
}

@keyframes textPulse{
  0%{text-shadow:0 0 0 rgba(255,255,255,0);}
  50%{text-shadow:0 0 18px rgba(255,255,255,.08);}
  100%{text-shadow:0 0 0 rgba(255,255,255,0);}
}

.hero p{
  color:#a9a9a9;
  font-size:clamp(16px, 1.8vw, 20px);
  margin-bottom:28px;
}

.enter-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:190px;
  min-height:52px;
  padding:0 28px;
  border:1px solid rgba(255,255,255,.25);
  background:transparent;
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  cursor:pointer;
  transition:.3s ease;
}

.enter-btn:hover{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.55);
}

/* TICKER */

.ticker{
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
  background:#030303;
  padding:16px 0;
}

.ticker-track{
  display:flex;
  align-items:center;
  gap:26px;
  width:max-content;
  animation:tickerMove 30s linear infinite;
}

.ticker-track span{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:3px;
  color:#cfcfcf;
  white-space:nowrap;
}

.ticker-track img{
  width:18px;
  height:18px;
  flex:0 0 auto;
}

@keyframes tickerMove{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* COMMON */

.section-head{
  margin-bottom:52px;
}

.drop-title{
  letter-spacing:4px;
  color:#8e8e8e;
  font-size:13px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.drop-heading{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(40px, 5vw, 62px);
  line-height:1;
  margin-bottom:14px;
  text-transform:uppercase;
}

.drop-sub{
  color:#a9a9a9;
  max-width:760px;
  line-height:1.7;
  font-size:17px;
}

/* MOVEMENT */

.movement{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:#050505;
  padding:120px 20px;
}

.movement-wrap{
  max-width:940px;
}

.movement-kicker{
  letter-spacing:6px;
  color:#8e8e8e;
  font-size:12px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.movement h2{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(42px, 6vw, 76px);
  line-height:.98;
  text-transform:uppercase;
  margin-bottom:20px;
}

.movement p{
  color:#a9a9a9;
  max-width:780px;
  margin:0 auto 24px;
  line-height:1.7;
  font-size:clamp(18px, 2vw, 22px);
}

.movement-line{
  font-size:clamp(20px, 2.4vw, 28px);
  font-style:italic;
  color:#fff;
  opacity:.92;
}

/* SUN DIVIDER */

.sun-divider{
  padding:52px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  background:#000;
}

.sun-divider img{
  width:44px;
  height:44px;
  animation:spin 12s linear infinite;
  filter:drop-shadow(0 0 10px rgba(255,0,0,.35));
}

.sun-divider p{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:4px;
  color:#8e8e8e;
}

/* LIFESTYLE */

.lifestyle{
  position:relative;
  width:100%;
  height:85vh;
  min-height:520px;
  overflow:hidden;
  background:#000;
}

.lifestyle img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform 1.8s ease;
}

.lifestyle:hover img{
  transform:scale(1.03);
}

.lifestyle-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.10) 70%),
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 100%);
  z-index:1;
}

.lifestyle-text{
  position:absolute;
  left:7%;
  bottom:80px;
  max-width:520px;
  z-index:2;
}

.lifestyle-kicker{
  letter-spacing:5px;
  font-size:12px;
  text-transform:uppercase;
  color:var(--red);
  margin-bottom:18px;
}

.lifestyle h2{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(44px,6vw,88px);
  line-height:.94;
  text-transform:uppercase;
  margin-bottom:14px;
}

.lifestyle p{
  color:#d2d2d2;
  font-size:18px;
}

/* MEANING SECTION */

.meaning-section{
  padding:120px 7%;
  max-width:1200px;
  margin:0 auto;
}

.meaning-accordion{
  display:grid;
  gap:16px;
}

.meaning-item{
  border:1px solid #1e1e1e;
  border-radius:18px;
  background:#050505;
  padding:22px 24px;
}

.meaning-item summary{
  list-style:none;
  cursor:pointer;
  font-family:"Cormorant Garamond", serif;
  font-size:30px;
  line-height:1;
}

.meaning-item summary::-webkit-details-marker{
  display:none;
}

.meaning-item p{
  color:#a9a9a9;
  line-height:1.8;
  margin-top:14px;
  max-width:860px;
}

/* DIASPORA CITIES */

.diaspora-section{
  padding:110px 7% 120px;
  max-width:1320px;
  margin:0 auto;
}

.diaspora-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:18px;
}

.diaspora-card{
  border:1px solid #1c1c1c;
  border-radius:18px;
  background:#060606;
  padding:22px 18px;
  min-height:200px;
  transition:.3s ease;
}

.diaspora-card:hover,
.diaspora-card.active{
  border-color:#3a3a3a;
  transform:translateY(-4px);
}

.diaspora-card h3{
  font-family:"Cormorant Garamond", serif;
  font-size:30px;
  margin-bottom:12px;
}

.diaspora-card p{
  color:#9f9f9f;
  line-height:1.7;
  font-size:15px;
}

/* SYMBOL SECTION */

.symbol-section{
  padding:110px 7%;
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
  background:#020202;
}

.symbol-inner{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:320px 1fr;
  gap:48px;
  align-items:center;
}

.symbol-visual{
  display:flex;
  align-items:center;
  justify-content:center;
}

.symbol-visual img{
  width:180px;
  height:180px;
  animation:spin 16s linear infinite;
  filter:drop-shadow(0 0 24px rgba(255,0,0,.25));
}

.symbol-copy .drop-sub{
  max-width:720px;
}

/* LOOKBOOK */

.lookbook{
  padding:120px 7%;
  max-width:1400px;
  margin:0 auto;
}

.lookbook-strip{
  overflow-x:auto;
  margin-bottom:26px;
  padding-bottom:4px;
  scrollbar-width:none;
}

.lookbook-strip::-webkit-scrollbar{
  display:none;
}

.lookbook-strip-track{
  display:flex;
  gap:18px;
  width:max-content;
}

.lookbook-slide{
  width:340px;
  height:460px;
  overflow:hidden;
  border-radius:18px;
  border:1px solid #1b1b1b;
  background:#080808;
  flex:0 0 auto;
}

.lookbook-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.lookbook-grid{
  display:grid;
  grid-template-columns:1.45fr 1fr 1fr;
  gap:22px;
}

.lookbook-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  border:1px solid #1b1b1b;
  background:#080808;
  min-height:320px;
}

.lookbook-card.large{
  grid-row:span 2;
  min-height:664px;
}

.lookbook-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s ease;
}

.lookbook-card:hover img{
  transform:scale(1.04);
}

/* MANIFESTO */

.manifesto{
  padding:90px 20px;
  background:#020202;
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.manifesto-inner{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.manifesto-inner img{
  width:42px;
  height:42px;
  margin:0 auto 18px;
  animation:spin 14s linear infinite;
}

.manifesto-inner p{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(32px,4.5vw,58px);
  line-height:1.04;
  letter-spacing:.3px;
}

/* DROP NOTES */

.drop-notes{
  padding:120px 7%;
  max-width:1320px;
  margin:0 auto;
}

.notes-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}

.note-card{
  border:1px solid #1d1d1d;
  border-radius:18px;
  background:#060606;
  padding:24px 20px;
  min-height:180px;
}

.note-card h3{
  font-family:"Cormorant Garamond", serif;
  font-size:28px;
  margin-bottom:12px;
}

.note-card p{
  color:#9f9f9f;
  line-height:1.7;
  font-size:15px;
}

/* PRODUCTS */

.products{
  padding:110px 7% 120px;
  max-width:1100px;
  margin:0 auto;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:28px;
}

.product-card{
  border:1px solid #222;
  border-radius:24px;
  background:#050505;
  padding:26px;
  transition:.35s ease;
}

.product-card:hover{
  transform:translateY(-6px);
  border-color:#333;
}

.product-image{
  position:relative;
  height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
}

.product-image img{
  position:absolute;
  width:210px;
  max-width:82%;
  height:auto;
  object-fit:contain;
  transition:opacity .35s ease, transform .35s ease;
  filter:drop-shadow(0 18px 30px rgba(0,0,0,.5));
  pointer-events:none;
}

.product-image .back{
  opacity:0;
  transform:scale(.96);
}

.product-card:hover .front{
  opacity:0;
  transform:scale(.96);
}

.product-card:hover .back{
  opacity:1;
  transform:scale(1);
}

.product-card.is-flipped .front{
  opacity:0;
  transform:scale(.96);
}

.product-card.is-flipped .back{
  opacity:1;
  transform:scale(1);
}

.flip-toggle{
  display:none;
  margin-top:12px;
  width:100%;
  height:40px;
  border:1px solid #2a2a2a;
  background:transparent;
  color:#d8d8d8;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  cursor:pointer;
  transition:.25s ease;
}

.flip-toggle:hover{
  border-color:#555;
  color:#fff;
}

.product-info{
  margin-top:20px;
}

.product-type{
  font-size:12px;
  letter-spacing:3px;
  color:#777;
  margin-bottom:10px;
  text-transform:uppercase;
}

.product-info h3{
  font-family:"Cormorant Garamond", serif;
  font-size:28px;
  margin-bottom:16px;
}

.product-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.product-status{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--red);
}

.product-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:132px;
  min-height:42px;
  border:1px solid #444;
  background:transparent;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#fff;
  cursor:pointer;
  transition:.3s ease;
}

.product-btn:hover{
  border-color:#fff;
  background:rgba(255,255,255,.04);
}

/* COMING NEXT */

.coming-next{
  padding:120px 7%;
  max-width:1100px;
  margin:0 auto;
}

.next-card{
  border:1px solid #1f1f1f;
  border-radius:22px;
  background:linear-gradient(180deg, #080808, #030303);
  padding:34px 28px;
  min-height:240px;
}

.next-label{
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--red);
  margin-bottom:14px;
}

.next-card h3{
  font-family:"Cormorant Garamond", serif;
  font-size:54px;
  line-height:1;
  margin-bottom:12px;
}

.next-card p{
  color:#a6a6a6;
  line-height:1.8;
  max-width:540px;
}

/* JOIN SECTION */

.join-section{
  padding:120px 7%;
  max-width:1100px;
  margin:0 auto;
}

.join-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  max-width:860px;
}

.join-form input{
  width:100%;
  height:58px;
  border:1px solid #262626;
  border-radius:999px;
  background:#050505;
  color:#fff;
  padding:0 22px;
  outline:none;
  font-size:15px;
}

.join-form input::placeholder{
  color:#727272;
}

.join-form button{
  grid-column:1 / -1;
  height:58px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:#fff;
  color:#000;
  text-transform:uppercase;
  letter-spacing:2px;
  cursor:pointer;
}

.join-message{
  margin-top:18px;
  min-height:24px;
  color:#cfcfcf;
  font-size:14px;
  line-height:1.6;
}

/* FOOTER */

.site-footer{
  border-top:1px solid rgba(255,255,255,.06);
  background:#020202;
  padding:44px 7%;
}

.footer-inner{
  display:grid;
  grid-template-columns:1.2fr 1fr auto;
  gap:20px;
  align-items:end;
}

.footer-brand h3{
  font-family:"Cormorant Garamond", serif;
  font-size:34px;
  margin-bottom:6px;
}

.footer-brand p{
  color:#9a9a9a;
}

.footer-links{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.footer-links a{
  color:#d0d0d0;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.footer-copy{
  color:#808080;
  font-size:12px;
  letter-spacing:1px;
}

/* MODAL */

.modal{
  position:fixed;
  inset:0;
  z-index:3000;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.3s ease;
}

.modal.open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(6px);
}

.modal-panel{
  position:relative;
  width:min(920px, calc(100% - 32px));
  margin:7vh auto 0;
  background:#0a0a0a;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:28px;
  z-index:1;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.modal-close{
  position:absolute;
  top:16px;
  right:18px;
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.modal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center;
}

.modal-image-wrap{
  background:#050505;
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:26px;
}

.modal-image-wrap img{
  max-height:360px;
  width:auto;
}

.modal-type{
  font-size:12px;
  letter-spacing:3px;
  color:#777;
  text-transform:uppercase;
  margin-bottom:10px;
}

.modal-content h3{
  font-family:"Cormorant Garamond", serif;
  font-size:38px;
  margin-bottom:10px;
}

.modal-status{
  display:inline-block;
  margin-bottom:16px;
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--red);
}

.modal-desc{
  color:#aaa;
  line-height:1.7;
  margin-bottom:16px;
}

.modal-note{
  color:#d0d0d0;
  line-height:1.7;
  margin-bottom:24px;
}

.request-access-btn{
  min-width:180px;
  height:50px;
  border:1px solid rgba(255,255,255,.2);
  background:#fff;
  color:#000;
  text-transform:uppercase;
  letter-spacing:2px;
  cursor:pointer;
}

/* REVEAL */

.reveal{
  opacity:0;
  transform:translateY(42px);
  transition:opacity .9s ease, transform .9s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:1100px){
  .lookbook-grid{
    grid-template-columns:1fr 1fr;
  }

  .lookbook-card.large{
    grid-column:1 / -1;
    grid-row:auto;
    min-height:500px;
  }

  .lifestyle{
    height:72vh;
  }

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

  .diaspora-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .notes-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .symbol-inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .symbol-copy .drop-sub{
    margin:0 auto;
  }
}

@media(max-width:980px){
  .product-grid{
    grid-template-columns:1fr;
  }

  .product-image{
    height:280px;
  }

  .product-image img{
    width:190px;
  }

  .lifestyle{
    height:72vh;
    min-height:500px;
  }

  .lifestyle-text{
    left:6%;
    right:6%;
    bottom:48px;
  }

  .footer-inner{
    grid-template-columns:1fr;
    gap:22px;
    text-align:center;
  }

  .footer-links{
    justify-content:center;
  }
}

@media(max-width:768px){
  .site-header{
    padding:18px 16px;
  }

  .brand-mark{
    font-size:26px;
  }

  .site-nav{
    gap:14px;
  }

  .site-nav a{
    font-size:11px;
    letter-spacing:1.5px;
  }

  .logo{
    width:170px;
  }

  .sun-bg{
    width:260px;
    height:260px;
  }

  .palm:nth-child(n+4){
    display:none;
  }

  .ticker{
    display:none;
  }

  .hero{
    height:100svh;
    min-height:100svh;
  }

  .movement{
    min-height:auto;
    padding:90px 16px;
  }

  .meaning-section,
  .diaspora-section,
  .symbol-section,
  .lookbook,
  .drop-notes,
  .products,
  .coming-next,
  .join-section{
    padding-left:16px;
    padding-right:16px;
  }

  .products,
  .lookbook,
  .drop-notes,
  .coming-next,
  .join-section{
    padding-top:90px;
    padding-bottom:100px;
  }

  .product-image{
    height:250px;
  }

  .product-image img{
    width:180px;
  }

  .flip-toggle{
    display:block;
  }

  .lifestyle{
    min-height:420px;
    height:auto;
    overflow:hidden;
  }

  .lifestyle-overlay{
    background:
      linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.20) 35%, rgba(0,0,0,.72) 100%);
  }

  .lifestyle img{
    object-position:60% center;
  }

  .lifestyle-text{
    left:18px;
    right:18px;
    bottom:26px;
    max-width:none;
  }

  .lifestyle-kicker{
    font-size:11px;
    letter-spacing:4px;
    margin-bottom:10px;
  }

  .lifestyle h2{
    font-size:clamp(32px, 10vw, 52px);
    margin-bottom:12px;
  }

  .lifestyle p{
    font-size:15px;
    max-width:320px;
  }

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

  .lookbook-card,
  .lookbook-card.large{
    min-height:320px;
  }

  .lookbook-slide{
    width:260px;
    height:360px;
  }

  .hero h1{
    font-size:56px;
  }

  .modal-panel{
    width:min(100% - 20px, 920px);
    margin-top:20px;
    padding:22px;
  }

  .modal-image-wrap{
    min-height:280px;
  }

  .modal-image-wrap img{
    max-height:240px;
  }

  .modal-content h3{
    font-size:30px;
  }

  .manifesto{
    padding:72px 18px;
  }

  .diaspora-grid,
  .notes-grid{
    grid-template-columns:1fr;
  }

  .join-form{
    grid-template-columns:1fr;
  }

  .meaning-item summary{
    font-size:24px;
  }

  .next-card h3{
    font-size:42px;
  }
}