/* ============================================
   EUHBS — European Heritage Business School
   Custom theme + animations (no inline CSS)
   ============================================ */

   :root {
    --euhbs-burgundy: #6b1f2a;
    --euhbs-burgundy-dark: #4a121b;
    --euhbs-gold: #c9a961;
    --euhbs-gold-soft: #e6d3a3;
    --euhbs-cream: #faf6ee;
    --euhbs-ivory: #f4ecdc;
    --euhbs-charcoal: #1f1b16;
    --euhbs-muted: #6b6258;
  
    --eu-font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
    --eu-font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  }
  
  /* ---------- Base ---------- */
  html,
  body {
    background-color: var(--euhbs-cream);
    color: var(--euhbs-charcoal);
    font-family: var(--eu-font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  /* offset anchors so they don't tuck under sticky nav */
  section[id] {
    scroll-margin-top: 88px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--eu-font-serif);
    letter-spacing: -0.01em;
    color: var(--euhbs-charcoal);
  }
  
  .text-balance { text-wrap: balance; }
  .text-pretty  { text-wrap: pretty; }
  
  .eu-eyebrow {
    font-family: var(--eu-font-sans);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--euhbs-burgundy);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }
  
  .eu-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background-color: var(--euhbs-gold);
    display: inline-block;
  }
  
  .eu-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--euhbs-gold), transparent);
    border: 0;
    margin: 1rem 0 1.5rem;
    opacity: 1;
  }
  
  /* ---------- Buttons ---------- */
  .btn-euhbs-primary {
    background-color: var(--euhbs-burgundy);
    color: var(--euhbs-cream);
    border: 1px solid var(--euhbs-burgundy);
    padding: 0.8rem 1.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    display: inline-flex;
    align-items: center;
  }
  
  .btn-euhbs-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--euhbs-charcoal);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
  }
  
  .btn-euhbs-primary:hover,
  .btn-euhbs-primary:focus {
    color: var(--euhbs-gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -12px rgba(31, 27, 22, 0.45);
  }
  
  .btn-euhbs-primary:hover::after { transform: translateY(0); }
  
  .btn-euhbs-outline {
    background: transparent;
    color: var(--euhbs-charcoal);
    border: 1px solid var(--euhbs-charcoal);
    padding: 0.8rem 1.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
  
  .btn-euhbs-outline:hover {
    background-color: var(--euhbs-charcoal);
    color: var(--euhbs-cream);
    transform: translateY(-2px);
  }
  
  .btn-euhbs-gold {
    background-color: var(--euhbs-gold);
    color: var(--euhbs-charcoal);
    border: 1px solid var(--euhbs-gold);
    padding: 0.8rem 1.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .btn-euhbs-gold:hover {
    background-color: var(--euhbs-gold-soft);
    color: var(--euhbs-burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -12px rgba(201, 169, 97, 0.6);
  }
  
  .btn-euhbs-outline-light {
    background: transparent;
    color: var(--euhbs-cream);
    border: 1px solid rgba(250, 246, 238, 0.4);
    padding: 0.8rem 1.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  }
  
  .btn-euhbs-outline-light:hover {
    background-color: var(--euhbs-cream);
    color: var(--euhbs-charcoal);
    border-color: var(--euhbs-cream);
    transform: translateY(-2px);
  }
  
  /* ---------- Navbar ---------- */
  .eu-navbar {
    background-color: rgba(250, 246, 238, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(31, 27, 22, 0.06);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .eu-navbar.scrolled {
    background-color: rgba(250, 246, 238, 0.96);
    box-shadow: 0 6px 24px -16px rgba(31, 27, 22, 0.25);
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }
  
  .eu-brand {
    font-family: var(--eu-font-serif);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--euhbs-charcoal) !important;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
  }
  
  .eu-brand-suffix {
    font-weight: 400;
    opacity: 0.6;
    margin-left: 0.5rem;
    font-family: var(--eu-font-sans);
    font-size: 0.95rem;
  }
  
  .eu-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--euhbs-gold), var(--euhbs-burgundy) 70%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--euhbs-cream);
    font-family: var(--eu-font-serif);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
  }
  
  .eu-nav-link {
    color: var(--euhbs-charcoal) !important;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    margin: 0 0.4rem;
    padding: 0.5rem 0.2rem !important;
  }
  
  .eu-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.25rem;
    width: 100%;
    height: 1px;
    background-color: var(--euhbs-burgundy);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
  }
  
  .eu-nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .navbar-toggler:focus { box-shadow: none; }
  
  /* ---------- Hero ---------- */
  .eu-hero {
    position: relative;
    padding: 9rem 0 6rem;
    overflow: hidden;
    background-color: var(--euhbs-cream);
  }
  
  .eu-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.18), transparent 55%),
      radial-gradient(ellipse at bottom left, rgba(107, 31, 42, 0.08), transparent 60%);
    z-index: 0;
  }
  
  .eu-hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(31, 27, 22, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(31, 27, 22, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    z-index: 0;
  }
  
  .eu-hero .container {
    position: relative;
    z-index: 2;
  }
  
  .eu-hero-title {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }
  
  .eu-hero-title .accent {
    color: var(--euhbs-burgundy);
    font-style: italic;
    position: relative;
    display: inline-block;
  }
  
  .eu-hero-title .accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.05em;
    height: 0.18em;
    background-color: rgba(201, 169, 97, 0.45);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: euUnderline 1.2s 0.8s ease forwards;
  }
  
  .eu-hero-sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--euhbs-muted);
    max-width: 540px;
    margin-bottom: 2rem;
  }
  
  .eu-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    color: var(--euhbs-muted);
    font-size: 0.9rem;
  }
  
  .eu-hero-meta strong {
    font-family: var(--eu-font-serif);
    font-size: 1.6rem;
    color: var(--euhbs-charcoal);
    display: block;
    line-height: 1;
    margin-bottom: 0.2rem;
    font-weight: 700;
  }
  
  .eu-hero-meta-item {
    border-left: 1px solid rgba(31, 27, 22, 0.18);
    padding-left: 1.2rem;
  }
  
  .eu-hero-meta-item:first-child {
    border-left: 0;
    padding-left: 0;
  }
  
  /* Hero image */
  .eu-hero-visual {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
      0 30px 60px -30px rgba(31, 27, 22, 0.45),
      0 0 0 1px rgba(31, 27, 22, 0.05);
    aspect-ratio: 4 / 5;
    background-color: var(--euhbs-ivory);
  }
  
  .eu-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 8s ease;
    display: block;
  }
  
  .eu-hero-visual:hover img {
    transform: scale(1.1);
  }
  
  .eu-hero-frame {
    position: absolute;
    border: 1px solid var(--euhbs-gold);
    border-radius: 4px;
    pointer-events: none;
  }
  
  .eu-hero-frame-1 {
    inset: -18px -18px 18px 18px;
    z-index: 0;
    animation: euFloat 6s ease-in-out infinite;
  }
  
  .eu-hero-badge {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background-color: var(--euhbs-cream);
    color: var(--euhbs-charcoal);
    padding: 0.85rem 1.1rem;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    box-shadow: 0 12px 28px -16px rgba(31, 27, 22, 0.45);
    animation: euFloat 5s ease-in-out infinite;
    margin: 0;
  }
  
  .eu-hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2f9e6b;
    box-shadow: 0 0 0 4px rgba(47, 158, 107, 0.18);
    animation: euPulse 2.2s ease-out infinite;
  }
  
  .eu-hero-badge-title { font-weight: 600; }
  .eu-hero-badge-sub   { color: var(--euhbs-muted); }
  
  /* ---------- Marquee strip ---------- */
  .eu-marquee {
    background-color: var(--euhbs-charcoal);
    color: var(--euhbs-cream);
    overflow: hidden;
    border-top: 1px solid rgba(201, 169, 97, 0.25);
    border-bottom: 1px solid rgba(201, 169, 97, 0.25);
  }
  
  .eu-marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    padding: 1.1rem 0;
    animation: euMarquee 35s linear infinite;
    font-family: var(--eu-font-serif);
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    width: max-content;
  }
  
  .eu-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    color: var(--euhbs-gold-soft);
  }
  
  .eu-marquee-track span::after {
    content: "✦";
    color: var(--euhbs-gold);
    font-size: 0.9rem;
  }
  
  /* ---------- Section base ---------- */
  .eu-section {
    padding: 6rem 0;
    position: relative;
  }
  
  .eu-section-light  { background-color: var(--euhbs-cream); }
  .eu-section-ivory  { background-color: var(--euhbs-ivory); }
  .eu-section-dark   { background-color: var(--euhbs-charcoal); color: var(--euhbs-cream); }
  
  .eu-section-dark h1,
  .eu-section-dark h2,
  .eu-section-dark h3,
  .eu-section-dark h4 { color: var(--euhbs-cream); }
  
  .eu-section-title {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  
  .eu-section-title em {
    color: var(--euhbs-burgundy);
    font-style: italic;
  }
  
  .eu-section-lead {
    color: var(--euhbs-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 620px;
  }
  
  .eu-section-dark .eu-section-lead {
    color: rgba(250, 246, 238, 0.7);
  }
  
  /* ---------- Value props ---------- */
  .eu-value {
    background-color: var(--euhbs-cream);
    border: 1px solid rgba(31, 27, 22, 0.08);
    padding: 2.4rem 2rem;
    border-radius: 4px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  }
  
  .eu-value::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--euhbs-burgundy), var(--euhbs-gold));
    transition: width 0.5s ease;
  }
  
  .eu-value:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -28px rgba(31, 27, 22, 0.4);
    border-color: rgba(201, 169, 97, 0.4);
  }
  
  .eu-value:hover::before { width: 100%; }
  
  .eu-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--euhbs-ivory);
    color: var(--euhbs-burgundy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
  }
  
  .eu-value:hover .eu-value-icon {
    background-color: var(--euhbs-burgundy);
    color: var(--euhbs-gold-soft);
    transform: rotate(-6deg) scale(1.05);
  }
  
  .eu-value h3 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
  }
  
  .eu-value p {
    color: var(--euhbs-muted);
    line-height: 1.65;
    margin: 0;
  }
  
  /* ---------- Trust signals ---------- */
  .eu-accred {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
  }
  
  .eu-accred-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(31, 27, 22, 0.12);
    border-radius: 999px;
    background-color: var(--euhbs-cream);
    color: var(--euhbs-charcoal);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }
  
  .eu-accred-badge:hover {
    border-color: var(--euhbs-gold);
    transform: translateY(-2px);
  }
  
  .eu-accred-badge .seal {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--euhbs-gold-soft), var(--euhbs-burgundy));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--euhbs-cream);
    font-family: var(--eu-font-serif);
    font-weight: 700;
    font-size: 0.7rem;
  }
  
  /* Testimonial */
  .eu-testimonial {
    background-color: var(--euhbs-cream);
    border: 1px solid rgba(31, 27, 22, 0.08);
    padding: 2.5rem;
    border-radius: 4px;
    position: relative;
  }
  
  .eu-testimonial::before {
    content: "\201C";
    position: absolute;
    top: -1.2rem;
    left: 1.2rem;
    font-family: var(--eu-font-serif);
    font-size: 6rem;
    color: var(--euhbs-gold);
    line-height: 1;
  }
  
  .eu-testimonial-quote {
    font-family: var(--eu-font-serif);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.55;
    color: var(--euhbs-charcoal);
    margin-bottom: 1.6rem;
  }
  
  .eu-testimonial-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .eu-testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--euhbs-gold);
  }
  
  .eu-testimonial-name {
    font-weight: 600;
    margin-bottom: 0.1rem;
  }
  
  .eu-testimonial-role {
    font-size: 0.85rem;
    color: var(--euhbs-muted);
  }
  
  /* ---------- Programs ---------- */
  .eu-program {
    position: relative;
    padding: 2rem;
    border-radius: 4px;
    background-color: var(--euhbs-cream);
    border: 1px solid rgba(31, 27, 22, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  
  .eu-program::before {
    content: "";
    position: absolute;
    inset: auto -40% -60% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 70%);
    transition: transform 0.6s ease;
    pointer-events: none;
  }
  
  .eu-program:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 48px -28px rgba(31, 27, 22, 0.35);
  }
  
  .eu-program:hover::before { transform: scale(1.4); }
  
  .eu-program-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--euhbs-burgundy);
    margin-bottom: 1rem;
  }
  
  .eu-program h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
  }
  
  .eu-program p {
    color: var(--euhbs-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
  }
  
  .eu-program-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--euhbs-charcoal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease, gap 0.3s ease;
  }
  
  .eu-program-link:hover {
    color: var(--euhbs-burgundy);
    gap: 0.85rem;
  }
  
  .eu-program-link svg { transition: transform 0.3s ease; }
  .eu-program-link:hover svg { transform: translateX(3px); }
  
  /* ---------- News ---------- */
  .eu-news {
    background-color: var(--euhbs-cream);
    border: 1px solid rgba(31, 27, 22, 0.08);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  
  .eu-news:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 48px -28px rgba(31, 27, 22, 0.4);
  }
  
  .eu-news-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }
  
  .eu-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    display: block;
  }
  
  .eu-news:hover .eu-news-img img { transform: scale(1.06); }
  
  .eu-news-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex-grow: 1;
  }
  
  .eu-news-meta {
    display: flex;
    gap: 0.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--euhbs-muted);
    font-weight: 600;
  }
  
  .eu-news-meta .cat { color: var(--euhbs-burgundy); }
  
  .eu-news-body h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 0;
  }
  
  .eu-news-body p {
    color: var(--euhbs-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
  }
  
  /* ---------- CTA banner ---------- */
  .eu-cta {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background-color: var(--euhbs-charcoal);
    color: var(--euhbs-cream);
  }
  
  .eu-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: saturate(1.05);
    transform: scale(1.05);
    animation: euSlowZoom 18s ease-in-out infinite alternate;
  }
  
  .eu-cta-bg-img {
    background-image: url("/images/cta-banner.jpg");
  }
  
  .eu-cta-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(31, 27, 22, 0.7) 0%, rgba(31, 27, 22, 0.85) 100%),
      radial-gradient(ellipse at center, rgba(107, 31, 42, 0.45) 0%, transparent 70%);
  }
  
  .eu-cta .container {
    position: relative;
    z-index: 1;
  }
  
  .eu-cta h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: var(--euhbs-cream);
    margin-bottom: 1rem;
  }
  
  .eu-cta h2 em {
    color: var(--euhbs-gold);
    font-style: italic;
  }
  
  .eu-cta p {
    color: rgba(250, 246, 238, 0.78);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2rem;
  }
  
  .eu-cta .eu-eyebrow         { color: var(--euhbs-gold); }
  .eu-cta .eu-eyebrow::before { background-color: var(--euhbs-gold); }
  
  /* ---------- Footer ---------- */
  .eu-footer {
    background-color: #14110d;
    color: rgba(250, 246, 238, 0.7);
    padding: 5rem 0 2rem;
  }
  
  .eu-footer h5 {
    color: var(--euhbs-cream);
    font-family: var(--eu-font-serif);
    font-size: 1rem;
    margin-bottom: 1.1rem;
    letter-spacing: 0.04em;
  }
  
  .eu-footer a {
    color: rgba(250, 246, 238, 0.7);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    font-size: 0.92rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .eu-footer a:hover {
    color: var(--euhbs-gold);
    transform: translateX(3px);
  }
  
  .eu-footer .eu-brand {
    color: var(--euhbs-cream) !important;
  }
  
  .eu-footer-meta {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(250, 246, 238, 0.55);
  }
  
  .eu-footer-icon {
    margin-top: 2px;
    flex-shrink: 0;
  }
  
  .eu-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
  }
  
  .eu-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(250, 246, 238, 0.18);
    padding: 0 !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
  
  .eu-social a:hover {
    background-color: var(--euhbs-gold);
    border-color: var(--euhbs-gold);
    color: var(--euhbs-charcoal);
    transform: translateY(-3px);
  }
  
  .eu-footer-bottom {
    border-top: 1px solid rgba(250, 246, 238, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(250, 246, 238, 0.45);
  }
  
  .eu-footer-bottom a {
    display: inline-block;
    padding: 0;
    margin-left: 1.2rem;
  }
  
  /* ---------- Reveal-on-scroll ---------- */
  .eu-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
  }
  
  .eu-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .eu-reveal-delay-1 { transition-delay: 0.12s; }
  .eu-reveal-delay-2 { transition-delay: 0.24s; }
  .eu-reveal-delay-3 { transition-delay: 0.36s; }
  .eu-reveal-delay-4 { transition-delay: 0.48s; }
  
  /* ---------- Keyframes ---------- */
  @keyframes euFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes euFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  
  @keyframes euPulse {
    0%   { box-shadow: 0 0 0 0 rgba(47, 158, 107, 0.5); }
    70%  { box-shadow: 0 0 0 12px rgba(47, 158, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(47, 158, 107, 0); }
  }
  
  @keyframes euUnderline {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
  
  @keyframes euMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  @keyframes euSlowZoom {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.15); }
  }
  
  /* Hero entrance animations */
  .eu-hero-eyebrow     { animation: euFadeUp 0.9s ease 0.1s both; }
  .eu-hero-title       { animation: euFadeUp 0.9s ease 0.25s both; }
  .eu-hero-sub         { animation: euFadeUp 0.9s ease 0.4s both; }
  .eu-hero-actions     { animation: euFadeUp 0.9s ease 0.55s both; }
  .eu-hero-meta        { animation: euFadeUp 0.9s ease 0.7s both; }
  .eu-hero-visual-wrap { animation: euFadeUp 1s   ease 0.35s both; }
  
  /* ---------- Reduced motion ---------- */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
    .eu-reveal {
      opacity: 1;
      transform: none;
    }
  }
  
  /* ---------- Responsive tweaks ---------- */
  @media (max-width: 991.98px) {
    .eu-hero    { padding: 7rem 0 4rem; }
    .eu-section { padding: 4.5rem 0; }
    .eu-cta     { padding: 5rem 0; }
    .eu-hero-meta-item {
      border-left: 0;
      padding-left: 0;
    }
  }
  
  @media (max-width: 575.98px) {
    .eu-testimonial { padding: 2rem 1.5rem; }
    .eu-value       { padding: 1.8rem 1.4rem; }
    .eu-footer-bottom a { margin-left: 0; margin-right: 1rem; }
  }
  
  /* ============================================
     ABOUT‑PAGE SPECIFIC
     ============================================ */
  
  /* ---------- Breadcrumb ---------- */
  .eu-breadcrumb {
    margin-bottom: 1.5rem;
  }
  
  .eu-breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    font-family: var(--eu-font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .eu-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--euhbs-muted);
  }
  
  .eu-breadcrumb li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 1px;
    background-color: var(--euhbs-gold);
    margin: 0 0.2rem;
  }
  
  .eu-breadcrumb a {
    color: var(--euhbs-burgundy);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .eu-breadcrumb a:hover {
    color: var(--euhbs-gold);
  }
  
  /* ---------- Mission blockquote ---------- */
  .eu-mission-blockquote {
    position: relative;
    padding: 3rem 2.5rem;
    background-color: var(--euhbs-cream);
    border: 1px solid rgba(31, 27, 22, 0.08);
    border-radius: 4px;
    font-family: var(--eu-font-serif);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--euhbs-charcoal);
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  
  .eu-mission-blockquote::before {
    content: "\201C";
    display: block;
    font-family: var(--eu-font-serif);
    font-size: 5rem;
    color: var(--euhbs-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  
  .eu-mission-blockquote footer {
    margin-top: 1.8rem;
    font-family: var(--eu-font-sans);
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--euhbs-burgundy);
  }
  
  /* ---------- Timeline ---------- */
  .eu-timeline {
    position: relative;
    padding-left: 2rem;
    list-style: none;
    margin: 0;
  }
  
  .eu-timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, var(--euhbs-gold), var(--euhbs-burgundy), var(--euhbs-gold));
    border-radius: 1px;
  }
  
  .eu-timeline-item {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .eu-timeline-item:last-child {
    padding-bottom: 0;
  }
  
  .eu-timeline-item::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--euhbs-gold-soft), var(--euhbs-burgundy));
    border: 2px solid var(--euhbs-cream);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.35);
    z-index: 1;
    transform: translateX(-4px);
  }
  
  .eu-timeline-year {
    font-family: var(--eu-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--euhbs-burgundy);
    display: block;
    margin-bottom: 0.25rem;
    line-height: 1;
  }
  
  .eu-timeline-desc {
    color: var(--euhbs-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }
  
  /* ---------- Faculty cards ---------- */
  .eu-faculty-card {
    background-color: var(--euhbs-cream);
    border: 1px solid rgba(31, 27, 22, 0.08);
    padding: 2rem 1.6rem;
    border-radius: 4px;
    text-align: center;
    height: 100%;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
    overflow: hidden;
  }
  
  .eu-faculty-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--euhbs-burgundy), var(--euhbs-gold));
    transition: width 0.5s ease;
  }
  
  .eu-faculty-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -28px rgba(31, 27, 22, 0.4);
    border-color: rgba(201, 169, 97, 0.4);
  }
  
  .eu-faculty-card:hover::before {
    width: 100%;
  }
  
  .eu-faculty-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    background: radial-gradient(circle at 30% 30%, var(--euhbs-gold-soft), var(--euhbs-burgundy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--euhbs-cream);
    font-family: var(--eu-font-serif);
    font-weight: 700;
    font-size: 1.5rem;
    border: 3px solid var(--euhbs-gold);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .eu-faculty-card:hover .eu-faculty-avatar {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(201, 169, 97, 0.18);
  }
  
  .eu-faculty-name {
    font-family: var(--eu-font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--euhbs-charcoal);
  }
  
  .eu-faculty-title {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--euhbs-burgundy);
    margin-bottom: 0.8rem;
  }
  
  .eu-faculty-bio {
    color: var(--euhbs-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
  }
  
  /* ---------- Stats grid ---------- */
  .eu-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .eu-stat-item {
    text-align: center;
    min-width: 120px;
    flex: 1;
    max-width: 180px;
  }
  
  .eu-stat-number {
    font-family: var(--eu-font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--euhbs-burgundy);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  
  .eu-stat-label {
    color: var(--euhbs-muted);
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  /* ---------- Mosaic grid ---------- */
  .eu-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
  }
  
  .eu-mosaic img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: block;
  }
  
  .eu-mosaic img:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 36px -18px rgba(31, 27, 22, 0.45);
  }
  
  /* ---------- Active nav link underline (always visible) ---------- */
  .eu-nav-link.active::after,
  .eu-nav-link.is-active-now::after {
    transform: scaleX(1) !important;
    transform-origin: left !important;
  }
  
  /* ---------- Responsive tweaks for new components ---------- */
  @media (max-width: 767.98px) {
    .eu-mosaic {
      grid-template-columns: repeat(2, 1fr);
    }
    .eu-mission-blockquote {
      padding: 2rem 1.5rem;
      font-size: 1.15rem;
    }
    .eu-timeline {
      padding-left: 1.2rem;
    }
    .eu-timeline-item {
      padding-left: 1.8rem;
    }
    .eu-timeline-item::before {
      left: -1.2rem;
      width: 11px;
      height: 11px;
      transform: translateX(-2px);
    }
  }
  
  @media (max-width: 575.98px) {
    .eu-mosaic {
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
    }
    .eu-faculty-card {
      padding: 1.5rem 1.2rem;
    }
    .eu-mission-blockquote {
      padding: 1.6rem 1.2rem;
      font-size: 1.05rem;
    }
  }



  /* ============================================
   PROGRAMS‑PAGE SPECIFIC
   ============================================ */

/* ---------- Filter Bar ---------- */
.eu-filter-bar {
  background-color: var(--euhbs-cream);
  border: 1px solid rgba(31, 27, 22, 0.08);
  padding: 2rem;
  border-radius: 4px;
}

.eu-filter-label {
  font-family: var(--eu-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--euhbs-burgundy);
  margin-bottom: 0.4rem;
}

.eu-filter-input,
.eu-filter-select {
  font-family: var(--eu-font-sans);
  font-size: 0.9rem;
  color: var(--euhbs-charcoal);
  border: 1px solid rgba(31, 27, 22, 0.2);
  border-radius: 2px;
  background-color: var(--euhbs-cream);
  padding: 0.65rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.eu-filter-input:focus,
.eu-filter-select:focus {
  border-color: var(--euhbs-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
  outline: none;
}

.eu-filter-input::placeholder {
  color: var(--euhbs-muted);
  opacity: 0.7;
}

/* ---------- Program Card (with image) ---------- */
.eu-program-card {
  background-color: var(--euhbs-cream);
  border: 1px solid rgba(31, 27, 22, 0.08);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  position: relative;
}

.eu-program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px -28px rgba(31, 27, 22, 0.4);
  border-color: rgba(201, 169, 97, 0.4);
}

.eu-program-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--euhbs-ivory);
}

.eu-program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  display: block;
}

.eu-program-card:hover .eu-program-card-img img {
  transform: scale(1.06);
}

.eu-program-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.eu-program-card-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--euhbs-burgundy);
  background-color: var(--euhbs-ivory);
  padding: 0.3rem 0.9rem;
  border-radius: 3px;
}

.eu-program-card-duration {
  font-size: 0.8rem;
  color: var(--euhbs-muted);
  font-weight: 500;
  margin-left: auto;
}

.eu-program-card-body h3 {
  font-family: var(--eu-font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.8rem 0 0.6rem;
  color: var(--euhbs-charcoal);
  line-height: 1.3;
}

.eu-program-card-body p {
  color: var(--euhbs-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.eu-program-card-body .eu-program-link {
  align-self: flex-start;
}

/* ---------- FAQ Accordion ---------- */
.eu-accordion .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(31, 27, 22, 0.12);
}

.eu-accordion .accordion-button {
  font-family: var(--eu-font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--euhbs-charcoal);
  background-color: transparent;
  padding: 1.2rem 0;
  box-shadow: none;
  transition: color 0.3s ease;
}

.eu-accordion .accordion-button:not(.collapsed) {
  color: var(--euhbs-burgundy);
  background-color: transparent;
}

.eu-accordion .accordion-button::after {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.eu-accordion .accordion-button:hover {
  color: var(--euhbs-burgundy);
}

.eu-accordion .accordion-body {
  font-family: var(--eu-font-sans);
  font-size: 0.95rem;
  color: var(--euhbs-muted);
  line-height: 1.7;
  padding: 0 0 1.5rem;
}

@media (max-width: 767.98px) {
  .eu-accordion .accordion-button {
    font-size: 1rem;
    padding: 1rem 0;
  }
}


/* ============================================
   PROGRAM‑DETAIL SPECIFIC
   ============================================ */

/* ---------- Quick Facts Bar ---------- */
.eu-quickfacts {
  background-color: var(--euhbs-charcoal);
  padding: 3rem 0;
  color: var(--euhbs-cream);
}

.eu-quickfact-item {
  padding: 1rem;
}

.eu-quickfact-icon {
  color: var(--euhbs-gold);
  margin-bottom: 0.8rem;
}

.eu-quickfact-item strong {
  display: block;
  font-family: var(--eu-font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.eu-quickfact-item span {
  font-size: 0.85rem;
  opacity: 0.7;
  font-weight: 400;
}

/* ---------- Overview image ---------- */
.eu-overview-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(31, 27, 22, 0.3);
}

.eu-overview-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ---------- Skills items ---------- */
.eu-skill-item {
  background-color: var(--euhbs-cream);
  border: 1px solid rgba(31, 27, 22, 0.07);
  padding: 2rem 1.8rem;
  border-radius: 4px;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.eu-skill-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--euhbs-gold), var(--euhbs-burgundy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.eu-skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px -18px rgba(31, 27, 22, 0.3);
  border-color: rgba(201, 169, 97, 0.3);
}

.eu-skill-item:hover::before {
  transform: scaleX(1);
}

.eu-skill-icon {
  color: var(--euhbs-burgundy);
  margin-bottom: 1rem;
  display: inline-block;
}

.eu-skill-item h3 {
  font-family: var(--eu-font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.eu-skill-item p {
  color: var(--euhbs-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Career cards ---------- */
.eu-career-card {
  background-color: var(--euhbs-cream);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(31, 27, 22, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.eu-career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -18px rgba(31, 27, 22, 0.4);
}

.eu-career-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.eu-career-card-body {
  padding: 1.5rem;
  flex-grow: 1;
}

.eu-career-card-body h4 {
  font-family: var(--eu-font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--euhbs-charcoal);
}

.eu-career-card-body p {
  color: var(--euhbs-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Faculty spotlight ---------- */
.eu-faculty-spotlight-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(31, 27, 22, 0.3);
}

.eu-faculty-spotlight-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.eu-faculty-name-lg {
  font-family: var(--eu-font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--euhbs-charcoal);
  margin-bottom: 0.2rem;
}

.eu-faculty-title-lg {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--euhbs-burgundy);
  margin-bottom: 1rem;
}

/* ---------- Admissions list ---------- */
.eu-admissions-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.eu-admissions-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  color: var(--euhbs-charcoal);
}

.eu-admissions-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--euhbs-gold);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 767.98px) {
  .eu-quickfact-item strong {
    font-size: 1.4rem;
  }
  .eu-faculty-name-lg {
    font-size: 1.5rem;
  }
}


/* ============================================
   APPLY‑PAGE SPECIFIC
   ============================================ */

/* ---------- Table ---------- */
.eu-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--euhbs-cream);
  border: 1px solid rgba(31, 27, 22, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.eu-table th,
.eu-table td {
  padding: 1rem 1.4rem;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(31, 27, 22, 0.07);
}

.eu-table th {
  background-color: var(--euhbs-charcoal);
  color: var(--euhbs-cream);
  font-family: var(--eu-font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eu-table td {
  color: var(--euhbs-charcoal);
}

.eu-table-badge {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eu-table-badge.autumn { background-color: rgba(107, 31, 42, 0.12); color: var(--euhbs-burgundy); }
.eu-table-badge.winter { background-color: rgba(31, 27, 22, 0.08); color: var(--euhbs-charcoal); }
.eu-table-badge.spring { background-color: rgba(201, 169, 97, 0.18); color: #5c4a1f; }

.eu-table-note {
  font-size: 0.88rem;
  color: var(--euhbs-muted);
}

.eu-table-note a {
  color: var(--euhbs-burgundy);
  text-decoration: none;
  font-weight: 600;
}

.eu-table-note a:hover { text-decoration: underline; }

/* ---------- Step Cards ---------- */
.eu-step-card {
  background-color: var(--euhbs-cream);
  border: 1px solid rgba(31, 27, 22, 0.08);
  padding: 2.4rem 2rem;
  border-radius: 4px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.eu-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--euhbs-burgundy), var(--euhbs-gold));
  transition: width 0.5s ease;
}

.eu-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -28px rgba(31, 27, 22, 0.4);
  border-color: rgba(201, 169, 97, 0.4);
}

.eu-step-card:hover::before { width: 100%; }

.eu-step-number {
  font-family: var(--eu-font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--euhbs-gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
  opacity: 0.5;
}

.eu-step-card h3 {
  font-family: var(--eu-font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--euhbs-charcoal);
}

.eu-step-card p {
  color: var(--euhbs-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- Form Card ---------- */
.eu-form-card {
  background-color: var(--euhbs-cream);
  border: 1px solid rgba(31, 27, 22, 0.08);
  padding: 2.5rem;
  border-radius: 4px;
}

.eu-form-card-title {
  font-family: var(--eu-font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--euhbs-charcoal);
}

/* ---------- Language Select Dropdown ---------- */
.eu-lang-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.eu-lang-select {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(31, 27, 22, 0.18);
  border-radius: 6px;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}

.eu-lang-select:hover,
.eu-lang-select:focus {
  border-color: var(--euhbs-burgundy);
  outline: none;
}

.eu-lang-current {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--euhbs-charcoal);
  line-height: 1;
}

.eu-lang-flag {
  width: 1.2em !important;
  line-height: 1em;
  border-radius: 2px;
  flex-shrink: 0;
}

.eu-lang-caret {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.eu-lang-select-wrap.open .eu-lang-caret {
  transform: rotate(180deg);
}

.eu-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(31, 27, 22, 0.12);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  list-style: none;
  margin: 0;
  padding: 0.3rem;
  min-width: 100px;
  z-index: 9999;
}

.eu-lang-select-wrap.open .eu-lang-dropdown {
  display: block;
}

.eu-lang-option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--euhbs-charcoal);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.eu-lang-option:hover {
  background: var(--euhbs-ivory);
  color: var(--euhbs-burgundy);
}

.eu-lang-option.active {
  color: var(--euhbs-burgundy);
  background: rgba(107, 31, 42, 0.07);
}

/* Mobile: show as stacked links instead of dropdown */
@media (max-width: 991.98px) {
  .eu-lang-select-wrap {
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
  }
  .eu-lang-select {
    display: none;
  }
  .eu-lang-dropdown {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    gap: 0.5rem;
    background: transparent;
    flex-direction: row;
    min-width: auto;
  }
  .eu-lang-option {
    border: 1px solid rgba(31, 27, 22, 0.18);
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
  }
  .eu-lang-option.active {
    border-color: var(--euhbs-burgundy);
  }
}

/* ---------- Form Inputs (MISB‑inspired: clean, understated, elegant) ---------- */
.eu-form-label {
  font-family: var(--eu-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--euhbs-charcoal);
  margin-bottom: 0.4rem;
  display: block;
}

.eu-form-input,
.eu-form-select,
.eu-form-textarea {
  width: 100%;
  font-family: var(--eu-font-sans);
  font-size: 0.95rem;
  color: var(--euhbs-charcoal);
  background-color: var(--euhbs-cream);
  border: 1px solid rgba(31, 27, 22, 0.2);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.eu-form-input::placeholder,
.eu-form-textarea::placeholder {
  color: rgba(107, 98, 88, 0.5);
}

.eu-form-input:focus,
.eu-form-select:focus,
.eu-form-textarea:focus {
  outline: none;
  border-color: var(--euhbs-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.12);
  background-color: #fff;
}

.eu-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6258' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.eu-form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---------- File Upload ---------- */
.eu-file-upload {
  position: relative;
}

.eu-file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem;
  border: 2px dashed rgba(31, 27, 22, 0.18);
  border-radius: 4px;
  cursor: pointer;
  color: var(--euhbs-muted);
  transition: border-color 0.3s ease, background-color 0.3s ease;
  text-align: center;
}

.eu-file-upload-label:hover {
  border-color: var(--euhbs-gold);
  background-color: rgba(201, 169, 97, 0.04);
}

.eu-file-upload-label svg {
  color: var(--euhbs-burgundy);
}

.eu-file-upload-label span {
  font-weight: 500;
  color: var(--euhbs-charcoal);
}

.eu-file-upload-label small {
  font-size: 0.78rem;
  color: var(--euhbs-muted);
}

/* ---------- Consent checkbox ---------- */
.eu-form-consent {
  font-size: 0.85rem;
  color: var(--euhbs-muted);
  line-height: 1.5;
}

.eu-form-consent a {
  color: var(--euhbs-burgundy);
  text-decoration: none;
  font-weight: 500;
}

.eu-form-consent a:hover { text-decoration: underline; }

.eu-form-note {
  font-size: 0.8rem;
  color: var(--euhbs-muted);
  font-style: italic;
}

/* ---------- Contact Info ---------- */
.eu-contact-info {
  margin-top: 1rem;
}

.eu-contact-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.eu-contact-row svg {
  color: var(--euhbs-burgundy);
  flex-shrink: 0;
}

.eu-contact-row a {
  color: var(--euhbs-charcoal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.eu-contact-row a:hover { color: var(--euhbs-burgundy); }

.eu-live-chat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--euhbs-muted);
}

.eu-live-chat .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2f9e6b;
  box-shadow: 0 0 0 4px rgba(47, 158, 107, 0.18);
  animation: euPulse 2.2s ease-out infinite;
  flex-shrink: 0;
}

/* ---------- Responsive Tweaks ---------- */
@media (max-width: 767.98px) {
  .eu-form-card {
    padding: 1.5rem;
  }
  .eu-table th,
  .eu-table td {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}