/* =========================
   AURUM — Minimal Editorial UI
   Palette:
   Lilac Ash: #BCABAE
   Onyx:      #0F0F0F
   Graphite:  #2D2E2E
   Dim Grey:  #716969
   White:     #FBFBFB
========================= */

:root{
  --lilac: #BCABAE;
  --onyx: #0F0F0F;
  --graphite: #2D2E2E;
  --dim: #716969;
  --white: #FBFBFB;

  --bg: var(--white);
  --text: var(--onyx);
  --muted: var(--dim);
  --card: rgba(45, 46, 46, 0.06);
  --border: rgba(45, 46, 46, 0.18);

  --radius: 18px;
  --shadow: 0 18px 40px rgba(15, 15, 15, 0.12);
  --max: 1160px;
}

*{ box-sizing: border-box; }

html{
  background: #0F0F0F; /* what shows behind Safari chrome */
}

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0.2px;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}


body::before{
  content:"";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top);
  background: #0F0F0F;
  z-index: 99999;
  pointer-events: none;
}


a{ color: inherit; text-decoration: none; }
p{ margin: 0; }
h1,h2,h3{ margin: 0; font-weight: 650; letter-spacing: -0.5px; }

.muted{ color: var(--muted); }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Topbar */
.topbar{
  background: var(--onyx);
  color: var(--white);
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.topbar p{
  max-width: var(--max);
  margin: 0 auto;
  opacity: 0.9;
}

/* ===== FULL SCREEN RESPONSIVE BANNER ===== */

.page-banner{
  width: 100%;
  height: 70vh;
  min-height: 360px;
  max-height: 680px;
  overflow: hidden;
  position: relative;
}

.page-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* luxury overlay */
.page-banner::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15,15,15,0.12) 0%,
    rgba(15,15,15,0.30) 60%,
    rgba(15,15,15,0.45) 100%
  );
  pointer-events: none;
}

/* Centered banner text */

.banner-text{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  color: #FBFBFB;
}

.banner-text h1{
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 2px;
  margin: 0;
}

.banner-text p{
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  opacity: 0.8;
}

/* Mobile tweak */
@media (max-width: 640px){
  .page-banner{
    height: 50vh;
    min-height: 240px;
  }
}



/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0F0F0F;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: calc(16px + env(safe-area-inset-top)) 16px 16px 16px;
  color:#FBFBFB;
}
.header > *{
  max-width: var(--max);
}
.brand{
  font-size: 18px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Generic "cover" image helper */
.cover{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Hero visual now holds an image */
.hero-visual{
  position: relative;
  overflow: hidden;
}
.hero-visual::after{
  content: "";
  position: absolute;
  inset: 0;
  /* subtle editorial overlay so text card always pops */
  background: linear-gradient(
    180deg,
    rgba(15,15,15,0.10) 0%,
    rgba(15,15,15,0.35) 55%,
    rgba(15,15,15,0.55) 100%
  );
  pointer-events: none;
}
.hero-visual > img.cover{
  position: absolute;
  inset: 0;
}

/* Product images */
/* Products: keep original size (same as gradient version) */
.product-img{
  height: 210px;      /* original */
  overflow: hidden;
  background: none;
}

/* Make the image fill that 210px box cleanly */
.product-img .cover{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lookbook images */
.look{
  position: relative;
  overflow: hidden;
  background: none; /* remove gradient */
}
.look > img.cover{
  position: absolute;
  inset: 0;
}


.brand.small{
  font-size: 14px;
  letter-spacing: 5px;
}

.nav{
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a{
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #FBFBFB;
  padding: 10px 10px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}
.nav a:hover{
  background: #BCABAE;
  color: var(--onyx);
}

.header-actions{
  display: flex;
  gap: 8px;
}
.icon-btn{
  border: 1px solid var(--border);
  background: transparent;
  color: var(--onyx);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 140ms ease, background 180ms ease;
}
.icon-btn:hover{
  background: rgba(45, 46, 46, 0.06);
  transform: translateY(-1px);
}

/* Layout helpers */
.section{
  padding: 72px 16px;
}
.section .section-head{
  max-width: var(--max);
  margin: 0 auto 22px auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.section-head h2{
  font-size: 28px;
}
.section-head p{
  color: var(--muted);
  max-width: 520px;
  line-height: 1.4;
}

/* Hero */
.hero{
  padding: 64px 16px 18px 16px;
}
.hero-inner{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}
.hero-copy{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  background:
    radial-gradient(900px 380px at 10% 0%, rgba(188, 171, 174, 0.35), transparent 60%),
    linear-gradient(180deg, rgba(45, 46, 46, 0.03), transparent 30%);
  box-shadow: var(--shadow);
}
.eyebrow{
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 12px;
  color: rgba(15, 15, 15, 0.70);
}
.hero h1{
  font-size: 52px;
  line-height: 0.98;
  margin-top: 12px;
}
.subhead{
  margin-top: 14px;
  max-width: 50ch;
  color: var(--muted);
  line-height: 1.55;
}

.hero-cta{
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid var(--border);
  transition: transform 140ms ease, background 180ms ease, color 180ms ease;
}
.btn.primary{
  background: var(--onyx);
  color: var(--white);
  border-color: var(--onyx);
}
.btn.primary:hover{ transform: translateY(-1px); }
.btn.ghost{
  background: transparent;
  color: var(--onyx);
}
.btn.ghost:hover{
  background: rgba(188, 171, 174, 0.22);
  transform: translateY(-1px);
}

.hero-metrics{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}
.metric{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 14px;
  background: rgba(251, 251, 251, 0.65);
}
.metric-num{
  display: block;
  font-weight: 700;
  letter-spacing: 1px;
}
.metric-label{
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.hero-card{
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(340px, calc(100% - 36px));
  border: 1px solid rgba(251, 251, 251, 0.18);
  border-radius: 18px;
  padding: 16px;
  background: rgba(15, 15, 15, 0.45);
  backdrop-filter: blur(10px);
}
.hero-card-top{
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}
.pill{
  border: 1px solid rgba(251, 251, 251, 0.25);
  color: rgba(251, 251, 251, 0.92);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.pill-soft{
  background: rgba(188, 171, 174, 0.18);
  border-color: rgba(188, 171, 174, 0.35);
}
.hero-card-mid{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.swatch{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(251, 251, 251, 0.16);
}
.swatch-1{ background: #BCABAE; }
.swatch-2{ background: #716969; }
.swatch-3{ background: #2D2E2E; }

.hero-card-text{
  margin-top: 12px;
  color: rgba(251, 251, 251, 0.82);
  line-height: 1.45;
  font-size: 13px;
}

/* Product grid */
.grid{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.product{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(45, 46, 46, 0.03);
  transition: transform 160ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.product:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15,15,15,0.10);
  border-color: rgba(188, 171, 174, 0.55);
}

.product-img.alt{
  background:
    radial-gradient(520px 240px at 60% 20%, rgba(188, 171, 174, 0.25), transparent 60%),
    linear-gradient(135deg, rgba(45, 46, 46, 0.92), rgba(15, 15, 15, 0.92));
}
.product-img.soft{
  background:
    radial-gradient(520px 240px at 30% 20%, rgba(251, 251, 251, 0.55), transparent 60%),
    linear-gradient(135deg, rgba(188, 171, 174, 0.95), rgba(113, 105, 105, 0.90));
}
.product-img.light{
  background:
    radial-gradient(520px 240px at 30% 20%, rgba(188, 171, 174, 0.18), transparent 60%),
    linear-gradient(135deg, rgba(251, 251, 251, 0.95), rgba(45, 46, 46, 0.14));
}
.product-meta{
  padding: 16px 16px 18px 16px;
}
.product-meta h3{
  font-size: 16px;
}
.product-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.price{
  font-weight: 700;
  letter-spacing: 0.4px;
}
.link{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(15, 15, 15, 0.82);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: background 180ms ease, transform 140ms ease;
}
.link:hover{
  background: rgba(188, 171, 174, 0.22);
  transform: translateY(-1px);
}

/* Dark section */
.section.dark{
  background: var(--onyx);
  color: var(--white);
}
.section.dark .section-head p,
.section.dark .muted{
  color: rgba(251, 251, 251, 0.72);
}
.section.dark .section-head{
  margin-bottom: 26px;
}

.lookbook{
  width: min(900px, 88vw);   /* ← smaller max size */
  margin: auto;        /* ← vertical spacing + perfect centering */
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.look{
  overflow: hidden;
  border-radius: var(--radius);
}

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

/* left: vertical */
.look.big{
  aspect-ratio: 2 / 3;
  grid-column: 1;
  grid-row: 1 / span 2;
}

/* right: two horizontals stacked */
.look:not(.big){
  aspect-ratio: 3 / 2;
  grid-column: 2;
}

/* mobile: stack */
@media (max-width: 800px){
  .lookbook{
    grid-template-columns: 1fr;
  }

  .look.big,
  .look:not(.big){
    grid-column: auto;
    grid-row: auto;
  }

  .look.big{
    aspect-ratio: 2 / 3;
  }

  .look:not(.big){
    aspect-ratio: 3 / 2;
  }
}


.split{
  max-width: var(--max);
  margin: 18px auto 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.callout{
  border-radius: var(--radius);
  border: 1px solid rgba(188, 171, 174, 0.35);
  background: rgba(188, 171, 174, 0.12);
  padding: 18px;
}
.callout-title{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 8px;
  color: rgba(251, 251, 251, 0.92);
}

/* About */
.about{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* About copy block (fits AURUM theme) */
.about-copy{
  max-width: var(--max);
  margin: 14px auto 0 auto;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  padding: 22px;
  background:
    radial-gradient(700px 240px at 10% 0%, rgba(188, 171, 174, 0.22), transparent 55%),
    rgba(45, 46, 46, 0.02);
}

.about-lede{
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.2px;
  max-width: 68ch;
}

.about-copy .muted{
  margin-top: 10px;
  line-height: 1.6;
  max-width: 78ch;
}

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

.note{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 14px;
  background: rgba(251, 251, 251, 0.65);
}

.note-kicker{
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: rgba(15, 15, 15, 0.70);
}

.note-text{
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* responsive */
@media (max-width: 980px){
  .about-notes{ grid-template-columns: 1fr; }
}

.about-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(45, 46, 46, 0.03);
}

/* Newsletter */
.newsletter{
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid rgba(251,251,251,0.15);
  border-radius: calc(var(--radius) + 6px);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  background:
    radial-gradient(700px 240px at 10% 0%, rgba(188,171,174,0.22), transparent 55%),
    rgba(15,15,15,0.92);

  color: var(--white);
}

.newsletter .muted{
  color: rgba(251,251,251,0.7);
}

.newsletter input[type="email"]{
  background: rgba(15,15,15,0.75);
  border-color: rgba(251,251,251,0.18);
  color: var(--white);
}

.newsletter input[type="email"]::placeholder{
  color: rgba(251,251,251,0.55);
}

.newsletter input[type="email"]:focus{
  border-color: rgba(188,171,174,0.8);
  box-shadow: 0 0 0 4px rgba(188,171,174,0.18);
}

.newsletter .btn.primary{
  background: var(--white);
  color: var(--onyx);
  border-color: var(--white);
}

.newsletter .btn.primary:hover{
  transform: translateY(-1px);
}


.form{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
input[type="email"]{
  width: min(360px, 72vw);
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(251, 251, 251, 0.9);
  outline: none;
}
input[type="email"]::placeholder{ color: rgba(113, 105, 105, 0.95); }
input[type="email"]:focus{
  border-color: rgba(188, 171, 174, 0.9);
  box-shadow: 0 0 0 4px rgba(188, 171, 174, 0.18);
}

/* Footer */
.footer{
  border-top: 1px solid var(--border);
  padding: 28px 16px;
}
.footer-inner{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}
.footer-links{
  display: grid;
  gap: 10px;
  justify-items: end;
}
.footer-links a{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(15, 15, 15, 0.78);
}
.footer-links a:hover{ color: var(--onyx); }
.fineprint{
  max-width: var(--max);
  margin: 18px auto 0 auto;
  color: rgba(113, 105, 105, 0.95);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ min-height: 340px; }
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lookbook{ grid-template-columns: 1fr; }
  .look.big{ height: 320px; }
  .split{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .section .section-head{ flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px){
  .nav{ display: none; } /* keep it clean; add a hamburger later if you want */
  .hero h1{ font-size: 40px; }
  .hero-copy{ padding: 22px; }
  .hero-metrics{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .newsletter{ flex-direction: column; align-items: flex-start; }
}

/* ===== Featured Collection -> 3 horizontal outfit rows ===== */

.outfits{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.outfit{
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(45, 46, 46, 0.02);
  overflow: hidden;
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 520px;   /* was ~260 — now much taller */
}

.outfit.outfit--swap{
  flex-direction: row-reverse;
}

/* only the outfit that has the swap class */
.outfit.outfit--swap{
  grid-template-columns: 1fr 380px; /* gallery first, info second */
}

.outfit.outfit--swap .outfit-info{
  grid-column: 2;
  border-right: 0;
  border-left: 1px solid var(--border);
}

.outfit.outfit--swap .outfit-gallery{
  grid-column: 1;
}

/* Dark themed middle outfit */
.outfit.outfit--swap{
  background: var(--onyx);
  color: var(--white);
}

/* Info panel */
.outfit.outfit--swap .outfit-info{
  background:
    radial-gradient(520px 220px at 100% 0%, rgba(188,171,174,0.25), transparent 60%),
    rgba(15,15,15,0.9);
  border-left: 1px solid rgba(251,251,251,0.18);
}

/* Text */
.outfit.outfit--swap .outfit-tag,
.outfit.outfit--swap h3,
.outfit.outfit--swap .muted{
  color: rgba(251,251,251,0.85);
}

/* List items */
.outfit.outfit--swap .outfit-list li{
  background: rgba(15,15,15,0.75);
  border-color: rgba(251,251,251,0.18);
  color: rgba(251,251,251,0.85);
}

/* Carousel tiles */
.outfit.outfit--swap .carousel .tile{
  border-color: rgba(251,251,251,0.18);
}

/* Buttons */
.outfit.outfit--swap .car-btn{
  background: rgba(15,15,15,0.65);
  color: var(--white);
  border-color: rgba(251,251,251,0.2);
}


.outfit-info{
  padding: 18px;
  border-right: 1px solid var(--border);
  background:
    radial-gradient(520px 220px at 0% 0%, rgba(188, 171, 174, 0.28), transparent 60%),
    rgba(251, 251, 251, 0.65);
}

.outfit-tag{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(15, 15, 15, 0.72);
}

.outfit-info h3{
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.outfit-list{
  margin: 14px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(15, 15, 15, 0.82);
}

.outfit-list li{
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(251, 251, 251, 0.8);
}

.outfit-actions{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   CAROUSEL FIXES (UPDATED)
   - Make buttons overlay the carousel so Next never gets pushed off-screen
   - Leave room via padding
========================= */

.outfit-gallery{
  position: relative;
  display: block;          /* CHANGED: was flex */
  padding: 20px 72px;      /* CHANGED: room for overlay buttons */
  min-width: 0;
}

/* Track */
.carousel{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 8px 2px;
  width: 100%;
  min-width: 0;            /* IMPORTANT for flex scroll */
  scrollbar-width: none;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}
.carousel::-webkit-scrollbar{ height: 0; }

.carousel .tile{
  flex-shrink: 0;
  flex: 0 0 auto;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  scroll-snap-align: start;
  display: block;
  min-width: 260px;
  width: 300px;
  max-width: none;
}

/* Buttons (single definition; duplicates removed) */
.car-btn{
  position: absolute;                 /* CHANGED */
  top: 50%;                           /* CHANGED */
  transform: translateY(-50%);        /* CHANGED */
  z-index: 50;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(251,251,251,0.75);
  backdrop-filter: blur(10px);
  color: var(--onyx);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  transition: transform 140ms ease, background 180ms ease;
}

/* Place left/right */
.car-btn.prev{ left: 18px; }          /* CHANGED */
.car-btn.next{ right: 18px; }         /* CHANGED */

.car-btn:hover{
  transform: translateY(-50%) translateY(-1px); /* keep vertical centering + hover lift */
  background: rgba(188,171,174,0.22);
}

/* Keep buttons usable on dark sections too */
.section.dark .car-btn{
  background: rgba(15,15,15,0.55);
  color: var(--white);
  border-color: rgba(251,251,251,0.18);
}

/* White dots for dark (swap) section */
@media (max-width: 768px){

  .outfit--swap .car-dot{
    background: rgba(255,255,255,0.35);
    border-color: rgba(255,255,255,0.35);
  }

  .outfit--swap .car-dot.is-active{
    background: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.9);
  }

}

/* Responsive sizes */
@media (max-width: 980px){
  .carousel .tile{ width: 160px; }
}
@media (max-width: 640px){
  .car-btn{ display: none; }   /* swipe on mobile */
  .carousel .tile{ width: 70vw; max-width: 320px; }
}

/* responsive */
@media (max-width: 980px){
  .outfit{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .carousel .tile{
    width: 240px;
  }
}

@media (max-width: 640px){
  .car-btn{ display: none; }

  .carousel .tile{
    width: 75vw;
    max-width: 360px;
  }
}

/* Make hero section black */

.hero{
  background: var(--onyx);
  color: var(--white);
}

/* Fix text colors inside hero */

.hero .muted,
.hero .subhead,
.hero .eyebrow{
  color: rgba(251,251,251,0.7);
}

/* Keep cards readable on dark */

.hero-copy{
  background:
    radial-gradient(900px 380px at 10% 0%, rgba(188,171,174,0.25), transparent 60%),
    rgba(15,15,15,0.9);
  border-color: rgba(251,251,251,0.15);
}

/* Buttons still pop */

.hero .btn.ghost{
  color: var(--white);
  border-color: rgba(251,251,251,0.3);
}

.hero .btn.ghost:hover{
  background: rgba(188,171,174,0.25);
}

/* =========================
   MOBILE POLISH OVERRIDES
   Paste at the very bottom
========================= */

/* Prevent random horizontal scroll from long grids/flex children */
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* Critical: allow grid/flex children to shrink instead of forcing overflow */
.hero-inner,
.grid,
.lookbook,
.split,
.about,
.outfits { min-width: 0; }

.hero-copy,
.hero-visual,
.product,
.outfit,
.outfit-info,
.outfit-gallery,
.carousel { min-width: 0; }

/* Header: fix button visibility + spacing */
.icon-btn{
  color: var(--white);
  border-color: rgba(251,251,251,0.18);
}
.icon-btn:hover{ background: rgba(251,251,251,0.08); }

@media (max-width: 640px){
  /* Global spacing */
  .section{ padding: 46px 14px; }
  .hero{ padding: 42px 14px 14px 14px; }

  /* Brand/nav readability */
  .brand{ font-size: 16px; letter-spacing: 4px; }
  .topbar{ padding: 10px 14px; }

  /* Banner text scale */
  .banner-text h1{ font-size: clamp(34px, 10vw, 54px); letter-spacing: 1.5px; }
  .banner-text p{ letter-spacing: 3px; }

  /* Hero typography & card padding */
  .hero h1{ font-size: 34px; line-height: 1.02; }
  .hero-copy{ padding: 18px; }
  .subhead{ max-width: 60ch; }

  /* Product grid already goes 1-col; tighten cards a bit */
  .product-meta{ padding: 14px; }
  .product-img{ height: 190px; }

  /* Outfit layout: kill the “desktop min-height” + tighten columns */
  .outfit{
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .outfit-info{
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  /* Swap variant should also stack cleanly */
  .outfit.outfit--swap{
    grid-template-columns: 1fr;
  }
  .outfit.outfit--swap .outfit-info{
    grid-column: auto;
    border-left: 0;
    border-bottom: 1px solid rgba(251,251,251,0.18);
  }
  .outfit.outfit--swap .outfit-gallery{
    grid-column: auto;
  }

  /* Carousel: reduce padding + tile height so it doesn’t feel gigantic */
  .outfit-gallery{ padding: 14px 14px; }
  .carousel{ gap: 12px; padding: 6px 2px; }
  .carousel .tile{
    width: 82vw;
    max-width: 360px;
    min-width: 240px;
    height: 320px; /* was 420px */
  }

  /* Newsletter: make input + button full width */
  .newsletter{ padding: 18px; }
  .form{ width: 100%; }
  input[type="email"]{ width: 100%; }
  .newsletter .btn{ width: 100%; justify-content: center; }

  /* Footer alignment */
  .footer-inner{
    grid-template-columns: 1fr;
  }
  .footer-links{ justify-items: start; }
}

/* ===== Mobile swipe indicator + dots ===== */
@media (max-width: 768px){
  .outfit-gallery{ position: relative; }

  .swipe-hint{
    position: absolute;
    left: 50%;
    bottom: 44px;
    transform: translateX(-50%);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15,15,15,0.55);
    color: #FBFBFB;
    font-size: 12px;
    letter-spacing: 0.2px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    pointer-events: none;
    opacity: 0.95;
    backdrop-filter: blur(6px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .outfit-gallery.is-used .swipe-hint{
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }

  .car-dots{
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
  }

  .car-dot{
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(45,46,46,0.25);
    border: 1px solid rgba(45,46,46,0.25);
    padding: 0;
  }

  .car-dot.is-active{
    background: rgba(45,46,46,0.70);
    border-color: rgba(45,46,46,0.70);
  }

  /* optional: hide arrow buttons on mobile so swipe is the main UX */
  /* .car-btn{ display:none; } */
}

@media (min-width: 769px){
  .swipe-hint, .car-dots{ display:none !important; }
}

@media (max-width: 768px){

  .lookbook{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
  }

  /* Left tall image */
  .lookbook .look.big{
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  /* Right stacked images */
  .lookbook .look:not(.big){
    grid-column: 2;
  }

  .lookbook .look{
    border-radius: 14px;
    overflow: hidden;
  }

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

}

/* ===== Center the Lookbook grid (desktop + mobile) ===== */
.lookbook{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;   /* if it’s grid/flex */
  justify-items: center;     /* grid children */
}

.lookbook .look{
  width: 100%;
}

html, body{
  -ms-overflow-style: none;  /* IE/Edge legacy */
  scrollbar-width: none;     /* Firefox */
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

html, body{
  height: auto !important;
  min-height: 100%;
}


html::-webkit-scrollbar,
body::-webkit-scrollbar{
  display: none;             /* Chrome/Safari */
}

@media (max-width: 768px){

  .carousel .tile{
    aspect-ratio: 2 / 3;   /* vertical insta ratio */
    height: auto;
    width: 100%;
    object-fit: cover;
  }

}