/* =========================================================
   VELOURA EAST — VERIFY (verify.php)
   =========================================================
   UI-006: rewrite. The previous verify.css targeted a much
   older version of this page (.verify-box, .verify-input,
   .verify-result, .verify-grid, .security-*, etc.) that no
   longer exists in the markup — none of those rules matched
   anything and the file was dead weight. The current page is
   a single hero + a serial-lookup card, built almost entirely
   from inline styles with one small ad-hoc <style> block using
   !important for its only mobile rule. This file replaces
   both: real classes, real responsive behaviour, desktop
   appearance unchanged.

   NOTE: assets/js/verify.js listens for .verify-form,
   .verify-input, .verify-submit, .verify-result, .verify-error
   — leftover from that older markup. Those class names are
   intentionally NOT reused here (the real form uses
   .verify-serial-form / .verify-serial-input /
   .verify-submit-btn instead) so that dead script can't
   suddenly attach itself to the live server-rendered form and
   intercept/prevent its real POST submission.
========================================================= */

.verify-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.verify-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center 35%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.verify-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2;
}

.verify-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.verify-hero-tag {
  color: #C9A96E;
  border-color: rgba(201,169,110,.35);
  background: rgba(201,169,110,.08);
}

.verify-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: #fff;
  margin: 20px 0;
  line-height: 1.1;
}

.verify-hero-sub {
  color: rgba(255,255,255,.9);
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

.verify-flash {
  max-width: 700px;
  margin: 0 auto 24px;
}

.verify-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,.04);
}

.verify-card-head {
  text-align: center;
  margin-bottom: 36px;
}

.verify-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(201,169,110,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,169,110,.25);
}

.verify-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--black);
}

.verify-card-sub {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.verify-serial-label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}

.verify-serial-input {
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  font-size: 20px;
  letter-spacing: 2px;
  height: 64px;
  border-radius: 12px;
}

.verify-serial-hint {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #888;
}

.verify-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 1px;
}

.verify-registry-note {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(17,17,17,.08);
  text-align: center;
}

.verify-registry-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 10px;
}

.verify-registry-note p {
  color: #777;
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────
   Card padding (50px) and the 64px title were sized for a
   700px-wide desktop card. On a 320–430px phone that padding
   alone eats most of the available width before the serial
   input ever gets a chance to render at a usable size, and the
   title wraps awkwardly. Scale both down in real steps instead
   of the old single !important hack. */
@media (max-width: 768px) {
  .verify-hero { min-height: 400px; }
  .verify-hero-title { font-size: 44px; }
  .verify-hero-sub { font-size: 16px; }

  .verify-card { padding: 36px 28px; border-radius: 16px; }
  .verify-card-title { font-size: 26px; }
}

@media (max-width: 480px) {
  .verify-hero { min-height: 340px; }
  .verify-hero-title { font-size: 34px; margin: 16px 0; }
  .verify-hero-sub { font-size: 15px; }
  .verify-hero-tag { font-size: 11px; }

  .verify-card { padding: 28px 20px; }
  .verify-card-icon { width: 60px; height: 60px; margin-bottom: 16px; }
  .verify-card-icon svg { width: 28px; height: 28px; }
  .verify-card-title { font-size: 22px; }
  .verify-card-sub { font-size: 14px; }

  .verify-serial-input { height: 56px; font-size: 17px; letter-spacing: 1px; }
  .verify-submit-btn { padding: 16px; }
}