/* ============================================================
   DITCH THE CELLY — component styles
   ============================================================ */

/* ---------- countdown ---------- */
.countdown { display: inline-flex; align-items: center; gap: 8px; }
.countdown__unit {
  display: flex; flex-direction: column; align-items: center;
  background: var(--ink); color: var(--cream);
  border: 3px solid var(--ink); border-radius: 12px;
  padding: 8px 10px 6px; min-width: 64px;
  box-shadow: var(--shadow-hard);
}
.countdown__num { font-family: var(--font-pixel); font-weight: 700; font-size: 34px; line-height: 1; }
.countdown__lbl { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; opacity: .7; margin-top: 3px; }
.countdown__sep { font-family: var(--font-pixel); font-size: 26px; color: var(--ink); opacity: .55; }
.countdown--light .countdown__unit { background: var(--cream); color: var(--ink); }
.countdown--light .countdown__sep { color: var(--cream); }
.countdown--sm .countdown__unit { min-width: 50px; padding: 5px 7px 4px; border-radius: 9px; box-shadow: 3px 3px 0 var(--ink); }
.countdown--sm .countdown__num { font-size: 24px; }
.countdown--sm .countdown__sep { font-size: 18px; }

/* ============================================================
   HERO — shared
   ============================================================ */
.hero { padding-top: 92px; }

/* hero switcher (floating) */
.heroswitch {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 120;
  display: flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--cream);
  border: 3px solid var(--ink); border-radius: 999px;
  padding: 7px 9px 7px 16px; box-shadow: var(--shadow-hard);
}
.heroswitch__lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }
.heroswitch__btns { display: flex; gap: 5px; }
.heroswitch__b {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid var(--cream); background: transparent; color: var(--cream);
  font-family: var(--font-pixel); font-weight: 700; font-size: 16px; line-height: 1;
  display: grid; place-items: center; transition: .15s;
}
.heroswitch__b.on { background: var(--pink); border-color: var(--pink); color: var(--cream); }
.heroswitch__b:hover:not(.on) { border-color: var(--pink); color: var(--pink); }

/* ---------- HERO A — manifesto wall ---------- */
.heroA { overflow: hidden; }
.heroA__grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center;
  padding-block: clamp(24px, 4vw, 56px) clamp(40px, 6vw, 80px);
}
.heroA__kicker { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.heroA__word { font-family: var(--font-brush); font-size: clamp(34px, 5vw, 58px); line-height: .8; }
.heroA__head {
  font-family: var(--font-pixel); font-weight: 700; text-transform: uppercase;
  font-size: clamp(58px, 11vw, 150px); line-height: .82; margin: 0;
  letter-spacing: -.01em;
}
.heroA__head .l1 { color: var(--ink); }
.heroA__head .l2 { color: var(--pink); -webkit-text-stroke: 2px var(--ink); }
.heroA__head .dot { color: var(--green-deep); }
.heroA__sub { font-size: clamp(17px, 1.5vw, 21px); max-width: 30ch; margin: 26px 0 0; font-weight: 500; }
.heroA__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.heroA__count { margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.heroA__photo { position: relative; }
.heroA__photo .frame { aspect-ratio: 3/4; border-radius: 20px; border-width: 4px; }
.heroA__xfield {
  position: absolute; inset: -18px -18px auto auto; width: 60%; height: 60%;
  z-index: -1; opacity: .9; border-radius: 18px;
}

/* ---------- HERO B — full-bleed ---------- */
.heroB { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.heroB__img { position: absolute; inset: 0; }
.heroB__img img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 38%; }
.heroB__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,24,21,.55) 0%, rgba(26,24,21,0) 32%),
    linear-gradient(0deg, rgba(26,24,21,.86) 4%, rgba(26,24,21,.15) 46%, rgba(26,24,21,.3) 100%);
}
.heroB__inner { position: relative; z-index: 2; width: 100%; color: var(--cream); padding-block: 48px 64px; }
.heroB__word { font-family: var(--font-brush); color: var(--cream); font-size: clamp(46px, 9vw, 132px); line-height: .82;
  text-shadow: 4px 5px 0 rgba(0,0,0,.4); }
.heroB__word em { font-style: normal; color: var(--pink); }
.heroB__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-top: 18px; }
.heroB__sub { font-size: clamp(17px, 1.6vw, 22px); max-width: 34ch; font-weight: 500; }
.heroB__sub .pixel { color: var(--green); }
.heroB__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.heroB__count {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
  background: rgba(26,24,21,.5); border: 2.5px solid var(--cream); border-radius: 16px; padding: 14px 16px;
  backdrop-filter: blur(3px);
}
.heroB__count .mono { color: var(--cream); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }

/* ---------- HERO C — split poster ---------- */
.heroC__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 86vh; }
.heroC__left {
  background: var(--pink); color: var(--cream); position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(28px, 5vw, 72px); border-right: 4px solid var(--ink);
}
.heroC__left::before {
  content: ""; position: absolute; inset: 0; opacity: .25; z-index: 0;
  background-image: radial-gradient(var(--cream) 2px, transparent 2.5px); background-size: 18px 18px;
}
.heroC__lwrap { position: relative; z-index: 1; }
.heroC__circa { font-family: var(--font-mono); letter-spacing: .25em; text-transform: uppercase; font-size: 12px; }
.heroC__word { font-family: var(--font-brush); font-size: clamp(40px, 6vw, 76px); line-height: .82; margin: 14px 0 6px;
  text-shadow: 3px 4px 0 rgba(0,0,0,.35); }
.heroC__big {
  font-family: var(--font-pixel); font-weight: 700; text-transform: uppercase; line-height: .82;
  font-size: clamp(46px, 7.5vw, 104px);
}
.heroC__big .o { color: var(--ink); }
.heroC__big .g { color: var(--green); -webkit-text-stroke: 2px var(--ink); }
.heroC__sub { margin: 22px 0 0; max-width: 30ch; font-weight: 500; font-size: clamp(16px,1.4vw,20px); }
.heroC__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.heroC__count { margin-top: 26px; }
.heroC__right { position: relative; background: var(--ink); overflow: hidden; }
.heroC__right img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.heroC__tagwrap { position: absolute; z-index: 3; }

/* ============================================================
   MOVEMENT
   ============================================================ */
.movement { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.movement__head { max-width: none; }
.movement__statement {
  font-family: var(--font-pixel); font-weight: 700; text-transform: uppercase; line-height: .95;
  font-size: clamp(32px, 6vw, 76px); margin: 28px 0 0; max-width: none;
}
.movement__statement .pink { color: var(--pink); }
.movement__statement .green { color: var(--green-deep); }
.movement__statement .orange { color: var(--orange); }
.movement__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.movement__col h3 {
  font-family: var(--font-pixel); font-weight: 700; text-transform: uppercase; font-size: 22px;
  margin: 0 0 8px; display: flex; align-items: center; gap: 10px;
}
.movement__col p { margin: 0; font-size: 16px; opacity: .85; }
.movement__num { font-family: var(--font-mono); font-size: 13px; color: var(--pink); }
.movement__photos { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; margin-top: 56px; align-items: stretch; }
.movement__photos .frame:first-child { aspect-ratio: 16/10; }
.movement__photos .frame:last-child { aspect-ratio: 4/5; }

/* ============================================================
   PRODUCT
   ============================================================ */
.product { padding-block: clamp(64px, 9vw, 116px); background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.product__grid { display: grid; grid-template-columns: 1fr .92fr; gap: 52px; align-items: center; }
.product__gallery { display: grid; grid-template-columns: 1fr; gap: 16px; }
.product__main { position: relative; }
.product__main .frame { aspect-ratio: 4/5; border-color: var(--cream); }
.product__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product__thumb {
  aspect-ratio: 1; border: 3px solid var(--cream); border-radius: 12px; overflow: hidden; background: var(--ink);
  opacity: .55; transition: .15s; cursor: pointer; padding: 0;
}
.product__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product__thumb.on { opacity: 1; box-shadow: 4px 4px 0 var(--pink); }
.product__thumb:hover { opacity: 1; }
.product__info { }
.product__name { font-family: var(--font-pixel); font-weight: 700; text-transform: uppercase; font-size: clamp(36px, 5vw, 64px); line-height: .9; margin: 14px 0 0; }
.product__price { display: flex; align-items: baseline; gap: 14px; margin-top: 16px; }
.product__price b { font-family: var(--font-pixel); font-size: 40px; color: var(--green); }
.product__desc { margin: 18px 0 0; font-size: 17px; opacity: .85; max-width: 42ch; }
.product__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; opacity: .6; margin: 28px 0 10px; }
.sizes { display: flex; gap: 10px; flex-wrap: wrap; }
.size {
  min-width: 52px; padding: 12px 8px; border: 2.5px solid var(--cream); background: transparent; color: var(--cream);
  border-radius: 10px; font-family: var(--font-sans); font-weight: 700; font-size: 15px; transition: .12s;
}
.size:hover { border-color: var(--pink); }
.size.on { background: var(--cream); color: var(--ink); box-shadow: 3px 3px 0 var(--pink); }
.size.off, .size:disabled {
  opacity: .3; cursor: not-allowed; text-decoration: line-through;
  border-style: dashed;
}
.size.off:hover, .size:disabled:hover { border-color: var(--cream); }

/* garment selector */
.garments { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.garment {
  display: flex; flex-direction: column; gap: 4px; text-align: left;
  padding: 14px 16px; border: 2.5px solid var(--cream); background: transparent; color: var(--cream);
  border-radius: 14px; transition: .12s; cursor: pointer;
}
.garment:hover { border-color: var(--pink); }
.garment.on { background: var(--cream); color: var(--ink); box-shadow: 4px 4px 0 var(--green); }
.garment__tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green); align-self: flex-start;
  border: 1.5px solid currentColor; border-radius: 999px; padding: 2px 8px;
}
.garment.on .garment__tag { color: var(--pink-deep); }
.garment__name { font-family: var(--font-sans); font-weight: 700; font-size: 15px; line-height: 1.15; margin-top: 4px; }
.garment__blurb { font-family: var(--font-mono); font-size: 11px; opacity: .7; line-height: 1.3; }
.product__buy { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.product__meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 24px; }
.product__meta div { display: flex; align-items: center; gap: 8px; font-size: 13px; font-family: var(--font-mono); opacity: .8; }
.product__note { margin-top: 16px; font-family: var(--font-mono); font-size: 12px; color: var(--green); letter-spacing: .04em; }

/* ============================================================
   LOOKBOOK
   ============================================================ */
.lookbook { padding-block: clamp(64px, 9vw, 116px); }
.lookbook__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.lookbook__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 18px; margin-top: 44px; }
.lk { position: relative; overflow: hidden; border: 3px solid var(--ink); border-radius: 16px; background: var(--ink); box-shadow: var(--shadow-hard); }
.lk img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.lk:hover img { transform: scale(1.06); }
.lk__cap {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); background: rgba(26,24,21,.7); padding: 5px 10px; border-radius: 999px;
  opacity: 0; transform: translateY(6px); transition: .25s;
}
.lk:hover .lk__cap { opacity: 1; transform: translateY(0); }
.lk--tall { grid-row: span 2; }
.lk--wide { grid-column: span 2; }

/* ============================================================
   SIGNUP
   ============================================================ */
.signup { padding-block: clamp(60px, 8vw, 104px); }
.signup__card {
  position: relative; border: 4px solid var(--ink); border-radius: 26px; background: var(--green);
  box-shadow: var(--shadow-hard-lg); padding: clamp(30px, 5vw, 64px); overflow: hidden;
}
.signup__card::before {
  content: ""; position: absolute; inset: 0; opacity: .14; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ctext x='3' y='19' font-family='monospace' font-size='20' font-weight='700' fill='%231A1815'%3E%C3%97%3C/text%3E%3C/svg%3E");
  background-size: 26px 26px;
}
.signup__in { position: relative; z-index: 1; max-width: 640px; }
.signup__title { font-family: var(--font-pixel); font-weight: 700; text-transform: uppercase; line-height: .9; font-size: clamp(34px, 5.5vw, 70px); margin: 14px 0 0; }
.signup__sub { margin: 16px 0 0; font-size: 18px; font-weight: 500; max-width: 44ch; }
.signup__form { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.signup__form input {
  flex: 1 1 260px; min-width: 0; font-family: var(--font-sans); font-size: 16px; font-weight: 500;
  padding: 16px 20px; border: 3px solid var(--ink); border-radius: 999px; background: var(--cream); color: var(--ink);
  box-shadow: var(--shadow-hard); outline: none;
}
.signup__form input::placeholder { color: rgba(26,24,21,.5); }
.signup__form input:focus { box-shadow: 6px 6px 0 var(--ink); }
.signup__ok { margin-top: 20px; display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-pixel); font-weight: 700; font-size: 22px; }
.signup__err { margin-top: 10px; font-family: var(--font-mono); font-size: 13px; color: var(--pink-deep); }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.insta { padding-block: clamp(56px, 8vw, 100px); }
.insta__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.insta__handle { font-family: var(--font-pixel); font-weight: 700; text-transform: lowercase; font-size: clamp(28px, 4vw, 48px); }
.insta__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 36px; }
.ig {
  position: relative; aspect-ratio: 1; overflow: hidden; border: 3px solid var(--ink); border-radius: 12px; background: var(--ink);
}
.ig img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.ig:hover img { transform: scale(1.08); filter: saturate(1.15); }
.ig__ic { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; background: rgba(237,46,150,.55); transition: .2s; }
.ig:hover .ig__ic { opacity: 1; }
.ig__ic svg { width: 34px; height: 34px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-block: clamp(60px, 8vw, 104px); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: start; }
.faq__list { border-top: 3px solid var(--ink); }
.faq__item { border-bottom: 3px solid var(--ink); }
.faq__q {
  width: 100%; text-align: left; background: transparent; border: 0; padding: 22px 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--font-sans); font-weight: 700; font-size: clamp(17px, 1.7vw, 22px); color: var(--ink);
}
.faq__q:hover { color: var(--pink); }
.faq__plus { font-family: var(--font-pixel); font-size: 30px; line-height: 1; transition: transform .25s; flex: none; }
.faq__item.open .faq__plus { transform: rotate(45deg); color: var(--pink); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a > div { padding: 0 8px 24px; font-size: 16px; opacity: .85; max-width: 56ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding-block: clamp(56px, 7vw, 90px) 30px; position: relative; overflow: hidden; }
.footer__big { font-family: var(--font-brush); font-size: clamp(64px, 16vw, 230px); line-height: .8; color: var(--cream); }
.footer__big em { font-style: normal; color: var(--pink); }
.footer__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-top: 30px; }
.footer__links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer__col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; opacity: .5; margin: 0 0 12px; }
.footer__col a { display: block; font-size: 15px; padding: 4px 0; opacity: .9; }
.footer__col a:hover { color: var(--pink); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 50px; padding-top: 22px; border-top: 2px solid rgba(244,237,222,.18); }
.footer__bottom span { font-family: var(--font-mono); font-size: 12px; opacity: .6; }

/* ---------- shake + toast ---------- */
.shake { animation: shake .45s cubic-bezier(.36,.07,.19,.97); }
@keyframes shake {
  10%,90% { transform: translateX(-2px); } 20%,80% { transform: translateX(4px); }
  30%,50%,70% { transform: translateX(-7px); } 40%,60% { transform: translateX(7px); }
}
.toast {
  position: fixed; right: 18px; bottom: 78px; z-index: 200;
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--cream);
  border: 3px solid var(--ink); border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-hard-lg);
  transform: translateY(200%); opacity: 0; pointer-events: none;
  transition: transform .35s cubic-bezier(.2,1.3,.4,1), opacity .3s;
  max-width: min(86vw, 360px);
}
.toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.toast__ic { width: 40px; height: 40px; flex: none; display: grid; place-items: center; background: var(--green); border-radius: 9px; }
.toast b { font-family: var(--font-pixel); font-weight: 700; font-size: 17px; }
.toast small { display: block; font-family: var(--font-mono); font-size: 11px; opacity: .7; margin-top: 2px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .heroA__grid { grid-template-columns: 1fr; gap: 30px; }
  .heroA__photo { max-width: 460px; }
  .product__grid { grid-template-columns: 1fr; gap: 36px; }
  .movement__grid { grid-template-columns: 1fr; gap: 14px; }
  .movement__photos { grid-template-columns: 1fr; }
  .lookbook__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
  .faq__grid { grid-template-columns: 1fr; gap: 20px; }
  .heroC__grid { grid-template-columns: 1fr; }
  .heroC__right { min-height: 56vh; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .lookbook__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .lk--wide { grid-column: span 2; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
  .countdown__unit { min-width: 54px; }
  .countdown__num { font-size: 26px; }
  .heroswitch { padding: 6px 8px; }
  .heroswitch__lbl { display: none; }
}
