/* ============================================================================
   HBT Premium Website — Editorial Luxury Design System
   Inspired by: Aesop · NYT · Apple · Hermès digital
   ============================================================================ */

/* ===== CSS Reset (modern, minimal) ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.6; font-family: var(--font-sans); color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-feature-settings: 'kern', 'liga', 'ss01'; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color 200ms ease; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.15; font-weight: 400; letter-spacing: -0.01em; overflow-wrap: anywhere; word-break: break-word; }
::selection { background: var(--gold); color: var(--cream); }

/* ===== Design Tokens ===== */
:root {
  /* Colors — refined palette */
  --navy:        #1F2A44;
  --navy-light:  #2D3B5E;
  --navy-dark:   #141B2D;
  --gold:        #B45309;
  --gold-light:  #D4A437;
  --gold-soft:   rgba(180, 83, 9, 0.08);
  --cream:       #FAFAF7;
  --cream-dark:  #F5F0E6;
  --ink:         #1F2937;
  --ink-muted:   #6B7280;
  --ink-light:   #9CA3AF;
  --line:        rgba(31, 42, 68, 0.08);
  --line-strong: rgba(31, 42, 68, 0.16);
  --paper:       #FFFFFF;

  /* Semantic */
  --success: #10B981;
  --warning: #F59E0B;
  --danger:  #DC2626;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-sans:    'Inter', 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Consolas', 'Monaco', monospace;

  /* Type scale (fluid) — mobile-friendly */
  --text-xs:    clamp(0.7rem, 0.7rem + 0.1vw, 0.75rem);
  --text-sm:    clamp(0.8rem, 0.8rem + 0.1vw, 0.875rem);
  --text-base:  clamp(0.95rem, 0.9rem + 0.2vw, 1rem);
  --text-md:    clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:    clamp(1.05rem, 1rem + 0.4vw, 1.375rem);
  --text-xl:    clamp(1.25rem, 1.1rem + 0.8vw, 2rem);
  --text-2xl:   clamp(1.5rem, 1.2rem + 1.8vw, 3rem);
  --text-3xl:   clamp(1.875rem, 1.4rem + 2.5vw, 4rem);
  --text-hero:  clamp(2rem, 1.5rem + 3.5vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max:    1280px;
  --container-narrow: 880px;
  --container-text:   680px;

  /* Effects */
  --shadow-xs:    0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:    0 2px 4px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --transition:   200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Imports ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap');

/* ===== Layout Primitives ===== */
.container        { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-4); width: 100%; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-4); width: 100%; }
.container-text   { max-width: var(--container-text); margin: 0 auto; padding: 0 var(--space-4); width: 100%; }
@media (min-width: 640px) { .container, .container-narrow, .container-text { padding-left: var(--space-6); padding-right: var(--space-6); } }
@media (min-width: 1024px) { .container, .container-narrow, .container-text { padding-left: var(--space-8); padding-right: var(--space-8); } }

.section { padding: var(--space-16) 0; }
@media (min-width: 768px) { .section { padding: var(--space-24) 0; } }
.section-lg { padding: var(--space-20) 0; }
@media (min-width: 768px) { .section-lg { padding: var(--space-32) 0; } }

/* ===== Typography ===== */
.eyebrow { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); display: inline-block; }
@media (min-width: 768px) { .eyebrow { letter-spacing: 0.25em; } }
.heading-hero    { font-size: var(--text-hero); font-style: italic; font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }
.heading-section { font-size: var(--text-2xl); font-style: italic; font-weight: 500; }
.heading-card    { font-family: var(--font-sans); font-size: var(--text-md); font-weight: 600; }
.lead            { font-size: var(--text-md); color: var(--ink-muted); line-height: 1.7; }
.body-italic     { font-style: italic; color: var(--ink-muted); }
.mono            { font-family: var(--font-mono); }

/* ===== Header (sticky, refined) ===== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(31, 42, 68, 0.95); backdrop-filter: saturate(180%) blur(8px); -webkit-backdrop-filter: saturate(180%) blur(8px); color: var(--cream); }
.site-header::after { content: ''; display: block; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
@media (min-width: 768px) { .header-inner { height: 88px; } }

.brand { display: flex; align-items: center; gap: var(--space-3); }
.brand-mark { width: 40px; height: 40px; background: var(--gold); display: grid; place-items: center; font-family: var(--font-display); font-style: italic; font-weight: 700; color: var(--cream); font-size: 1.4rem; transition: var(--transition); }
.brand:hover .brand-mark { background: var(--gold-light); }
.brand-text { display: none; }
@media (min-width: 640px) { .brand-text { display: block; } }
.brand-eyebrow { font-size: 0.625rem; letter-spacing: 0.3em; color: var(--gold-light); text-transform: uppercase; font-weight: 700; }
.brand-name { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; line-height: 1.1; color: var(--cream); }

.site-nav { display: none; align-items: center; gap: var(--space-8); }
@media (min-width: 1024px) { .site-nav { display: flex; } }
.site-nav a { font-size: var(--text-sm); font-weight: 500; letter-spacing: 0.02em; color: var(--cream); position: relative; padding-block: var(--space-2); }
.site-nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform var(--transition); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--gold-light); }

.menu-toggle { display: grid; place-items: center; width: 44px; height: 44px; color: var(--cream); }
.menu-toggle:hover { color: var(--gold-light); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav { display: none; background: var(--navy-dark); border-top: 1px solid var(--navy-light); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: var(--space-4) var(--space-6); font-size: var(--text-sm); font-weight: 500; border-bottom: 1px solid var(--navy-light); color: var(--cream); }
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { background: var(--navy); color: var(--gold-light); border-left: 2px solid var(--gold); padding-left: calc(var(--space-6) - 2px); }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); padding: var(--space-4) var(--space-6); font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: all var(--transition); white-space: nowrap; cursor: pointer; min-height: 44px; }
@media (min-width: 768px) { .btn { padding: var(--space-4) var(--space-8); letter-spacing: 0.1em; } }
.btn-primary { background: var(--gold); color: var(--cream); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--cream); border: 1px solid var(--gold); }
.btn-secondary:hover { background: var(--gold); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn-link { padding: 0; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; font-size: var(--text-xs); border-bottom: 1px solid currentColor; }
.btn-link:hover { color: var(--navy); }

/* ===== Hero ===== */
.hero { background: var(--navy); color: var(--cream); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(180, 83, 9, 0.15) 1px, transparent 0); background-size: 48px 48px; opacity: 0.4; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-inner { position: relative; padding: var(--space-12) 0 var(--space-16); }
@media (min-width: 768px) { .hero-inner { padding: var(--space-20) 0 var(--space-24); } }
@media (min-width: 1024px) { .hero-inner { padding: var(--space-32) 0; } }
.hero-content { max-width: 720px; }
.hero h1 { color: var(--cream); margin: var(--space-4) 0 var(--space-6); }
@media (min-width: 768px) { .hero h1 { margin: var(--space-6) 0 var(--space-8); } }
.hero h1 .accent { display: block; color: var(--gold-light); margin-top: var(--space-2); }
.hero p { font-size: var(--text-base); color: rgba(250, 250, 247, 0.75); line-height: 1.7; max-width: 560px; margin-bottom: var(--space-8); }
@media (min-width: 768px) { .hero p { font-size: var(--text-md); margin-bottom: var(--space-12); } }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-3); }
@media (min-width: 640px) { .hero-cta { gap: var(--space-4); } }

/* ===== Cards ===== */
.card { background: var(--paper); border: 1px solid var(--line); padding: var(--space-6); transition: all var(--transition); position: relative; }
.card:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card-link { display: block; cursor: pointer; }
.card-accent::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform var(--transition); }
.card-accent:hover::before { transform: scaleY(1); }

/* KPI cards */
.kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
@media (min-width: 768px) { .kpi-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } }
@media (min-width: 1024px) { .kpi-grid { grid-template-columns: repeat(5, 1fr); } }
.kpi { padding: var(--space-6); text-align: center; background: var(--paper); border: 1px solid var(--line); }
.kpi-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ink-muted); margin-bottom: var(--space-3); }
.kpi-value { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: clamp(2.25rem, 1.5rem + 3vw, 3.5rem); line-height: 1; color: var(--navy); display: block; }
.kpi-value.gold { color: var(--gold); }
.kpi-meta { font-size: 0.6875rem; color: var(--ink-light); font-style: italic; margin-top: var(--space-3); }
.kpi-featured { background: var(--navy); color: var(--cream); border-color: var(--gold); }
.kpi-featured .kpi-label { color: var(--gold); }
.kpi-featured .kpi-value { color: var(--gold); }

/* HV cards */
.hv-card { padding: var(--space-6); background: var(--paper); border: 1px solid var(--line); transition: all var(--transition); position: relative; }
.hv-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.hv-card .rank { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-3); }
.hv-card .rank-icon { font-size: 1.5rem; line-height: 1; }
.hv-card .rank-num { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; font-weight: 600; color: var(--gold); }
.hv-card .ma { font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-light); margin-left: auto; }
.hv-card .name { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.25rem; line-height: 1.25; color: var(--navy); margin-bottom: var(--space-3); }
.hv-card:hover .name { color: var(--gold); }
.hv-card .meta { display: flex; align-items: baseline; gap: var(--space-3); font-size: var(--text-sm); color: var(--ink-muted); }
.hv-card .m5 { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.75rem; color: var(--gold); line-height: 1; }

/* ===== Skeleton loading ===== */
.skeleton { background: linear-gradient(90deg, var(--cream-dark) 0%, var(--paper) 50%, var(--cream-dark) 100%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 2px; }
.skeleton-text { height: 1em; margin-block: 0.4em; width: 100%; }
.skeleton-text:last-child { width: 60%; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: var(--cream); margin-top: var(--space-24); }
.site-footer::before { content: ''; display: block; height: 2px; background: var(--gold); }
.footer-inner { padding: var(--space-16) 0 var(--space-8); }
.footer-grid { display: grid; gap: var(--space-12); margin-bottom: var(--space-12); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--space-16); } }
.footer-brand .brand-eyebrow { font-size: 0.625rem; }
.footer-brand .brand-name { font-size: 1.5rem; margin-bottom: var(--space-4); }
.footer-brand p { font-size: var(--text-sm); color: rgba(250, 250, 247, 0.7); line-height: 1.7; max-width: 420px; }
.footer-col h4 { font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold-light); margin-bottom: var(--space-4); }
.footer-col ul li { margin-bottom: var(--space-3); }
.footer-col a { font-size: var(--text-sm); color: rgba(250, 250, 247, 0.85); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; flex-direction: column; gap: var(--space-3); padding-top: var(--space-8); border-top: 1px solid var(--navy-light); font-size: 0.75rem; color: var(--ink-light); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom a { color: var(--gold-light); }

/* ===== Section heading ===== */
.section-heading { margin-bottom: var(--space-12); }
.section-heading.center { text-align: center; }
.section-heading .eyebrow { display: inline-block; margin-bottom: var(--space-3); }
.section-heading h2 { color: var(--navy); margin-bottom: var(--space-3); }
.section-heading .lead { max-width: 640px; }
.section-heading.center .lead { margin-inline: auto; }

/* ===== Form ===== */
.form-group { display: flex; flex-direction: column; gap: var(--space-3); }
@media (min-width: 640px) { .form-group { flex-direction: row; } }
.input { flex: 1; padding: var(--space-4); background: var(--paper); border: 1px solid var(--line-strong); font-size: var(--text-base); transition: all var(--transition); }
.input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.input::placeholder { color: var(--ink-light); font-style: italic; }

/* ===== Triết lý "Có đi có lại" 3 cột ===== */
.philosophy-grid { display: grid; gap: var(--space-8); margin-top: var(--space-12); }
@media (min-width: 768px) { .philosophy-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-12); } }
.philosophy-col { padding-left: var(--space-6); border-left: 2px solid var(--gold); }
.philosophy-col .eyebrow { display: block; margin-bottom: var(--space-3); }
.philosophy-col h3 { font-size: var(--text-lg); font-style: italic; margin-bottom: var(--space-4); color: var(--cream); }
.philosophy-col p { font-size: var(--text-sm); color: rgba(250, 250, 247, 0.75); line-height: 1.7; }

/* ===== Breadcrumb ===== */
.breadcrumb { display: flex; gap: var(--space-2); align-items: center; font-size: var(--text-xs); color: var(--ink-muted); padding: var(--space-4) 0; text-transform: uppercase; letter-spacing: 0.1em; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.5; }

/* ===== Toast ===== */
.toast { position: fixed; bottom: var(--space-8); left: 50%; transform: translateX(-50%) translateY(100%); background: var(--navy); color: var(--cream); padding: var(--space-4) var(--space-6); box-shadow: var(--shadow-lg); border-left: 3px solid var(--gold); z-index: 100; transition: transform var(--transition-slow); font-size: var(--text-sm); max-width: calc(100vw - var(--space-8)); }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.error { border-left-color: var(--danger); }
.toast.success { border-left-color: var(--success); }

/* ===== Badge / Pill ===== */
.badge { display: inline-flex; align-items: center; gap: var(--space-2); padding: var(--space-1) var(--space-3); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold); }
.badge.dark { background: rgba(250, 250, 247, 0.1); color: var(--gold-light); border-color: var(--gold-light); }

/* ===== Den TH ===== */
.den-xanh { color: var(--success); }
.den-vang { color: var(--warning); }
.den-do   { color: var(--danger); }
.den-den  { color: var(--ink); }

/* ===== Progress bar ===== */
.progress { width: 100%; height: 6px; background: var(--cream-dark); overflow: hidden; }
.progress-fill { height: 100%; background: var(--gold); transition: width 800ms cubic-bezier(0.4, 0, 0.2, 1); }
.progress-fill.complete { background: var(--success); }

/* ===== Scroll animations (use IntersectionObserver) ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Scrollbar (subtle) ===== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--line-strong); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-muted); }

/* ===== Print ===== */
@media print {
  .site-header, .site-footer, .menu-toggle, .mobile-nav, .btn, .hero-cta { display: none !important; }
  body { background: white; color: black; }
  .card { border: 1px solid #ccc; box-shadow: none; }
}

/* ===== Utility helpers ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-4 { margin-top: var(--space-4); } .mt-8 { margin-top: var(--space-8); } .mt-12 { margin-top: var(--space-12); }
.mb-0 { margin-bottom: 0; } .mb-4 { margin-bottom: var(--space-4); } .mb-8 { margin-bottom: var(--space-8); } .mb-12 { margin-bottom: var(--space-12); }
.gap-4 { gap: var(--space-4); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none; }

/* ===== Specific page sections ===== */
.dark-section { background: var(--navy); color: var(--cream); padding: var(--space-20) 0; }
.dark-section h2 { color: var(--cream); }
.dark-section .lead { color: rgba(250, 250, 247, 0.75); }
.dark-section .eyebrow { color: var(--gold-light); }

.bg-cream-dark { background: var(--cream-dark); }
.bg-paper { background: var(--paper); }

/* ===== Mobile-first overrides ===== */
@media (max-width: 639px) {
  /* Section padding nhỏ hơn */
  .section { padding: var(--space-12) 0; }
  .section-lg { padding: var(--space-16) 0; }

  /* Heading wrap-friendly */
  .heading-hero { hyphens: auto; -webkit-hyphens: auto; }
  .heading-section { font-size: var(--text-xl); }

  /* Cards padding tightened */
  .card { padding: var(--space-5); }
  .kpi { padding: var(--space-4); }
  .kpi-label { font-size: 0.625rem; letter-spacing: 0.1em; }
  .kpi-value { font-size: clamp(1.75rem, 1.5rem + 2vw, 2.5rem); }
  .kpi-meta { font-size: 0.625rem; }

  /* Footer columns thu gọn */
  .footer-grid { gap: var(--space-8); }
  .footer-brand .brand-name { font-size: 1.25rem; }
  .footer-brand p { font-size: var(--text-sm); }

  /* Section heading flex layout cho top section trang chủ */
  .section-heading > * { word-wrap: break-word; }

  /* Hero stats text wrap better */
  .hero-stat { padding: 0; min-width: 0; overflow: hidden; }
  .hero-stat .lbl { white-space: normal; word-break: break-word; }

  /* Buttons full-width khi quá nhiều */
  .hero-cta .btn { flex: 1 1 auto; min-width: 140px; }

  /* Form group stack on small screens */
  .form-group { flex-direction: column; }
  .form-group .btn { width: 100%; }

  /* Breadcrumb nhỏ */
  .breadcrumb { font-size: 0.6875rem; }
}

/* Tablet adjustments */
@media (min-width: 640px) and (max-width: 1023px) {
  .heading-hero { font-size: clamp(2.25rem, 1.5rem + 4vw, 3.5rem); }
}

/* ===== Hero stats inline (alternative layout) ===== */
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-12); padding-top: var(--space-6); border-top: 1px solid rgba(180, 83, 9, 0.2); }
@media (min-width: 768px) { .hero-stats { gap: var(--space-6); margin-top: var(--space-16); padding-top: var(--space-8); } }
.hero-stat { min-width: 0; }
.hero-stat .num { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: clamp(1.25rem, 1rem + 1.5vw, 2rem); color: var(--gold-light); display: block; line-height: 1; }
.hero-stat .lbl { font-size: clamp(0.5rem, 0.45rem + 0.2vw, 0.6875rem); text-transform: uppercase; letter-spacing: 0.12em; color: rgba(250, 250, 247, 0.6); margin-top: var(--space-2); display: block; line-height: 1.3; }
@media (min-width: 640px) { .hero-stat .lbl { letter-spacing: 0.2em; } }
