/* ============================================================================
   Qoweey4Rep — Design tokens
   Royal Blue / Gold system per brand spec.
   ============================================================================ */

:root {
  --blue:        #1a3fcb;
  --blue-dark:   #0d1f6e;
  --blue-light:  #e8eefb;
  --blue-mid:    #3a5fe0;

  --gold:        #f5c518;
  --gold-dark:   #c9a010;
  --gold-light:  #fef9e0;

  --navy-deep:   #0a0f2e;
  --navy-deep2:  #050a1a;

  --ink:         #14162b;
  --ink-soft:    #565a72;
  --paper:       #ffffff;
  --paper-off:   #f7f8fc;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1240px;
  --shadow-soft: 0 10px 30px rgba(10, 15, 46, 0.08);
  --shadow-lift: 0 20px 45px rgba(10, 15, 46, 0.16);

  --gradient-brand: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 55%, var(--gold) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0 0 0.4em; line-height: 1.15; color: var(--ink); }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.icon { width: 22px; height: 22px; flex-shrink: 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy-deep);
  padding: 10px 16px; z-index: 200; font-weight: 600; font-size: 14px;
}
.skip-link:focus { left: 12px; top: 12px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 2px;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue);
  display: inline-block; margin-bottom: 14px;
}

.section { padding: 96px 24px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 44px); }
.section-head p { font-size: 17px; margin-top: 14px; }
.bg-tint { background: var(--blue-light); }
.bg-off  { background: var(--paper-off); }

/* Reveal-on-scroll (progressive enhancement; JS adds .is-visible) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ----------------------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer; transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 8px 24px rgba(245,197,24,0.35); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline-white { border-color: rgba(255,255,255,0.65); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-outline-blue { border-color: var(--blue); color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.btn-block { width: 100%; justify-content: center; }

/* ----------------------------------------------------------------------------
   Navbar
   ---------------------------------------------------------------------------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.navbar.scrolled {
  background: rgba(10, 15, 46, 0.85); backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2); padding: 12px 0;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  width: 40px; height: 40px; background: var(--gold); color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center; border-radius: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 20px; flex-shrink: 0;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.nav-brand-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff; }
.nav-brand-name .gold { color: var(--gold); }
.nav-brand-sub { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.85); }
.nav-links a:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn { padding: 10px 20px; font-size: 14px; }

.nav-toggle {
  display: none; background: none; border: none; color: #fff; padding: 6px; cursor: pointer;
}
.nav-toggle .icon { width: 26px; height: 26px; }

@media (max-width: 960px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .navbar.nav-open { background: var(--navy-deep); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
  .navbar.nav-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-deep);
    padding: 10px 24px 20px;
  }
  .navbar.nav-open .nav-links a { padding: 10px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .navbar.nav-open .nav-actions {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: calc(100% + 210px); left: 0; right: 0; background: var(--navy-deep);
    padding: 0 24px 22px; gap: 10px;
  }
  .navbar.nav-open .nav-actions .btn { justify-content: center; }
}

/* ----------------------------------------------------------------------------
   Hero
   ---------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  padding: 150px 24px 0;
  background-color: var(--navy-deep);
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(10,15,46,0.97) 0%, rgba(10,15,46,0.88) 40%, rgba(10,15,46,0.55) 75%, rgba(10,15,46,0.35) 100%);
}
.hero-inner {
  position: relative; z-index: 1; max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
  padding-bottom: 70px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-badge {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
}
.hero-badge.glass { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(6px); }
.hero-badge.gold { background: var(--gold); color: var(--navy-deep); }

.hero .eyebrow { color: var(--gold); }
.hero h1 { font-size: clamp(44px, 6.5vw, 76px); margin-bottom: 6px; }
.hero h1 .gold { color: var(--gold); }
.hero-titles { font-style: italic; color: rgba(255,255,255,0.7); font-size: 15.5px; margin-bottom: 22px; }
.hero .lede { color: rgba(255,255,255,0.85); font-size: 17.5px; max-width: 54ch; margin-bottom: 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-stats { display: flex; gap: 0; }
.hero-stat { padding: 0 28px; border-left: 1px solid rgba(255,255,255,0.2); }
.hero-stat:first-child { padding-left: 0; border-left: none; }
.hero-stat-value { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: 12.5px; color: rgba(255,255,255,0.65); }

.hero-photo-wrap { position: relative; }
.hero-photo-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--gold); box-shadow: var(--shadow-lift); aspect-ratio: 4/5;
}
.hero-photo-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 22px 20px;
  background: linear-gradient(to top, rgba(5,10,26,0.92) 15%, transparent 100%);
}
.hero-photo-caption .name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; }
.hero-photo-caption .role { font-size: 13px; color: var(--gold); margin-top: 2px; }
.hero-photo-caption .place { font-size: 12px; color: rgba(255,255,255,0.65); }

.hero-float-badge {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px); border-radius: var(--radius-sm); padding: 12px 16px;
  box-shadow: var(--shadow-soft); font-size: 12.5px; color: #fff;
}
.hero-float-badge .icon { color: var(--gold); width: 20px; height: 20px; }
.hero-float-badge b { display: block; font-size: 13px; }
.hero-float-badge.badge-1 { top: -18px; left: -18px; }
.hero-float-badge.badge-2 { bottom: 70px; right: -18px; }

.hero-wave { position: relative; z-index: 1; line-height: 0; margin-top: 60px; }
.hero-wave svg { width: 100%; height: auto; display: block; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 40px; }
  .hero { padding-top: 120px; }
  .hero-photo-wrap { max-width: 380px; margin: 20px auto 40px; }
  .hero-float-badge { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 560px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
}

/* ----------------------------------------------------------------------------
   About
   ---------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.about-photo-wrap { position: relative; }
.about-photo {
  aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-card {
  position: absolute; bottom: -22px; right: -22px; background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift); padding: 18px 22px; text-align: center;
}
.about-stat-card .value { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--blue); }
.about-stat-card .label { font-size: 12px; color: var(--ink-soft); }

.about-text h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 22px; }
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.info-card {
  background: var(--blue-light); border-radius: var(--radius-sm); padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.info-card .icon { color: var(--blue); background: #fff; border-radius: 8px; padding: 7px; width: 36px; height: 36px; }
.info-card .label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue); margin-bottom: 4px; }
.info-card .value { font-size: 14px; color: var(--ink); font-weight: 500; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 420px; margin: 0 auto 40px; }
  .info-cards { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------------------
   Pillar / Achievement / Event cards (grids)
   ---------------------------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } }

.pillar-card {
  background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pillar-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--blue-light);
  color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.pillar-card h3 { font-size: 19px; margin-bottom: 8px; }
.pillar-card p { font-size: 14.5px; margin: 0; }

.achieve-card {
  background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.achieve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.achieve-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.achieve-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--gold-light);
  color: var(--gold-dark); display: flex; align-items: center; justify-content: center;
}
.achieve-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: 999px; background: var(--blue-light); color: var(--blue);
}
.achieve-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.achieve-card p { font-size: 14px; margin: 0; }

.event-card {
  background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--blue); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.event-card.accent-blue   { border-left-color: var(--blue); }
.event-card.accent-purple { border-left-color: #7c3aed; }
.event-card.accent-gold   { border-left-color: var(--gold-dark); }
.event-card.accent-green  { border-left-color: #17a35b; }
.event-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: 999px; display: inline-block; margin-bottom: 14px;
}
.event-card.accent-blue .event-tag   { background: var(--blue-light); color: var(--blue); }
.event-card.accent-purple .event-tag { background: #efe6fd; color: #7c3aed; }
.event-card.accent-gold .event-tag   { background: var(--gold-light); color: var(--gold-dark); }
.event-card.accent-green .event-tag  { background: #e5f8ee; color: #17a35b; }
.event-card h3 { font-size: 17px; margin-bottom: 14px; }
.event-meta-row { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 6px; }
.event-meta-row .icon { width: 16px; height: 16px; color: var(--blue); }

/* ----------------------------------------------------------------------------
   Gallery (masonry-ish grid)
   ---------------------------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1;
  box-shadow: var(--shadow-soft);
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; background: linear-gradient(to top, rgba(5,10,26,0.9) 10%, rgba(5,10,26,0.1) 55%, transparent 80%);
}
.gallery-tag {
  align-self: flex-start; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--gold); color: var(--navy-deep); padding: 5px 12px; border-radius: 999px; margin-bottom: 10px;
}
.gallery-date { font-size: 11.5px; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.gallery-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; margin: 0; }
.gallery-caption {
  font-size: 12.5px; color: rgba(255,255,255,0.85); margin-top: 8px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.gallery-item:hover .gallery-caption { max-height: 100px; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}

/* ----------------------------------------------------------------------------
   Testimonials
   ---------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--paper-off); border-radius: var(--radius); padding: 30px; position: relative;
}
.testimonial-quote-icon { color: var(--gold); width: 30px; height: 30px; margin-bottom: 16px; }
.testimonial-text { font-style: italic; font-size: 15px; color: var(--ink); margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 14.5px; }
.testimonial-role { font-size: 12.5px; color: var(--ink-soft); }

/* ----------------------------------------------------------------------------
   Contact
   ---------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-item .icon-wrap {
  width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--blue-light);
  color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item .label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue); margin-bottom: 3px; }
.contact-info-item .value { font-size: 15px; color: var(--ink); }
.social-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.social-pill {
  font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 999px;
  background: var(--blue-light); color: var(--blue);
}
.social-pill:hover { background: var(--blue); color: #fff; }

.contact-form { background: var(--paper-off); border-radius: var(--radius); padding: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-row label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); }
.form-row input, .form-row textarea {
  font-family: var(--font-body); font-size: 15px; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(20,22,43,0.15); background: #fff; width: 100%; resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(26,63,203,0.12); }
.field-error { color: #c0392b; font-size: 12.5px; }
.form-alert { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 20px; }
.form-alert.success { background: #e5f8ee; color: #14824c; border: 1px solid rgba(23,163,91,0.3); }
.form-alert.error { background: #fdeceb; color: #a3291c; border: 1px solid rgba(192,57,43,0.3); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------------- */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,0.85); padding: 70px 24px 26px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-heading { font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); display: block; margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-text .name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; }
.footer-brand-text .sub { font-size: 12px; color: rgba(255,255,255,0.6); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.7); max-width: 34ch; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-contact-item .icon { width: 17px; height: 17px; color: var(--gold); margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   Volunteer form page re-skin (keeps existing markup/classes working)
   ============================================================================ */
.vpage-wrap { padding-top: 140px; }
.form-confirm { text-align: left; }
.confirm-codes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
@media (max-width: 560px) { .confirm-codes { grid-template-columns: 1fr; } }
.confirm-codes > div { background: var(--blue-light); border-radius: var(--radius-sm); padding: 18px; }
.confirm-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue); margin-bottom: 8px; }
.confirm-value { font-family: var(--font-display); font-size: 19px; color: var(--blue-dark); font-weight: 700; }
.vform { margin-top: 32px; display: flex; flex-direction: column; gap: 4px; }
.vform-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.vform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 600px) { .vform-grid { grid-template-columns: 1fr; } }
.vform label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); }
.vform label .optional { text-transform: none; letter-spacing: 0; color: rgba(86,90,114,0.6); }
.vform input, .vform select {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid rgba(20,22,43,0.15); border-radius: var(--radius-sm);
  background: #fff; width: 100%;
}
.vform input:focus, .vform select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,63,203,0.12); }
