/* ==========================================================================
   The Claim — home
   Two overlapping claim offers + contact-sheet stills + sleeve promotions.
   ========================================================================== */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 20px;
  position: relative;
}
.hero__copy { min-width: 0; }
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 6.4vw, 78px);
  max-width: 11ch;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--pip);
  display: block;
}
.hero__sub {
  margin: 0 0 24px;
  color: var(--lilac);
  font-size: 17px;
  max-width: 44ch;
  font-weight: 400;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.hero__micro {
  margin: 0;
  font-size: 12px;
  color: var(--lilac);
  max-width: 58ch;
}

.hero__still {
  position: relative;
  min-height: 420px;
}
.hero__photo {
  width: 86%;
  margin-left: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--offer-r);
  border: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  background: #000;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 40%;
}
.hero__pair {
  position: absolute;
  left: 0;
  bottom: 12px;
  display: flex;
  width: 78%;
  min-width: 260px;
  gap: 10px;
}
.face {
  width: 50%;
  min-height: 118px;
  border-radius: var(--offer-r);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  animation: deal 640ms var(--ease) both;
}
.face--primary {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(4px);
  z-index: 2;
  animation-name: deal-primary;
}
.face--accent {
  background: var(--pip);
  color: #fff;
  transform: translateY(-6px);
  z-index: 1;
  animation-name: deal-accent;
  animation-delay: 90ms;
}
.face__mark {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.face__lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.face__val {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 0.9;
}

@keyframes deal-primary {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(4px); }
}
@keyframes deal-accent {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .face { animation: none; }
  .face--primary { transform: translateY(4px); }
  .face--accent { transform: translateY(-6px); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 32px; }
  .hero h1 { max-width: none; }
  .hero__still { min-height: 0; padding-bottom: 56px; }
  .hero__photo { width: 100%; }
  .hero__pair { width: 70%; left: 12px; bottom: 0; }
}

@media (max-width: 640px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__sub, .hero__micro { overflow-wrap: anywhere; }
  .hero__pair { width: 78%; }
}

/* ---------- claim strip ---------- */

.claims {
  padding: 36px 0 8px;
}
.claims__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.claim {
  position: relative;
  padding: 20px 22px 18px;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--offer-r);
  overflow: hidden;
}
.claim::before {
  content: "";
  position: absolute;
  right: -18px; top: -28px;
  width: 90px; height: 120px;
  border-radius: 10px;
  border: 2px solid var(--line);
  transform: rotate(18deg);
}
.claim.is-live { box-shadow: inset 0 0 0 1.5px var(--pip); }
.claim__lab {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lilac);
}
.claim__val {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.9;
  margin: 6px 0 4px;
}
.claim__hint { margin: 0; color: var(--lilac); font-size: 14px; }
.claim--primary .claim__val { color: var(--cream); }
.claim--accent .claim__val { color: var(--pip); }

@media (max-width: 640px) {
  .claims__row { grid-template-columns: 1fr; }
}

/* ---------- contact sheet ---------- */

.sheet {
  padding: 28px 0 8px;
}
.sheet__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: 200px 160px;
  gap: 12px;
}
.still {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: var(--offer-r);
  isolation: isolate;
  cursor: pointer;
}
.still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 400ms var(--ease);
}
.still:hover img { transform: scale(1.04); }
.still__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 13, 22, 0.9));
}
.still__cap {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}
.still--wide { grid-column: 1 / 3; }
.still--tall { grid-row: 1 / 3; grid-column: 3; }

@media (max-width: 800px) {
  .sheet__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 180px 180px;
  }
  .still--wide { grid-column: 1 / -1; }
  .still--tall { grid-column: 1 / -1; grid-row: auto; min-height: 200px; }
}

/* ---------- sections ---------- */

.sect { padding: 72px 0; }
.sect--navy { background: var(--navy); }
.sect__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}
.sect__head h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 52px);
  max-width: 16ch;
  text-transform: uppercase;
}
.sect__note { margin: 0; color: var(--lilac); max-width: 32ch; font-size: 15px; }

@media (max-width: 640px) {
  .sect__head { flex-direction: column; align-items: flex-start; }
}

/* ---------- sleeves ---------- */

.sleeves { display: flex; flex-direction: column; gap: 10px; }
.sleeve {
  display: grid;
  grid-template-columns: 168px 92px 1fr auto;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  background: var(--offer);
  border: 1px solid var(--line);
  border-radius: var(--offer-r);
  min-height: 108px;
  padding-right: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 180ms var(--ease), transform 180ms var(--ease);
}
.sleeve:hover {
  border-color: var(--pip);
  transform: translateX(4px);
}
.sleeve__shot {
  height: 108px;
  overflow: hidden;
  background: #000;
}
.sleeve__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sleeve__tab {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pip);
}
.sleeve__copy h3 {
  margin: 0 0 4px;
  font-size: 26px;
  text-transform: uppercase;
}
.sleeve__copy p {
  margin: 0;
  color: var(--lilac);
  font-size: 14px;
}
.sleeve__val {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  color: var(--cream);
  white-space: nowrap;
}

@media (max-width: 800px) {
  .sleeve {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "img img"
      "tab val"
      "copy copy";
    padding: 0 0 16px;
  }
  .sleeve__shot { grid-area: img; height: 160px; }
  .sleeve__tab { grid-area: tab; padding: 14px 16px 0; }
  .sleeve__copy { grid-area: copy; padding: 4px 16px 0; }
  .sleeve__val { grid-area: val; padding: 12px 16px 0; }
}

/* ---------- tells ---------- */

.tells {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tell {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--offer-r);
  padding: 22px 20px;
  position: relative;
}
.tell__n {
  font-family: var(--display);
  font-size: 42px;
  color: var(--pip);
  line-height: 1;
  margin-bottom: 12px;
}
.tell h3 {
  margin: 0 0 8px;
  font-size: 24px;
  text-transform: uppercase;
}
.tell p { margin: 0; color: var(--lilac); font-size: 14px; }

@media (max-width: 800px) {
  .tells { grid-template-columns: 1fr; }
}

.sect__cta {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sect__cta p { margin: 0; color: var(--lilac); }

/* ---------- faq ---------- */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: none;
  border: 0;
  color: var(--cream);
  padding: 18px 0;
  min-height: 56px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.faq__ic {
  width: 18px; height: 18px; position: relative; flex-shrink: 0; margin-top: 6px;
}
.faq__ic::before, .faq__ic::after {
  content: "";
  position: absolute;
  background: var(--pip);
  top: 50%; left: 50%;
}
.faq__ic::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__ic::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__item.open .faq__ic::after { opacity: 0; }
.faq__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 240ms var(--ease); }
.faq__item.open .faq__panel { grid-template-rows: 1fr; }
.faq__panel > div { overflow: hidden; }
.faq__a { margin: 0 0 20px; color: var(--lilac); max-width: 62ch; }
.faq__a a { color: var(--pip); }
