@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Declare Cascade Layers for predictable specificity */
@layer reset, base, theme, layouts, components, utilities;

@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
  }

  body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  img, picture, svg, video {
    display: block;
    max-width: 100%;
    height: auto;
  }

  input, button, textarea, select {
    font: inherit;
  }

  button {
    cursor: pointer;
    background: none;
    border: none;
  }

  a {
    color: inherit;
    text-decoration: none;
  }
}

@layer base {
  :root {
    /* Brand Colors (Tier 1 Literal Tokens) */
    --vgh-navy-900: #0B1325;
    --vgh-navy-800: #141F36;
    --vgh-navy-700: #1D2D4B;
    --vgh-navy-50: #F4F7FC;
    
    --vgh-gold-600: #C5A059;
    --vgh-gold-500: #D8B570;
    --vgh-gold-400: #EAD09D;
    
    --vgh-ivory-100: #FDFBF7;
    --vgh-ivory-200: #F6F3EB;
    
    --vgh-text-dark: #1E2837;
    --vgh-text-muted: #5E697C;
    --vgh-text-light: #EAF0FB;

    /* Semantic Tokens (Tier 2) */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    
    --bg-primary: var(--vgh-ivory-100);
    --bg-secondary: var(--vgh-ivory-200);
    --bg-dark: var(--vgh-navy-900);
    --bg-dark-surface: var(--vgh-navy-800);
    
    --text-primary: var(--vgh-text-dark);
    --text-muted: var(--vgh-text-muted);
    --text-on-dark: var(--vgh-text-light);
    
    --accent: var(--vgh-gold-600);
    --accent-hover: var(--vgh-gold-500);
    --accent-soft: var(--vgh-gold-400);

    /* Spacing & Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Layout Constants */
    --container-max-width: 1200px;
    --header-height: 80px;
  }

  body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--vgh-navy-900);
  }

  h1 {
    font-size: clamp(2.5rem, 1.5rem + 4vw, 4rem);
    text-wrap: balance;
  }

  h2 {
    font-size: clamp(2rem, 1.2rem + 3vw, 3rem);
    margin-bottom: 1.5rem;
    text-wrap: balance;
  }

  h3 {
    font-size: clamp(1.5rem, 1rem + 2vw, 2.2rem);
    margin-bottom: 1rem;
  }

  p {
    font-size: clamp(1rem, 0.95rem + 0.2vw, 1.15rem);
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    text-wrap: pretty;
  }

  /* Custom Focus outline */
  a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
  }
}

@layer layouts {
  /* Site Header */
  .site-header {
    position: sticky;
    top: 0;
    height: var(--header-height);
    background: rgba(11, 19, 37, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
  }

  .nav-container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    display: flex;
    flex-direction: column;
  }

  .logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
  }

  .logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--text-on-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* Navigation Links */
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-on-dark);
    opacity: 0.85;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
  }

  .nav-links a:hover, .nav-links a.active {
    color: var(--accent);
    opacity: 1;
  }

  .nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
  }

  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1100;
  }

  .hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
  }

  /* Mobile Nav styles */
  @media (max-width: 992px) {
    .hamburger {
      display: flex;
    }

    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 80%;
      max-width: 400px;
      background: var(--bg-dark);
      border-left: 1px solid rgba(197, 160, 89, 0.2);
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 4rem;
      gap: 2.5rem;
      transition: var(--transition-smooth);
      z-index: 1050;
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.open {
      right: 0;
    }

    .nav-links a {
      font-size: 1.2rem;
    }

    /* Hamburger transformation */
    .hamburger.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

  /* Common Layout Utilities */
  .section {
    padding: clamp(4rem, 2rem + 6vw, 8rem) 0;
  }

  .section-dark {
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
  }

  .section-dark h2, .section-dark h3 {
    color: var(--text-on-dark);
  }

  .container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
  }

  .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  /* Footer */
  .site-footer {
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    margin-top: auto;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand h4 {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
    color: var(--vgh-text-light);
    opacity: 0.7;
  }

  .footer-links h5 {
    color: var(--accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
  }

  .footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-links a {
    font-size: 0.95rem;
    color: var(--vgh-text-light);
    opacity: 0.75;
    transition: var(--transition-smooth);
  }

  .footer-links a:hover {
    color: var(--accent);
    opacity: 1;
    padding-left: 5px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
      text-align: left;
    }
  }

  .footer-bottom p {
    font-size: 0.85rem;
    color: var(--vgh-text-light);
    opacity: 0.6;
    margin-bottom: 0;
  }

  .investor-link {
    font-size: 0.85rem !important;
    opacity: 0.4 !important;
    transition: var(--transition-smooth);
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  }

  .investor-link:hover {
    opacity: 0.85 !important;
    border-bottom-color: var(--accent);
  }
}

@layer components {
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    text-align: center;
    cursor: pointer;
  }

  .btn-primary {
    background-color: var(--accent);
    color: var(--bg-dark);
    border: 1px solid var(--accent);
  }

  .btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
  }

  .btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
  }

  .btn-secondary:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.15);
  }

  .btn-on-dark-secondary {
    background-color: transparent;
    color: var(--text-on-dark);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
  }

  .btn-on-dark-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
  }

  .btn-full {
    width: 100%;
  }

  /* Hero Section */
  .hero-home {
    background: linear-gradient(rgba(11, 19, 37, 0.85), rgba(11, 19, 37, 0.95)),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    min-height: calc(85vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 6rem 0;
  }

  .hero-content {
    max-width: 800px;
  }

  .hero-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    color: var(--text-on-dark);
    margin-bottom: 2rem;
  }

  /* 4-Way CTA split card deck */
  .cta-split-deck {
    margin-top: -6rem;
    z-index: 10;
    position: relative;
    padding-bottom: 4rem;
  }

  .cta-card {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
  }

  .cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
  }

  /* High priority booking card style */
  .cta-card.high-priority {
    background: linear-gradient(135deg, var(--bg-dark-surface) 0%, var(--bg-dark) 100%);
    color: var(--text-on-dark);
    border: 2px solid var(--accent);
  }

  .cta-card.high-priority h3 {
    color: var(--text-on-dark);
  }

  .cta-card.high-priority p {
    color: var(--text-on-dark);
    opacity: 0.8;
  }

  .cta-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cta-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .cta-card .card-badge {
    align-self: flex-start;
    background: rgba(197, 160, 89, 0.2);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
  }

  /* Logo strip */
  .logo-strip {
    background-color: var(--bg-secondary);
    padding: 3rem 0;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
  }

  .logo-strip-title {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-family: var(--font-body);
  }

  .logo-marquee {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .sector-tag {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--vgh-navy-900);
    opacity: 0.45;
    font-weight: 600;
    letter-spacing: 1px;
  }

  /* Proof metric bar */
  .metrics-bar {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-surface) 100%);
    padding: 5rem 0;
    color: var(--text-on-dark);
  }

  .metric-item {
    text-align: center;
  }

  .metric-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 2rem + 3vw, 4.5rem);
    color: var(--accent);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .metric-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
  }

  /* Subpage Hero */
  .subpage-hero {
    background: linear-gradient(rgba(11, 19, 37, 0.85), rgba(11, 19, 37, 0.95)),
                url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    padding: 6rem 0 4rem;
    color: var(--text-on-dark);
  }

  .subpage-hero.partner-hero {
    background-image: linear-gradient(rgba(11, 19, 37, 0.85), rgba(11, 19, 37, 0.95)),
                      url('https://images.unsplash.com/photo-1517840901100-8179e982acb7?auto=format&fit=crop&w=1920&q=80');
  }

  .subpage-hero h1 {
    color: var(--text-on-dark);
    margin-bottom: 1rem;
  }

  .breadcrumbs {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }

  .breadcrumbs a {
    color: var(--text-on-dark);
    opacity: 0.7;
    margin-right: 0.5rem;
  }

  .breadcrumbs a::after {
    content: '/';
    margin-left: 0.5rem;
    opacity: 0.5;
  }

  /* Interactive Group Structure Diagram (SVG styles) */
  .diagram-container {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(197, 160, 89, 0.15);
    display: flex;
    justify-content: center;
    margin: 3rem 0;
  }

  .structure-diagram {
    width: 100%;
    max-width: 700px;
    height: auto;
  }

  .diagram-node {
    transition: var(--transition-smooth);
    cursor: pointer;
  }

  .diagram-node:hover {
    filter: drop-shadow(0 4px 12px rgba(197, 160, 89, 0.4));
  }

  .diagram-node rect {
    fill: var(--bg-dark-surface);
    stroke: var(--accent);
    stroke-width: 1.5px;
    transition: var(--transition-smooth);
  }

  .diagram-node:hover rect {
    fill: var(--bg-dark);
    stroke-width: 2px;
  }

  .diagram-node.highlight rect {
    fill: var(--bg-dark);
    stroke: var(--accent-hover);
    stroke-width: 2px;
  }

  .diagram-node text {
    fill: var(--text-on-dark);
    font-family: var(--font-body);
    font-weight: 500;
  }

  .diagram-node .title {
    font-family: var(--font-heading);
    font-weight: 700;
    fill: var(--accent);
  }

  .diagram-link {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2px;
    stroke-dasharray: 4 4;
  }

  /* Service list & SLA statement */
  .service-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--accent);
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
  }

  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--vgh-navy-900);
  }

  .sla-box {
    background: linear-gradient(135deg, var(--bg-dark-surface) 0%, var(--bg-dark) 100%);
    border: 2px solid var(--accent);
    color: var(--text-on-dark);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
  }

  .sla-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197,160,89,0.08) 0%, transparent 60%);
    pointer-events: none;
  }

  .sla-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
  }

  .sla-box h3 {
    font-size: 2rem;
    color: var(--text-on-dark);
    margin-bottom: 1rem;
  }

  /* Segmented tabs on enquiry page */
  .book-tabs-container {
    margin: 2rem 0 4rem;
  }

  .tab-buttons-wrapper {
    display: flex;
    overflow-x: auto;
    border-bottom: 2px solid var(--vgh-ivory-200);
    margin-bottom: 3rem;
    padding-bottom: 2px;
    gap: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
  }

  .tab-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: var(--transition-smooth);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
  }

  .tab-btn:hover {
    color: var(--vgh-navy-900);
  }

  .tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
  }

  .tab-panel {
    display: none;
  }

  .tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .google-direct-link-container {
    background: var(--vgh-ivory-200);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .google-direct-link-container {
      flex-direction: row;
      text-align: left;
    }
  }

  .google-direct-link-container p {
    margin-bottom: 0;
    font-size: 0.95rem;
  }

  /* Form Elements styling */
  .form-card {
    background-color: var(--bg-primary);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  }

  .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vgh-navy-900);
  }

  .form-group input, .form-group select, .form-group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(197, 160, 89, 0.2);
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    transition: var(--transition-smooth);
  }

  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
  }

  /* Clients & Results page outcome cards */
  .outcome-card {
    background-color: var(--bg-primary);
    border: 1px solid rgba(197,160,89,0.15);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
  }

  .outcome-card:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  }

  .outcome-metric {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .outcome-meta {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--vgh-navy-900);
    margin-bottom: 0.5rem;
  }

  /* Contact Page Details */
  .contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }

  .contact-info-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--vgh-navy-900);
  }

  .contact-info-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
  }
}

@layer utilities {
  /* Scroll reveal animations support classes */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .revealed {
    opacity: 1;
    transform: translate(0) !important;
  }

  /* Spacing */
  .mb-1 { margin-bottom: 0.5rem; }
  .mb-2 { margin-bottom: 1rem; }
  .mb-3 { margin-bottom: 1.5rem; }
  .mb-4 { margin-bottom: 2rem; }
  .mb-5 { margin-bottom: 3rem; }
  
  .mt-1 { margin-top: 0.5rem; }
  .mt-2 { margin-top: 1rem; }
  .mt-3 { margin-top: 1.5rem; }
  .mt-4 { margin-top: 2rem; }
  .mt-5 { margin-top: 3rem; }

  .text-center { text-align: center; }
  .text-gold { color: var(--accent); }
  .text-on-dark-muted { color: var(--vgh-text-light); opacity: 0.7; }
}
