  /*  VARIABLES  — gold matched to logo yellow*/
  
  :root {
      --navy:         #091836;
      --navy-mid:     #0A1A3A;

      /*  Logo-matched yellow-gold */
      --gold:         #D4A017;
      --gold-light:   #E8B422;
      --gold-hover:   #F0C030;

      --white:        #FFFFFF;
      --text-dark:    #1A1A2E;
      --text-muted:   #8A97B0;

      --font-display: 'Cormorant Garamond', serif;
      --font-body:    'DM Sans', sans-serif;

      --nav-height:   82px;
    }
  
  /*  RESET */
  
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html  { scroll-behavior: smooth; }
    body  { font-family: var(--font-body); background: var(--navy); color: var(--white); overflow-x: hidden; }
    a     { text-decoration: none; }

/* NAVBAR */
    #mainNav {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      z-index: 1050;
      background: #ffffff;
      border-bottom: 3px solid var(--gold);
      box-shadow: 0 4px 24px rgba(0,0,0,0.09);
      transition: box-shadow 0.35s ease;
    }

    #mainNav.scrolled {
      box-shadow: 0 6px 30px rgba(0,0,0,0.15);
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--nav-height);
      padding: 0 2.5rem;
      gap: 1rem;
    }

    /* Logo */
    .nav-logo { display: flex; align-items: center; flex-shrink: 0; }
    .nav-logo img {
      height: 100px;
      width: auto;
      object-fit: contain;
      transition: opacity 0.3s;
    }
    .nav-logo:hover img { opacity: 0.85; }

    /* Desktop links */
    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      margin: 0; padding: 0;
      gap: 0.15rem;
    }

    .nav-links a {
      position: relative;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-dark);
      padding: 0.55rem 0.85rem;
      border-radius: 4px;
      transition: color 0.25s;
      text-decoration: none;
      border-bottom: none;
      outline: none;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0.85rem; right: 0.85rem; bottom: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .nav-links a:hover         { color: var(--gold); }
    .nav-links a:hover::after,
    .nav-links a.active::after { transform: scaleX(1); }
    .nav-links a.active        { color: var(--navy); font-weight: 700; }

    .nav-separator {
      width: 1px; height: 20px;
      background: rgba(0,0,0,0.12);
      margin: 0 0.4rem;
    }

    /* CTA button */
    .btn-nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.68rem 1.4rem;
      background: var(--gold);
      color: var(--navy) !important;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 4px;
      white-space: nowrap;
      transition: 0.25s ease;
      flex-shrink: 0;
    }

    .btn-nav-cta:hover {
      background: var(--gold-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(212,160,23,0.4);
    }

    /* Mobile toggle */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      border: none;
      background: none;
      cursor: pointer;
      padding: 5px;
    }

    .nav-toggle span {
      width: 24px; height: 2px;
      background: var(--text-dark);
      border-radius: 5px;
      transition: 0.3s ease;
    }

    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu */
    .nav-mobile {
      display: none;
      flex-direction: column;
      background: #fff;
      padding: 1rem 1.5rem 1.5rem;
      border-top: 1px solid rgba(0,0,0,0.08);
    }

    .nav-mobile.active { display: flex; }

    .nav-mobile a {
      color: var(--text-dark);
      padding: 0.9rem 0;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      transition: color 0.2s;
      text-decoration: none;
    }

    .nav-mobile a:hover          { color: var(--gold); }
    .nav-mobile .btn-nav-cta     { margin-top: 1rem; text-align: center; display: block; }

    /* HERO */
    #hero {
      position: relative;
      width: 100%;
      min-height: 100svh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: var(--nav-height);
      padding-bottom: 90px;     /* space for trust bar */
    }

    /* Background */
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('./assets/bg_hero.jpg');
      background-size: cover;
      background-position: center;
      animation: heroZoom 14s ease forwards;
    }

    @keyframes heroZoom {
      from { transform: scale(1.06); }
      to   { transform: scale(1); }
    }

    /* Overlay — heavier on left so text is crisp */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(5,15,35,0.93) 0%,
        rgba(5,15,35,0.80) 50%,
        rgba(5,15,35,0.45) 100%
      );
    }

    /* Decorative elements */
    .hero-accent-line {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      z-index: 5;
      opacity: 0.8;
    }

    .hero-grid-deco {
      position: absolute;
      right: 5%; bottom: 12%;
      width: 200px; height: 200px;
      opacity: 0.08;
      background-image:
        repeating-linear-gradient(0deg,   var(--gold) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(90deg,  var(--gold) 0 1px, transparent 1px 28px);
      z-index: 5;
    }

    /* Content */
    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 760px;
      padding: 3rem 1rem 2rem;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .hero-eyebrow::before {
      content: '';
      width: 32px; height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 5.5vw, 4.8rem);
      font-weight: 600;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 1.6rem;
      border-left: 4px solid var(--gold);
      padding-left: 1.3rem;
    }

    .hero-headline em {
      color: var(--gold-light);
      font-style: italic;
    }

    .hero-subtext {
      max-width: 560px;
      color: rgba(255,255,255,0.78);
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.8;
      margin-bottom: 2.4rem;
      padding-left: 1.3rem;
    }

    .hero-cta-group {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      padding-left: 1.3rem;
    }

    /* ✅ Schedule button — high visibility */
    .btn-gold {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      background: var(--gold);
      color: var(--navy);
      padding: 1rem 2.2rem;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 4px;
      border: 2px solid var(--gold);
      transition: 0.3s ease;
      white-space: nowrap;
      text-decoration: none;
        
    }

    .btn-gold:hover {
      background: var(--gold-hover);
      border-color: var(--gold-hover);
      color: var(--navy);
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(212,160,23,0.5);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.85);
      font-size: 1.05rem;
      font-weight: 500;
      border-bottom: 1px solid rgba(255,255,255,0.35);
      padding: 0.45rem 0;
      transition: 0.25s ease;
      white-space: nowrap;
      text-decoration: none;
      margin-bottom: 5px;
      margin-left: 2px;
      margin-top: 6px;
    }

    .btn-ghost:hover {
      color: var(--gold);
      border-color: var(--gold);
    }

    /* TRUST BAR — always visible, never hides buttons */
    .hero-trust {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      z-index: 20;
      padding: 1.1rem 0;
      background: rgba(5,15,35,0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-top: 1px solid rgba(212,160,23,0.35);
      
    }

    .hero-trust-inner {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-shrink: 0;
    }

    .trust-item i {
      color: var(--gold);
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .trust-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.92);
      white-space: nowrap;
    }

    .trust-divider {
      width: 1px; height: 22px;
      background: rgba(212,160,23,0.35);
      flex-shrink: 0;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      right: 2rem; bottom: 6rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      z-index: 10;
    }

    .scroll-indicator span {
      writing-mode: vertical-rl;
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    .scroll-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%,100% { opacity: 0.85; transform: scaleY(1); }
      50%      { opacity: 0.35; transform: scaleY(0.5) translateY(-8px); }
    }

    /* RESPONSIVE*/

    /* Large desktop */
    @media (min-width: 1400px) {
      .navbar-inner { padding: 0 4rem; }
      .hero-headline { font-size: 5.2rem; }
    }

    /* Laptop */
    @media (max-width: 1200px) {
      .navbar-inner { padding: 0 1.8rem; }
      .nav-links a  { font-size: 0.72rem; padding: 0.45rem 0.7rem; }
    }

    /* Tablet — hide nav links, show hamburger + keep CTA */
    @media (max-width: 991px) {
      .nav-links  { display: none; }
      .nav-toggle { display: flex; }

      /*  Keep Book an Appointment button visible on tablet */
      .btn-nav-cta {
        display: inline-flex !important;
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
      }

      .navbar-inner { height: 74px; padding: 0 1.2rem; }
      .nav-logo img { height: 64px; }

      #hero {
        padding-top: 74px;
        padding-bottom: 110px;
        align-items: flex-start;
      }

      .hero-content { max-width: 100%; padding: 3rem 0 2rem; }
      .hero-headline { font-size: clamp(2.2rem, 7vw, 3.8rem); }
      .hero-subtext  { max-width: 100%; }
      .hero-grid-deco { width: 130px; height: 130px; }
      .scroll-indicator { display: none; }

      .hero-trust-inner { justify-content: center; gap: 1rem; }
    }

    /* Mobile */
    @media (max-width: 768px) {
      :root { --nav-height: 68px; }

      .navbar-inner { height: 68px; padding: 0 1rem; }
      .nav-logo img { height: 52px; }

      /*  Keep CTA visible on mobile — smaller */
      .btn-nav-cta {
        padding: 0.55rem 0.8rem;
        font-size: 0.65rem;
        letter-spacing: 0.05em;
      }

      #hero {
        padding-top: 68px;
        padding-bottom: 120px;
        min-height: 100svh;
      }

      .hero-content { padding: 2.5rem 0 2rem; }

      .hero-headline {
        font-size: clamp(1.9rem, 9vw, 3rem);
        padding-left: 1rem;
        letter-spacing: -0.01em;
      }

      .hero-subtext {
        font-size: 0.92rem;
        padding-left: 1rem;
        margin-bottom: 2rem;
      }

      .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        padding-left: 1rem;
        gap: 0.85rem;
        
       
      }

      /*  Full-width CTA on mobile, clearly visible */
      .btn-gold {
        width: 100%;
        justify-content: center;
        padding: 1.05rem 1.05rem;
        font-size: 0.82rem;
        background: var(--gold);
        color: var(--navy);
        box-shadow: 0 6px 24px rgba(212,160,23,0.4);
        
      }

      .btn-ghost {
        width: 100%;
        justify-content: center;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 4px;
        padding: 0.85rem;
      }

      .hero-grid-deco { display: none; }

      /* Trust bar — wraps cleanly */
      .hero-trust { padding: 0.9rem 0; }
      .hero-trust-inner {
        gap: 0.75rem 1.25rem;
        justify-content: flex-start;
      }

      .trust-divider { display: none; }
      .trust-label   { font-size: 0.68rem; }
    }

    /* Small mobile */
    @media (max-width: 480px) {
      .hero-headline { font-size: 1.85rem; line-height: 1.12; }
      .hero-subtext  { font-size: 0.88rem; }

      .btn-nav-cta {
        padding: 0.5rem 0.65rem;
        font-size: 0.6rem;
      }

      .hero-trust-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
      }

      .trust-item { gap: 0.45rem; }
      .trust-label { font-size: 0.63rem; }
    }
 /* ── About Section ── */
  #about {
    background: var(--navy);
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
  }
 
  .about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
  }
 
  /* ── Image ── */
  .about-img-col {
    position: relative;
    overflow: hidden;
    max-height: 610px; 
  }
 
  .about-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    object-position: center top;
    display: block;
    transition: transform 0.9s ease;
  }
 
  .about-img-col:hover img {
    transform: scale(1.04);
  }
 
  /* Right-side fade so image melts into navy */
  .about-img-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      transparent 55%,
      var(--navy) 100%
    );
    pointer-events: none;
  }
 
  /* ── Content ── */
  .about-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:  3rem 4rem 3rem 3rem;
  }
 
  /* Eyebrow */
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }
 
  .section-eyebrow span {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
  }
 
  /* Heading */
  .about-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 1.75rem;
  }
 
  .about-heading em {
    font-style: italic;
    color: var(--gold-light);
  }
 
  /* Body paragraphs */
  .about-body {
    font-size: 0.97rem;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255,255,255,0.70);
    margin-bottom: 1.1rem;
    max-width: 500px;
  }
 
  .about-body:last-of-type {
    margin-bottom: 1.75rem;
  }
 
  /* Tags */
  .about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.25rem;
  }
 
  .about-tags span {
    padding: 0.38rem 0.9rem;
    background: rgba(212,160,23,0.09);
    border: 1px solid rgba(212,160,23,0.28);
    color: rgba(255,255,255,0.78);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 3px;
    transition: 0.25s ease;
    cursor: default;
  }
 
  .about-tags span:hover {
    background: rgba(212,160,23,0.20);
    border-color: var(--gold);
    color: var(--gold);
  }
 
  /* Learn More button */
  .btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.7rem 1.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid var(--gold);
    align-self: flex-start;
    transition: 0.3s ease;
    text-decoration: none;
    margin-top: -0.5rem;  
  }
 
  .btn-learn-more:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212,160,23,0.4);
  }
 
  /* ── Responsive ── */
  @media (max-width: 991px) {
    .about-wrap {
      grid-template-columns: 1fr;
      min-height: auto;
    }
 
    .about-img-col {
      height: 40vh;
      min-height: 300px;
    }
 
    .about-img-fade {
      background: linear-gradient(
        to bottom,
        transparent 55%,
        var(--navy) 100%
      );
    }
 
    .about-text-col {
      padding: 3rem 2rem 4rem;
    }
 
    .about-body {
      max-width: 100%;
    }
  }
 
  @media (max-width: 576px) {
    .about-img-col  { height: 35vh; }
    

    .about-text-col { padding: 2.5rem 1.25rem 3.5rem; }
    .about-heading  { font-size: 1.9rem; }
 
    .btn-learn-more {
      width: 100%;
      justify-content: center;
    }
  }
/* ── Services Section ── */
  #services {
    background: var(--navy-mid, #0A1A3A);
    padding: 3rem 0 6rem;
    position: relative;
    overflow: hidden;
  }
 
  /* Subtle background grid */
  #services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg,   rgba(212,160,23,0.03) 0 1px, transparent 1px 80px),
      repeating-linear-gradient(90deg,  rgba(212,160,23,0.03) 0 1px, transparent 1px 80px);
    pointer-events: none;
  }
 
  /* ── Section Header ── */
  .services-header {
    text-align: center;
    margin-bottom: 2rem;
  }
 
  .services-header .section-eyebrow {
    justify-content: center;
    margin-bottom: 1rem;
  }
 
  .services-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
  }
 
  .services-heading em {
    font-style: italic;
    color: var(--gold-light);
  }
 
  .services-subtext {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
  }
 
  /* ── Grid ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
 
  /* ── Service Card ── */
  .service-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
     padding-bottom: 3.5rem; 
     padding: 2rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow: hidden;
    cursor: pointer;
    transition: 0.35s ease;
  }
 
  .service-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
    border-radius: 0 2px 2px 0;
  }
 
  .service-card:hover {
    background: rgba(212,160,23,0.06);
    border-color: rgba(212,160,23,0.30);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  }
 
  .service-card:hover::before {
    transform: scaleY(1);
  }
 
  /* Icon */
  .service-icon {
    width: 48px;
    height: 48px;
    background: rgba(212,160,23,0.10);
    border: 1px solid rgba(212,160,23,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    transition: 0.3s ease;
    flex-shrink: 0;
  }
 
  .service-card:hover .service-icon {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
  }
 
  /* Title */
  .service-title {
    font-family: var(--font-body);
    font-size: 1.40rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    margin: 0;
    transition: color 0.3s;
  }
 
  .service-card:hover .service-title {
    color: var(--gold-light);
  }
 
  /* List */
  .service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
  }
 
  .service-list li {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.58);
    padding-left: 1rem;
    position: relative;
    transition: color 0.25s;
    line-height: 1.5;
  }
 
  .service-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
    top: 2px;
  }
 
  .service-card:hover .service-list li {
    color: rgba(255,255,255,0.80);
  }
 
  /* Arrow */
  .service-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: rgba(212,160,23,0.35);
    font-size: 1.1rem;
    transition: 0.3s ease;
    position: absolute;
  bottom: 1.5rem;
  right: 1.75rem;
  }
 
  .service-card:hover .service-arrow {
    color: var(--gold);
    transform: translateX(5px);
  }
 
  /* Background number */
  .service-number {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.3s;
  }
 
  .service-card:hover .service-number {
    color: rgba(212,160,23,0.06);
  }
 
  /* ── CTA Card ── */
  .service-cta-card {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
  }
 
  .service-cta-card:hover {
    background: var(--gold-hover) !important;
    border-color: var(--gold-hover) !important;
    transform: translateY(-4px);
  }
 
  .service-cta-card::before {
    background: var(--navy) !important;
  }
 
  .cta-card-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
  }
 
  .service-cta-card .btn-learn-more {
    background: var(--navy);
    color: var(--gold) !important;
    border-color: var(--navy);
    font-size: 0.78rem;
    padding: 0.8rem 1.6rem;
  }
 
  .service-cta-card .btn-learn-more:hover {
    background: var(--navy-mid, #0A1A3A);
    border-color: var(--navy-mid, #0A1A3A);
    color: var(--gold) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }
 
  /* ── Responsive ── */
  @media (max-width: 1100px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
 
  @media (max-width: 991px) {
    #services { padding: 5rem 0; }
    .services-grid { gap: 1rem; }
  }
 
  @media (max-width: 768px) {
    #services { padding: 4rem 0; }
 
    .services-grid {
      grid-template-columns: 1fr;
      gap: 0.85rem;
    }
 
    .service-card { padding: 1.6rem 1.4rem; }
 
    .service-cta-card { align-items: center; text-align: center; }
    .service-cta-card .btn-learn-more { width: 100%; justify-content: center; }
  }

/* ── Industries Section ── */
 
  #industries {
    background: var(--navy);
    padding: 3rem 0 6rem;
    position: relative;
    overflow: hidden;
  }
 
  #industries::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
      circle,
      rgba(212,160,23,0.05) 0%,
      transparent 70%
    );
    pointer-events: none;
  }
 
  /* ── Header ── */
  .industries-header {
    text-align: center;
    margin-bottom: 2.5rem;
   
  }
 
  .industries-header .section-eyebrow {
    justify-content: center;
    margin-bottom: 1rem;
  }
 
  .industries-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
  }
 
  .industries-heading em {
    font-style: italic;
    color: var(--gold-light, #E8B422);
  }
 
  .industries-subtext {
    font-size: 0.97rem;
    font-weight: 400;
    color: rgba(255,255,255,0.50);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
  }
 
  /* ── Grid — 5 columns ── */
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
 
  /* ── Industry Card ── */
  .industry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    cursor: default;
    transition: background 0.35s ease,
                border-color 0.35s ease,
                transform 0.35s ease,
                box-shadow 0.35s ease;
 
    /* Scroll animation start */
    
  opacity: 1 !important;
  transform: none !important;
}
  
 
  /* Gold shimmer on top */
  .industry-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
 
  .industry-card:hover {
    background: rgba(212,160,23,0.07);
    border-color: rgba(212,160,23,0.30);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  }
 
  .industry-card:hover::before {
    transform: scaleX(1);
  }
 
  /* Visible state — added by JS */
  .industry-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease,
                transform 0.55s ease,
                background 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;
  }
 
  /* Icon box */
  .industry-icon {
    width: 52px;
    height: 52px;
    background: rgba(212,160,23,0.10);
    border: 1px solid rgba(212,160,23,0.22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    transition: 0.3s ease;
    flex-shrink: 0;
  }
 
  .industry-card:hover .industry-icon {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: scale(1.08);
  }
 
  /* SVG icons inside industry-icon */
  .industry-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) saturate(100%)
            invert(72%) sepia(45%) saturate(500%) hue-rotate(5deg);
    transition: filter 0.3s ease;
  }
 
  .industry-card:hover .industry-icon img {
    filter: brightness(0) invert(1);
  }
 
  /* Name */
  .industry-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.03em;
    line-height: 1.4;
    transition: color 0.3s;
  }
 
  .industry-card:hover .industry-name {
    color: var(--white);
  }
 
  /* ── CTA Card — spans 2 columns ── */
  .industry-cta-card {
    grid-column: span 2;
    align-items: flex-start !important;
    justify-content: center !important;
    text-align: left;
    padding: 2rem 2.25rem;
    gap: 1.25rem;
    background: rgba(212,160,23,0.08) !important;
    border: 1px solid rgba(212,160,23,0.30) !important;
  }
 
  .industry-cta-card::before {
    background: linear-gradient(to right, var(--gold), transparent) !important;
    transform: scaleX(1) !important;
  }
 
  .industry-cta-card:hover {
    background: rgba(212,160,23,0.13) !important;
    transform: translateY(-5px);
  }
 
  .industry-cta-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
    margin: 0;
  }
 
  /* CTA button inside card */
  .btn-ind-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--gold-light);
    color: var(--navy);
    padding: 0.72rem 1.6rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid var(--gold);
    transition: 0.3s ease;
    text-decoration: none;
  }
 
  .btn-ind-cta:hover {
    background: var(--gold-hover, #F0C030);
    border-color: var(--gold-hover, #F0C030);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,160,23,0.4);
  }
  
 
  /* ── Responsive ── */
  @media (max-width: 1200px) {
    .industries-grid       { grid-template-columns: repeat(4, 1fr); }
    .industry-cta-card     { grid-column: span 4; flex-direction: row; align-items: center !important; justify-content: space-between !important; }
  }
 
  @media (max-width: 991px) {
    #industries            { padding: 5rem 0; }
    .industries-grid       { grid-template-columns: repeat(3, 1fr); }
    .industry-cta-card     { grid-column: span 3; flex-direction: row; align-items: center !important; justify-content: space-between !important; }
  }
 
  @media (max-width: 768px) {
    #industries            { padding: 4rem 0; }
    .industries-grid       { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .industry-card         { padding: 1.4rem 0.85rem; }
    .industry-cta-card     { grid-column: span 2; flex-direction: column; align-items: flex-start !important; }
  }
 
  @media (max-width: 480px) {
    .industries-grid       { grid-template-columns: repeat(2, 1fr); }
    .industry-icon         { width: 44px; height: 44px; font-size: 1.2rem; }
    .industry-name         { font-size: 0.74rem; }
    .industry-cta-card     { grid-column: span 2; }
    .industry-cta-text     { font-size: 1.1rem; }
    .btn-ind-cta           { width: 100%; justify-content: center; }
  }
  /* ── Section ── */
  #why {
    background: var(--navy-mid, #0A1A3A);
    overflow: hidden;
      margin-top: 0;        /* ← remove any gap */
     padding-top: 0;
        

  }
 
  .why-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
     align-items: stretch;
  }
 
  /* ── Image Column ── */
  .why-img-col {
    position: relative;
    overflow: hidden;
    min-height: 100%;     
  }
 
  .why-img-col img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.9s ease;
  }
 
  .why-img-col:hover img {
    transform: scale(1.04);
  }
 
  /* Right fade into section bg */
  .why-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      transparent 55%,
      var(--navy-mid, #0A1A3A) 100%
    );
    pointer-events: none;
  }
  
  .why-img-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(10,26,58,0.6) 100%
  );
  pointer-events: none;
  z-index: 2;
}
  
 
  .why-stat-card div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }
 
 
  /* ── Content Column ── */
  .why-content-col {
    padding: 5rem 4rem 5rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--navy-mid, #0A1A3A);
  }
 
  /* Heading */
  .why-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2rem;
  }
 
  .why-heading em {
    font-style: italic;
    color: var(--gold-light, #E8B422);
  }
 
  /* ── Why List ── */
  .why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
  }
 
  .why-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s ease;
    cursor: default;
  }
 
  .why-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
  }
 
  .why-item:hover {
    padding-left: 0.5rem;
  }
 
  /* Number */
  .why-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(212,160,23,0.25);
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
    transition: color 0.3s;
  }
 
  .why-item:hover .why-num {
    color: var(--gold);
  }
 
  /* Title */
  .why-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
    transition: color 0.3s;
  }
 
  .why-item:hover .why-title {
    color: var(--gold-light, #E8B422);
  }
 
  /* Text */
  .why-text {
    font-size: 0.95rem;
    font-weight: 450;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin: 0;
    transition: color 0.3s;
  }
 
  .why-item:hover .why-text {
    color: rgba(255,255,255,0.78);
  }
 
  /* ── Responsive ── */
  @media (max-width: 991px) {
    .why-wrap {
      grid-template-columns: 1fr;
      min-height: auto;
    }
 
    .why-img-col {
      height: 50vh;
      min-height: 300px;
    }
 
    .why-img-overlay {
      background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(10,26,58,0.90) 100%
      );
    }
 
    .why-content-col {
      padding: 3rem 2rem 4rem;
    }
  }
 
  @media (max-width: 576px) {
    .why-img-col     { height: 42vh; }
    .why-content-col { padding: 2.5rem 1.25rem 3rem; }
    .why-heading     { font-size: 1.9rem; }
    .why-stat-card   { padding: 0.75rem 1rem; }
    .why-stat-num    { font-size: 1.2rem; }
    .btn-learn-more  { width: 100%; justify-content: center; }
  }

/* ── Section ── */
  #contact {
    background: var(--navy);
    overflow: hidden;
  }
 
  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 85vh;
  }
 
  /* ── Left: Info Column ── */
  .contact-info-col {
    position: relative;
    background: var(--navy-mid, #0A1A3A);
    display: flex;
    align-items: center;
    padding: 5rem 3.5rem;
    overflow: hidden;
  }
 


 
  .contact-info-inner {
    position: relative;
    z-index: 2;
    width: 100%;
  }
 
  /* Heading */
  .contact-heading {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.1rem;
  }
 
  .contact-heading em {
    font-style: italic;
    color: var(--gold-light, #E8B422);
  }
 
  .contact-intro {
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.60);
    margin-bottom: 0;
    max-width: 380px;
  }
 
  /* Gold divider */
  .contact-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 1.75rem 0;
    border-radius: 2px;
  }
 
  /* Info list */
  .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
 
  .contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
 
  .contact-info-icon {
    width: 42px;
    height: 42px;
    background: rgba(212,160,23,0.10);
    border: 1px solid rgba(212,160,23,0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: 0.3s ease;
  }
 
  .contact-info-item:hover .contact-info-icon {
    background: var(--gold);
    color: var(--navy);
  }
 
  .contact-info-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
  }
 
  .contact-info-value {
    display: block;
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,0.80);
    line-height: 1.6;
  }
 
  .contact-link {
    text-decoration: none;
    transition: color 0.25s;
  }
 
  .contact-link:hover {
    color: var(--gold);
  }
 
  /* Socials */
  .contact-socials {
    display: flex;
    gap: 0.75rem;
  }
 
  .contact-social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.25s ease;
  }
 
  .contact-social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
  }
 
  /* ── Right: Form Column ── */
  .contact-form-col {
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3.5rem;
    border-left: 1px solid rgba(255,255,255,0.05);
  }
 
  .contact-form-card {
    width: 100%;
    max-width: 540px;
  }
 
  .form-card-header {
    margin-bottom: 2rem;
  }
 
  .form-card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
  }
 
  .form-card-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
  }
 
  /* Form rows */
  .form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
 
  .form-group-custom {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
  }
 
  .form-group-custom label {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
  }
 
  .form-group-custom label span {
    color: var(--gold);
  }
 
  /* Inputs */
  .form-group-custom input,
  .form-group-custom textarea,
  .form-group-custom select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 5px;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    -webkit-appearance: none;
  }
 
  .form-group-custom input::placeholder,
  .form-group-custom textarea::placeholder {
    color: rgba(255,255,255,0.25);
  }
 
  .form-group-custom input:focus,
  .form-group-custom textarea:focus,
  .form-group-custom select:focus {
    border-color: var(--gold);
    background: rgba(212,160,23,0.05);
  }
 
  .form-group-custom input.error,
  .form-group-custom textarea.error,
  .form-group-custom select.error {
    border-color: #e05252;
  }
 
  .form-group-custom textarea {
    resize: vertical;
    min-height: 110px;
  }
 
  /* Select */
  .select-wrapper {
    position: relative;
  }
 
  .select-wrapper select {
    cursor: pointer;
    padding-right: 2.5rem;
  }
 
  .select-wrapper select option {
    background: var(--navy-mid, #0A1A3A);
    color: var(--white);
  }
 
  .select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.40);
    font-size: 0.8rem;
    pointer-events: none;
  }
 
  /* Error message */
  .form-error {
    font-size: 0.73rem;
    color: #e05252;
    display: none;
  }
 
  .form-error.show {
    display: block;
  }
 
  /* Submit button */
  .btn-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    border-radius: 5px;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 0.5rem;
  }
 
  .btn-form-submit:hover {
    background: var(--gold-hover, #F0C030);
    border-color: var(--gold-hover, #F0C030);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212,160,23,0.40);
  }
 
  .btn-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }
 
  /* Success */
  .form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(72,199,116,0.10);
    border: 1px solid rgba(72,199,116,0.30);
    border-radius: 6px;
    font-size: 0.88rem;
    color: #48c774;
  }
 
  .form-success.show {
    display: flex;
  }
 
  .form-success i {
    font-size: 1.2rem;
    flex-shrink: 0;
  }
 
  /* ── Responsive ── */
  @media (max-width: 991px) {
    .contact-wrap {
      grid-template-columns: 1fr;
      min-height: auto;
    }
 
    .contact-info-col {
      padding: 4rem 2rem;
    }
 
    .contact-form-col {
      padding: 3rem 2rem 4rem;
      border-left: none;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
  }
 
  @media (max-width: 576px) {
    .contact-info-col  { padding: 3rem 1.25rem; }
    .contact-form-col  { padding: 2.5rem 1.25rem 3.5rem; }
    .form-row-grid     { grid-template-columns: 1fr; }
    .contact-heading   { font-size: 1.8rem; }
  }

 
  /* ── Footer ── */
  #footer {
    background: var(--navy-mid, #0A1A3A);
    border-top: 1px solid rgba(212,160,23,0.20);
  }
 
  /* ── Top Footer ── */
  .footer-top {
    padding: 4.5rem 0 3rem;
  }
 
  .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 3rem;
  }
 
  /* Brand column */
  .footer-brand {}
 
  .footer-logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.25rem;
    display: block;
    transition: opacity 0.3s;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 6px;
  }
  .footer-logo:hover img { opacity: 0.85; }
 
  .footer-tagline {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255,255,255,0.50);
    margin-bottom: 1.5rem;
    max-width: 280px;
  }
 
  /* Socials */
  .footer-socials {
    display: flex;
    gap: 0.6rem;
  }
 
  .footer-social {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.50);
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.25s ease;
  }
 
  .footer-social:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
  }
 
  /* Column title */
  .footer-col-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212,160,23,0.20);
  }
 
  /* Links */
  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }
 
  .footer-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
 
  .footer-links a::before {
    content: '—';
    font-size: 0.65rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-6px);
    transition: 0.25s ease;
  }
 
  .footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
  }
 
  .footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
  }
 
  /* Contact list */
  .footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
 
  .footer-contact-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
  }
 
  .footer-contact-list i {
    color: var(--gold);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
  }
 
  .footer-contact-list span,
  .footer-contact-list a {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.25s;
  }
 
  .footer-contact-list a:hover {
    color: var(--gold);
  }
 
  /* ── Bottom Bar ── */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.25rem 0;
  }
 
  .footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
 
  .footer-copy {
    font-size: 0.80rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
  }
 
  .footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
 
  .footer-bottom-links a {
    font-size: 0.80rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.25s;
  }
 
  .footer-bottom-links a:hover {
    color: var(--gold);
  }
 
  .footer-bottom-links span {
    color: rgba(255,255,255,0.20);
    font-size: 0.75rem;
  }
 
  /* ── Responsive ── */
  @media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-brand { grid-column: span 3; }
  }
 
  @media (max-width: 768px) {
    .footer-top  { padding: 3.5rem 0 2.5rem; }
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    .footer-brand { grid-column: span 2; }
  }
 
  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  }
 
