/* ==========================================================================
   THE PRIVATE OFFICE — WEBSITE
   verification.css — page styles for the /verification route only.
   Reuses the design system (tokens · base · components · site chrome);
   nothing in this file affects any other page.
   ========================================================================== */

/* Page-local visually hidden helper (heading structure without visual noise) */
.vf-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   1 · PAGE HERO — centered navy band (clears the fixed header)
   ========================================================================== */
.vf-hero {
  background: var(--grad-navy);
  color: var(--ivory-100);
  text-align: center;
  padding: calc(var(--header-h) + var(--space-7)) clamp(24px, 5vw, 64px) var(--space-7);
}
.vf-hero__inner { max-width: 780px; margin-inline: auto; }
.vf-hero .eyebrow { color: var(--gold-400); }
.vf-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.4vw, 3.75rem);
  font-weight: var(--fw-medium);
  line-height: 1.12;
  letter-spacing: var(--track-display);
  color: var(--c-white);
  margin: 18px 0 20px;
  text-wrap: balance;
}
.vf-hero__lead {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-light);
  line-height: 1.7;
  color: rgba(247, 242, 232, 0.74);
  max-width: 60ch;
  margin-inline: auto;
}

/* ==========================================================================
   Shared page rhythm — shells, container, heads
   ========================================================================== */
.vf-verify  { background: #FAF8F3; }
.vf-results { background: var(--c-white); }
.vf-info    { background: #FAF8F3; }
.vf-faq     { background: var(--c-white); }

.vf-verify, .vf-results, .vf-info, .vf-faq {
  padding: var(--space-7) clamp(20px, 4vw, 64px);
}
.vf-inner { max-width: 1440px; margin-inline: auto; }
.vf-inner--narrow { max-width: 880px; }

.vf-head { max-width: 720px; margin: 0 auto var(--space-5); text-align: center; }
.vf-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.9vw, 2.625rem);
  font-weight: var(--fw-semi);
  line-height: 1.15;
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin: 16px 0 12px;
  text-wrap: balance;
}
.vf-desc { font-size: var(--fs-body); line-height: 1.75; color: var(--ink-soft); }

/* ==========================================================================
   2 · VERIFICATION CARD — one premium field (existing .card + form kit)
   ========================================================================== */
.vf-card {
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);                                  /* premium lift at rest */
}
.vf-card__row { display: flex; gap: 14px; align-items: stretch; }
.vf-card__input { flex: 1; letter-spacing: var(--track-wide); }
.vf-card__btn { flex: none; }
.vf-card__note { margin-top: 14px; text-align: center; }

/* ==========================================================================
   3 · VERIFICATION RESULTS — three status-outlined result cards
   ========================================================================== */
.vf-results__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.vf-result {
  padding: 32px 30px;
  background: var(--c-white);
  border-radius: var(--r-md);
  border: 1.5px solid;
}
.vf-result--verified { border-color: rgba(15, 93, 74, 0.42); }    /* green outline, system emerald */
.vf-result--pending  { border-color: rgba(169, 122, 44, 0.45); }  /* amber outline, system warning */
.vf-result--notfound { border-color: rgba(168, 67, 47, 0.45); }   /* red outline, system error */

.vf-result__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.vf-result__pill .icon { width: 13px; height: 13px; }
.vf-result--verified .vf-result__pill { background: var(--emerald-100); color: var(--emerald-600); }
.vf-result--pending  .vf-result__pill { background: var(--warning-100); color: var(--warning-600); }
.vf-result--notfound .vf-result__pill { background: var(--error-100);   color: var(--error-600); }

.vf-result__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: var(--fw-semi);
  line-height: 1.2;
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin-bottom: 10px;
}
.vf-result__text { font-family: var(--font-body); font-size: 0.875rem; line-height: 1.7; color: var(--ink-soft); }

/* ==========================================================================
   4 · WHAT CAN BE VERIFIED — 2 × 2 grid on existing .card surface
   ========================================================================== */
.vf-info__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 1080px;
  margin-inline: auto;
}
.vf-item { padding: 32px 36px; }
.vf-item__icon { width: 30px; height: 30px; color: var(--gold-600); margin-bottom: 20px; }
.vf-item__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-semi);
  line-height: 1.2;
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin-bottom: 10px;
}
.vf-item__text { font-family: var(--font-body); font-size: 0.875rem; line-height: 1.7; color: var(--ink-soft); }

/* ==========================================================================
   5 · FAQ — native <details> accordions with gold chevrons
   (visual parity with the business-enquiries accordion)
   ========================================================================== */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.32);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-2) var(--ease-standard);
}
.faq__item[open] { border-color: rgba(198, 161, 91, 0.6); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  list-style: none;
  border-radius: var(--r-md);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }
.faq__chev { flex: none; width: 18px; height: 18px; color: var(--gold-600); transition: transform var(--dur-2) var(--ease-standard); }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__a { padding: 0 24px 22px; }
.faq__a p { font-family: var(--font-body); font-size: 0.9375rem; line-height: 1.7; color: var(--ink-soft); }

/* ==========================================================================
   6 · CONTACT BLOCK — centered navy coda
   ========================================================================== */
.vf-contact {
  background: var(--grad-navy);
  color: var(--ivory-100);
  text-align: center;
  padding: var(--space-7) clamp(20px, 4vw, 64px);
}
.vf-contact .eyebrow { color: var(--gold-400); }
.vf-contact__inner { max-width: 1080px; }
.vf-contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.9vw, 2.625rem);
  font-weight: var(--fw-semi);
  line-height: 1.15;
  letter-spacing: var(--track-display);
  color: var(--c-white);
  margin: 16px 0 14px;
  text-wrap: balance;
}
.vf-contact__text {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: rgba(247, 242, 232, 0.74);
  max-width: 66ch;
  margin-inline: auto;
}
.vf-contact__cols {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  text-align: left;
}
.vf-contact__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--r-md);
}
.vf-contact__icon { width: 26px; height: 26px; color: var(--gold-400); margin-bottom: 6px; }
.vf-contact__label {
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--gold-300);
}
.vf-contact__value {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(247, 242, 232, 0.74);
}
.vf-contact__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-5);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: var(--track-wide);
  color: rgba(247, 242, 232, 0.54);
}
.vf-contact__note .icon { width: 15px; height: 15px; color: var(--gold-400); }

/* ==========================================================================
   Responsive — tablet & mobile
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .vf-results__grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .vf-info__grid { grid-template-columns: 1fr; max-width: 720px; }
  .vf-contact__cols { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}
@media (max-width: 767px) {
  .vf-hero { padding: calc(var(--header-h) + var(--space-5)) clamp(20px, 5vw, 40px) var(--space-6); }
  .vf-hero__title { font-size: clamp(2.125rem, 7.6vw, 2.5rem); }
  .vf-verify, .vf-results, .vf-info, .vf-faq { padding-block: var(--space-6); }
  .vf-card__row { flex-direction: column; }
  .vf-card__btn { width: 100%; justify-content: center; }
  .vf-results__grid { grid-template-columns: 1fr; }
  .vf-info__grid { grid-template-columns: 1fr; }
  .vf-contact { padding-block: var(--space-6); }
  .vf-contact__cols { grid-template-columns: 1fr; }
}
