﻿/* ---------------------------------------------------------------
   RARE SIGHT - SS'26
   Black / white / light grey. Helvetica Bold, heavy tracking, hard edges.
   --------------------------------------------------------------- */

:root {
  --ink: #000000;
  --paper: #ffffff;
  --accent: #a3a3a3;   /* was signal-red #e00000 */
  --focus: #111111;    /* focus ring stays dark - light grey on white fails contrast */
  --muted: #444444;
  --faint: #666666;
  --rule: #000000;
  --gutter: 40px;
  --page: 1400px;
}

*, *::before, *::after { box-sizing: border-box; }





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

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

button { font-family: inherit; }

::placeholder {
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
}

:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }

.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;
}

/* --- Shared type ----------------------------------------------- */

.eyebrow {
  margin: 0;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
}

.price { margin: 0; font-size: 16px; }
.price--sm { font-size: 12px; }

.section-title {
  margin: 0 0 40px;
  font-size: 32px; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.section-title--center { text-align: center; }

.link-underline {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 4px;
}
.link-underline--sm { font-size: 11px; }
.link-underline--light {
  color: var(--paper); font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-underline-offset: 5px;
}

/* --- Buttons ---------------------------------------------------- */

.btn {
  padding: 16px 24px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }

.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--paper); color: var(--ink); }

.btn--sm { padding: 14px 22px; font-size: 11px; }

/* --- Image slots ------------------------------------------------
   Placeholders for art direction. Drop a real image in by setting
   data-src on the slot (see app.js) â€” the label then disappears.
   ---------------------------------------------------------------- */

.slot {
  position: relative;
  width: 100%; height: 100%;
  background: #ededed;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(0, 0, 0, 0.045) 0 10px,
      transparent 10px 20px);
  overflow: hidden;
}

.slot::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; text-align: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #8a8a8a;
}

.slot--3x4 { aspect-ratio: 3 / 4; }

/* Slots that sit behind white type â€” keeps the placeholder state
   readable, and mirrors the dark campaign imagery these will hold. */
.slot--dark { background-color: #1c1c1c; }
.slot--dark::after { color: #6f6f6f; }

.slot > img { width: 100%; height: 100%; object-fit: cover; }
.slot:has(> img)::after { content: none; }

/* --- Announcement ----------------------------------------------- */

.announce {
  padding: 10px 16px;
  text-align: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--rule);
}

/* --- Header ------------------------------------------------------ */

.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.header__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--gutter) 10px;
}

.header__links {
  display: flex; gap: 24px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.header__links--end { justify-content: flex-end; font-weight: 700; }
.header__links .is-accent { color: var(--accent); }

.wordmark {
  font-size: 26px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-align: center;
}

/* --- Primary nav + dropdowns ------------------------------------ */

.nav {
  display: flex; justify-content: center; gap: 32px;
  padding: 10px var(--gutter) 14px;
  font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.nav__item { position: relative; }

.nav__link {
  display: inline-block;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav__item.is-open > .nav__link,
.nav__link:hover { border-bottom-color: var(--ink); }

.nav__menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  margin-top: 8px; z-index: 60;
  display: none;
  flex-direction: column; gap: 12px;
  min-width: 200px;
  padding: 20px 28px;
  background: var(--paper);
  border: 1px solid var(--ink);
}
.nav__item.is-open > .nav__menu { display: flex; }

.nav__menu a { font-size: 11px; white-space: nowrap; }

/* --- Hero -------------------------------------------------------- */

.hero {
  position: relative;
  width: 100%; height: 88vh; min-height: 600px;
}
.hero--secondary { height: 80vh; min-height: 560px; margin-top: 4px; }

.hero > .slot { position: absolute; inset: 0; }

/* --- Hero video -------------------------------------------------------------
   The entry film, reused as an ambient loop behind the hero copy. Was an
   Instagram feed grid, but with no live token wired up (see feed.js) it was
   just an empty box — swapped for footage we already have.
   -------------------------------------------------------------------------- */

.hero__video {
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Darkens the footage so the hero type stays legible over any frame. */
.hero__scrim {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.68) 100%);
}

.hero__handle {
  pointer-events: auto;
  color: var(--paper);
  font-size: clamp(28px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: 0.1em; text-indent: 0.1em;
  text-transform: lowercase;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}
.hero__handle:hover { text-decoration: underline; text-underline-offset: 8px; }

.hero__body {
  position: absolute; inset: 0;
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  pointer-events: none;
}
.hero__body a { pointer-events: auto; }

.hero__title {
  margin: 0;
  font-size: clamp(56px, 9vw, 120px); font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--paper);
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
}
.hero__title--sm {
  font-size: clamp(36px, 5.5vw, 64px);
  text-transform: uppercase;
}

/* --- Spotlight ---------------------------------------------------- */

.spotlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: var(--page);
  margin: 0 auto;
  padding: 110px var(--gutter);
}

.spotlight__media { display: flex; flex-direction: column; gap: 14px; }
.spotlight__media > .slot { aspect-ratio: 3 / 4; max-height: 720px; }

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

.spotlight__info {
  display: flex; flex-direction: column;
  justify-content: center; gap: 22px;
}

.spotlight__name {
  margin: 0;
  font-size: 34px; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  text-wrap: pretty;
}

.spotlight__copy {
  margin: 0;
  max-width: 420px;
  font-size: 13px; line-height: 1.7;
  color: var(--muted);
}

.spotlight__actions {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 380px; margin-top: 8px;
}

/* --- Category strip ----------------------------------------------- */

.strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  column-gap: 56px; row-gap: 20px;
  padding: 50px var(--gutter);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.strip a {
  font-size: 26px; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* --- Product grids ------------------------------------------------ */

.products {
  max-width: var(--page);
  margin: 0 auto;
  padding: 100px var(--gutter) 0;
}

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

.card { display: flex; flex-direction: column; gap: 10px; }

.card__name {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}

.card__price { display: flex; gap: 8px; font-size: 12px; }
.card__price s { color: var(--accent); }

.card__buy {
  margin-top: 2px;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.card__buy:hover { background: var(--ink); color: var(--paper); }
.card__buy:disabled {
  background: var(--paper); color: #bbbbbb; border-color: #dddddd;
  cursor: not-allowed;
}

/* --- Editorial banner ---------------------------------------------- */

.editorial {
  position: relative;
  width: 100%; height: 80vh; min-height: 560px;
  margin-top: 110px;
}
.editorial > .slot { position: absolute; inset: 0; }

.callout {
  position: absolute; right: 60px; bottom: 60px;
  display: flex; gap: 18px; align-items: center;
  max-width: 380px; padding: 22px;
  background: var(--paper);
  border: 1px solid var(--ink);
}

.callout__media { width: 90px; height: 120px; flex: none; }

.callout__body { display: flex; flex-direction: column; gap: 8px; }

.callout__name {
  margin: 0;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* --- Campaign gallery ---------------------------------------------- */

.gallery { margin-top: 110px; }

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

/* --- Footer ---------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--rule);
  padding: 80px var(--gutter) 40px;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 60px;
  max-width: var(--page);
  margin: 0 auto;
}

.footer__brand { display: flex; flex-direction: column; gap: 18px; }

.footer__wordmark {
  margin: 0;
  font-size: 20px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
}

.footer__social {
  margin: 0;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.footer__col { display: flex; flex-direction: column; gap: 14px; }

.footer__col h3 {
  margin: 0;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
}

.footer__col a {
  font-size: 12px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

.newsletter { display: flex; }

.newsletter input {
  flex: 1; min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--ink);
  border-right: none;
  border-radius: 0;
  font-size: 12px; font-family: inherit;
  outline: none;
}

.newsletter__msg {
  margin: 0;
  min-height: 1em;
  font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
}

.footer__base {
  display: flex; justify-content: space-between;
  max-width: var(--page);
  margin: 60px auto 0;
  font-size: 11px;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--faint);
}

/* --- Responsive ------------------------------------------------------
   The source comp is desktop-only (min-width:1200px). These breakpoints
   keep the same hierarchy on narrower viewports rather than h-scrolling.
   --------------------------------------------------------------------- */

@media (max-width: 1100px) {
  :root { --gutter: 24px; }

  .spotlight { grid-template-columns: 1fr; gap: 40px; padding: 70px var(--gutter); }
  .spotlight__info { max-width: 560px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products { padding-top: 70px; }
  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
  .editorial, .gallery { margin-top: 70px; }
}

@media (max-width: 760px) {
  .header__bar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }
  .header__links, .header__links--end { justify-content: center; }

  .nav {
    gap: 20px;
    padding-inline: var(--gutter);
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .nav__menu { left: 0; transform: none; }

  .strip { column-gap: 28px; }
  .strip a { font-size: 18px; }

  .section-title { font-size: 24px; margin-bottom: 24px; }

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

  .callout {
    right: var(--gutter); left: var(--gutter);
    bottom: 24px; max-width: none;
  }

  .footer__cols { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}



