@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap");

/* =====================
   BASE
===================== */
:root{
  --bg:#ffffff;
  --fg:#0a0a0a;
  --muted:rgba(10,10,10,.62);
  --line:rgba(10,10,10,.14);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:"Inter", system-ui, -apple-system, Arial;
  padding-top:72px;
}

body.home{ padding-top:0; }

a{ color:inherit; text-decoration:none; opacity:.92; }
a:hover{ opacity:1; }

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 22px;
}

.section{ padding:56px 0; }

.h2{ margin:0; font-size:22px; }

/* =====================
   NAV
===================== */
header.nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:9999;
  height:72px;
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--line);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

header.nav.is-solid{
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--line);
  box-shadow:0 10px 30px rgba(0,0,0,.04);
  backdrop-filter: blur(12px);
}

/* Home top: no bar, only text */
body.home header.nav{
  background:transparent;
  border-bottom:1px solid transparent;
  box-shadow:none;
  backdrop-filter:none;
}

/* Home scrolled: solid bar */
body.home header.nav.is-solid{
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--line);
  box-shadow:0 10px 30px rgba(0,0,0,.04);
  backdrop-filter: blur(12px);
}

.nav-inner{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand,
.nav-links a,
.nav-links button{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color:#0a0a0a;
}

.nav-links{
  display:flex;
  gap:18px;
  align-items:center;
}

.nav-links button{
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
}

/* White nav text only when home & top */
body.home header.nav:not(.is-solid) .brand,
body.home header.nav:not(.is-solid) .nav-links a,
body.home header.nav:not(.is-solid) .nav-links button{
  color:#fff;
  text-shadow:0 2px 18px rgba(0,0,0,.35);
}

/* =====================
   HERO FULLSCREEN (FIXED)
===================== */
.hero{
  position:relative;
  width:100%;
  height:100vh;
  height:100svh;
  height:100dvh;
  overflow:hidden;
  background:#000;
}

.reel{
  position:absolute;
  inset:0;
  overflow:hidden;
  background:#000;
}

.reel-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* =====================
   FEATURED SECTION HEADER
===================== */
.sec-head{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:18px;
}

.see-all{
  color:var(--muted);
  font-size:14px;
}

/* =====================
   GRID / CARDS
===================== */
.grid{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
}

.card{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:#fff;
  transform:translateZ(0);
}

.card img{
  width:100%;
  height:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:transform .6s cubic-bezier(.2,.8,.2,1), opacity .6s;
  opacity:.96;
}

.card:hover img{
  transform:scale(1.06);
  opacity:1;
}

.card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.2) 55%, rgba(0,0,0,0));
  opacity:.95;
  transition:opacity .6s;
  pointer-events:none;
}

.card .meta{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  color:#fff;
}

.card .meta h3{
  margin:0;
  font-size:18px;
  line-height:1.05;
  font-weight:600;
  color:rgba(255,255,255,1);
}

.card .meta p{
  margin:8px 0 0;
  font-size:13px;
  color:rgba(255,255,255,.82);
}

/* =====================
   BRANDS BLOCK
===================== */
.brands{
  margin: 12px 0 70px;
  border-radius: 26px;
  padding: 56px 0;
  background: #1b1c1f;
  color: #fff;
}

.brands-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}

.brands-title{
  margin: 0 0 28px;
  text-align:center;
  font-family: "Inter", system-ui, -apple-system, Arial;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .2px;
}

.brands-grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px 28px;
  align-items:center;
  justify-items:center;
}

.brands-grid img{
  max-width: 160px;
  width: 100%;
  height: auto;
  opacity: .92;
  filter: grayscale(100%);
  transition: opacity .25s ease, filter .25s ease, transform .25s ease;
}

.brands-grid img:hover{
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.03);
}

@media (max-width: 900px){
  .brands-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .brands-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* =============================
   GLOBAL UI (Capsules / Buttons)
   Calabria – unified system
   (Safe overrides, appended last)
============================= */

/* Capsule black */
.cap{
  border: 1px solid rgba(0,0,0,.55);
  border-radius: 16px;
  background: #0a0a0a;
  color: rgba(255,255,255,.92);
  padding: 14px;
}

/* For clickable capsules */
.cap-hover{
  cursor: pointer;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, opacity .22s ease;
}
.cap-hover:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  opacity: .98;
}

/* Capsule typography */
.cap .label{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 6px;
}
.cap .value{
  font-size: 16px;
  color: #fff;
}
.cap .hint{
  font-size: 13px;
  color: rgba(255,255,255,.62);
  margin-top: 2px;
}

/* Button black pill */
.btn-black{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.55);
  background: #0a0a0a;
  color: #fff;
  cursor:pointer;
  font-size: 14px;
  opacity: .96;
  white-space: nowrap;
  text-decoration:none;
  transition: transform .22s ease, border-color .22s ease, opacity .22s ease;
}
.btn-black:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  opacity: 1;
}
