/* ============================================
   FIND IT HERO
============================================ */
.findit-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.findit-hero-bg {
  position: absolute;
  inset: -10%;
  background: url('../img/find-it-hero.png') center 40% / cover no-repeat;
  background-attachment: fixed;
  animation: zoomIn 10s ease-out both;
}

.findit-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 35, 0.52);
}

/* Brand — identical to homepage */
.findit-hero .hero-brand {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  padding-top: 1.2rem;
  animation: heroFadeIn 1s ease 0.2s both;
  white-space: nowrap;
}

/* Centred text block */
.findit-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  padding: 2rem;
  animation: heroFadeIn 1.2s ease 0.4s both;
  white-space: nowrap;
}

.findit-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 1.4rem;
}

.findit-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.93);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 0;
}

/* ============================================
   CONTENT SECTION
============================================ */
.findit-section {
  background: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.findit-section .container {
  max-width: 720px;
}

.findit-subhead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-bottom: 4rem;
}

/* ============================================
   STATUS BLOCK
============================================ */
.findit-status-block {
  border-top: 1px solid var(--border);
  margin-bottom: 4.5rem;
}

.findit-status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}

.findit-status-label {
  font-family: var(--font-manrope);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

.findit-status-tag {
  font-family: var(--font-manrope);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================
   CTA
============================================ */
.findit-cta-rule {
  width: 40px;
  height: 1px;
  background: var(--red);
  margin: 0 auto 2.5rem;
}

.findit-cta-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 1.6rem;
  line-height: 1.5;
}

.findit-cta-link {
  display: inline-block;
  font-family: var(--font-manrope);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 1rem 2.4rem;
  border-radius: 9999px;
  transition: background 0.3s ease;
}

.findit-cta-link:hover {
  background: var(--navy-light);
}

/* ============================================
   SMALL PRINT
============================================ */
.findit-smallprint {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-manrope);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-light);
  line-height: 1.9;
}

.findit-smallprint a {
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.1rem;
  transition: color 0.3s, border-color 0.3s;
}

.findit-smallprint a:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .findit-hero-bg { background-attachment: scroll; }
}

@media (max-width: 800px) {
  .findit-hero-content { white-space: normal; width: 90%; }
  .findit-hero .hero-brand { white-space: normal; }
}

@media (max-width: 600px) {
  .findit-section { padding: 4rem 1.5rem; }
  .findit-status-item { padding: 1.2rem 0; }
}
