/* ============================================
   GRISH beauty — editorial / Prada-inspired cut
   ============================================ */

:root {
  --ink: #0a0a0a;
  --white: #ffffff;
  --grey: #6b6b6b;
  --line: rgba(10, 10, 10, 0.14);
  --red: #b6222c;
  --nav-h: 64px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', -apple-system, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.02;
  text-transform: uppercase;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.tag--light { color: rgba(255,255,255,0.85); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  transition: opacity .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow:hover { opacity: 0.6; }
.link-arrow--light { color: var(--white); border-bottom-color: var(--white); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2rem;
  color: var(--white);
  mix-blend-mode: difference;
}
.nav__menu {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__menu span:first-child {
  width: 20px; height: 1.5px; background: currentColor;
  position: relative;
}
.nav__menu span:first-child::before,
.nav__menu span:first-child::after {
  content: "";
  position: absolute; left: 0; width: 20px; height: 1.5px; background: currentColor;
}
.nav__menu span:first-child::before { top: -6px; }
.nav__menu span:first-child::after { top: 6px; }
.nav__logo {
  justify-self: center;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}
.nav__right {
  justify-self: end;
  display: flex;
  gap: 1.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* fullscreen menu overlay */
.menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  padding: 4rem 8vw;
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .5s var(--ease), opacity .5s var(--ease), visibility 0s linear .5s;
}
.menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .5s var(--ease), opacity .5s var(--ease), visibility 0s linear 0s;
}
.menu a {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1rem;
  transition: opacity .3s var(--ease);
}
.menu a:hover { opacity: 0.55; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink) center/cover no-repeat url('assets/img/hero-poster.jpg');
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,.15) 100%);
}
.hero__content {
  position: absolute;
  left: 0; right: 0; bottom: 4.5rem;
  z-index: 2;
  padding: 0 2rem;
  text-align: center;
}
.hero__content .tag { color: rgba(255,255,255,0.85); }
.hero__content h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: 0.6rem 0 1.4rem;
}
.hero__content .link-arrow { color: var(--white); border-bottom-color: var(--white); }
.hero__playback {
  position: absolute;
  right: 1.6rem; bottom: 1.6rem;
  z-index: 2;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  opacity: 0.85;
}

/* ============ STATEMENT ============ */
.statement {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7rem) 2rem;
  text-align: center;
}
.statement__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.4rem;
}
.statement__text {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.statement__tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.2rem;
}
.statement__tabs a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  color: var(--grey);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.statement__tabs a.is-active,
.statement__tabs a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* ============ TILES ============ */
.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: block;
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.tile:hover img { transform: scale(1.045); }
.tile__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem;
  background: linear-gradient(0deg, rgba(0,0,0,.6), rgba(0,0,0,0) 70%);
}
.tile__caption .tag--light { margin-bottom: 0.6rem; }
.tile__caption h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  margin-bottom: 1.2rem;
}

/* ============ CAMPAIGN ============ */
.campaign {
  position: relative;
  height: 82vh;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink) center/cover no-repeat url('assets/img/craft-poster.jpg');
}
.campaign__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.15);
}
.campaign__scrim {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.42);
}
.campaign__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.2rem;
  padding: 0 2rem;
}
.campaign__content .tag { color: rgba(255,255,255,0.85); }
.campaign__content h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.campaign__content .link-arrow { color: var(--white); border-bottom-color: var(--white); }

/* ============ STORY ============ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.story__media { overflow: hidden; }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
}
.story__text .tag { color: var(--grey); margin-bottom: 1.2rem; }
.story__text h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 1.6rem; }
.story__text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: 1.8rem;
}

/* ============ NEWS ============ */
.news { padding: clamp(4.5rem, 9vw, 7rem) 2rem; }
.news__head { text-align: center; margin-bottom: 3rem; }
.news__head .tag { color: var(--grey); margin-bottom: 1rem; }
.news__head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.news__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.news__card {
  position: relative;
  background: var(--white);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: block;
}
.news__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), filter .4s var(--ease);
}
.news__card:hover img { transform: scale(1.05); }
.news__card .tag--light {
  position: absolute; left: 1.2rem; top: 1.2rem; z-index: 2;
}
.news__card h3 {
  position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2;
  color: var(--white);
  font-size: 1.15rem;
}
.news__card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.5), rgba(0,0,0,0) 55%);
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 2rem 2rem;
}
.footer__top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.footer__cols {
  display: flex;
  gap: 4rem;
}
.footer__cols h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}
.footer__cols div { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__cols a { font-size: 0.9rem; transition: opacity .3s var(--ease); }
.footer__cols a:hover { opacity: 0.55; }
.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .tiles { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; }
  .story__media { aspect-ratio: 4/3; }
  .news__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__right { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { flex-wrap: wrap; gap: 2rem; }
}

@media (max-width: 560px) {
  .news__grid { grid-template-columns: 1fr; }
  .hero__content { bottom: 3rem; }
}
