/* 
  Salero - Baja Hospitality Consulting
  Premium, luxury-level page-specific stylesheet
  Design Aesthetic: International consulting firm, boutique investment fund
*/

/* ==========================================================================
   Base & Typography Enhancements
   ========================================================================== */

   .bh-page {
    background-color: var(--color-sand-light);
    color: var(--color-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .bh-section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
  }
  
  .bh-section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
  }
  
  .bh-text-lead {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 65ch;
  }
  
  /* Decorative Elements */
  .bh-gold-divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-mauve);
    margin: 2rem 0;
  }
  
  .bh-gold-divider.center {
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Buttons */
  .bh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
  }
  
  .bh-btn-primary {
    background-color: var(--color-mauve);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(170, 101, 104, 0.3);
  }
  
  .bh-btn-primary:hover {
    background-color: var(--color-mauve-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(170, 101, 104, 0.4);
  }
  
  .bh-btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .bh-btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
  }
  
  /* ==========================================================================
     1. Cinematic Hero (.bh-hero)
     ========================================================================== */
  
  .bh-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 7rem 1.5rem 4rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--color-dark);
    z-index: 1;
    overflow: hidden;
  }
  
  .bh-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(40, 32, 30, 0.5) 0%,
      rgba(40, 32, 30, 0.7) 50%,
      rgba(40, 32, 30, 0.9) 100%
    );
    z-index: 2;
  }
  
  .bh-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 1rem;
    margin-top: 1rem;
  }
  
  .bh-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--color-sand);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  
  .bh-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  }
  
  .bh-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: var(--color-sand);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  }
  
  .bh-hero-desc {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(243, 239, 236, 0.7);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  }

  .bh-hero-cta {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
  }

  /* Section Tag (small label above titles) */
  .bh-section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-mauve);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
  }

  .bh-section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background-color: var(--color-mauve);
    transform: translateY(-50%);
  }

  /* CTA Note (below button) */
  .bh-cta-note {
    font-size: 0.8rem;
    color: rgba(243, 239, 236, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1.5rem;
  }

  /* Utility */
  .text-center { text-align: center; }
  .text-center .bh-section-tag { padding-left: 0; }
  .text-center .bh-section-tag::before { display: none; }
  .text-center .bh-gold-divider { margin-left: auto; margin-right: auto; }
  .text-center .bh-text-lead { margin-left: auto; margin-right: auto; }
  
  .bh-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .bh-scroll-indicator:hover {
    opacity: 1;
  }
  
  .bh-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  
  .bh-scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
    animation: scrollDownLine 2s infinite;
  }
  
  /* ==========================================================================
     2. Trust Band (.bh-trust-band)
     ========================================================================== */
  
  .bh-trust-band {
    background-color: var(--color-dark);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .bh-trust-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--color-sand);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.5;
  }
  
  /* ==========================================================================
     3. Opportunity Section (.bh-opportunity)
     ========================================================================== */
  
  .bh-opportunity {
    padding: 8rem 2rem;
    background-color: var(--color-sand-light);
  }
  
  .bh-opportunity-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .bh-opp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  
  .bh-opp-text {
    padding-right: 2rem;
  }
  
  .bh-opp-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .bh-opp-img::before {
    content: '';
    display: block;
    padding-bottom: 125%; /* 4:5 Aspect Ratio */
  }
  
  .bh-opp-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
  }
  
  .bh-opp-img:hover img {
    transform: scale(1.05);
  }
  
  /* Decorative frame behind image */
  .bh-opp-img-wrapper {
    position: relative;
  }
  
  .bh-opp-img-wrapper::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -2rem;
    bottom: -2rem;
    left: 2rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    z-index: -1;
  }
  
  /* ==========================================================================
     3B. Client Profile (.bh-clients)
     ========================================================================== */

  .bh-clients {
    padding: 8rem 2rem;
    background-color: var(--color-white);
    position: relative;
  }

  .bh-clients .bh-section-header {
    max-width: 700px;
    margin: 0 auto 5rem auto;
  }

  .bh-clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .bh-client-card {
    background: var(--color-sand-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
  }

  .bh-client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-mauve), var(--color-suede-pink));
  }

  .bh-client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-suede-pink);
  }

  .bh-client-icon {
    width: 48px;
    height: 48px;
    color: var(--color-mauve);
    margin-bottom: 1.5rem;
  }

  .bh-client-icon svg {
    width: 100%;
    height: 100%;
  }

  .bh-client-card-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
  }

  .bh-client-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .bh-client-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .bh-client-list li {
    position: relative;
    padding: 0.6rem 0 0.6rem 2rem;
    font-size: 0.95rem;
    color: var(--color-dark);
    border-bottom: 1px solid rgba(151, 134, 127, 0.1);
    transition: var(--transition);
  }

  .bh-client-list li:last-child {
    border-bottom: none;
  }

  .bh-client-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-mauve);
    opacity: 0.6;
    transition: var(--transition);
  }

  .bh-client-list li:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.3);
  }

  .bh-client-list li:hover {
    padding-left: 2.3rem;
    color: var(--color-mauve);
  }

  /* Primary card has slightly stronger accent */
  .bh-client-primary::before {
    background: linear-gradient(90deg, var(--color-mauve), var(--color-mauve-hover));
    height: 4px;
  }

  /* ==========================================================================
     4. Methodology Timeline (.bh-methodology)
     ========================================================================== */
  
  .bh-methodology {
    padding: 8rem 2rem;
    background-color: var(--color-sand);
    position: relative;
  }
  
  .bh-methodology .bh-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem auto;
  }
  
  .bh-methodology-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .bh-meth-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
  }
  
  /* Horizontal connecting line */
  .bh-meth-timeline::before {
    content: '';
    position: absolute;
    top: 30px; /* Aligned with number centers */
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: var(--border-light);
    z-index: 1;
  }
  
  .bh-meth-step {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
    transition: var(--transition);
  }
  
  .bh-meth-step:hover {
    transform: translateY(-10px);
  }
  
  .bh-meth-num {
    width: 60px;
    height: 60px;
    background-color: var(--color-sand);
    border: 1px solid var(--color-mauve);
    color: var(--color-mauve);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 0 0 8px var(--color-sand); /* Hide the connector line behind */
    transition: var(--transition);
  }
  
  .bh-meth-step:hover .bh-meth-num {
    background-color: var(--color-mauve);
    color: var(--color-white);
    box-shadow: 0 0 0 8px var(--color-sand), var(--shadow-md);
  }
  
  .bh-meth-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
  }
  
  .bh-meth-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
  }
  
  /* ==========================================================================
     5. Services Grid (.bh-services)
     ========================================================================== */
  
  .bh-services {
    padding: 8rem 2rem;
    background-color: var(--color-sand-light);
  }
  
  .bh-services-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .bh-services .bh-section-header {
    text-align: center;
    margin-bottom: 5rem;
  }
  
  .bh-srv-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }
  
  /* Top row: 4 cards */
  .bh-srv-card:nth-child(1),
  .bh-srv-card:nth-child(2),
  .bh-srv-card:nth-child(3),
  .bh-srv-card:nth-child(4) {
    grid-column: span 3;
  }
  
  /* Bottom row: 3 cards centered */
  .bh-srv-card:nth-child(5) {
    grid-column: 2 / span 3;
  }
  .bh-srv-card:nth-child(6) {
    grid-column: 5 / span 4; /* slightly wider middle card */
  }
  .bh-srv-card:nth-child(7) {
    grid-column: 9 / span 3;
  }
  
  .bh-srv-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-white);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .bh-srv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
  }
  
  .bh-srv-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--color-mauve);
  }
  
  .bh-srv-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
  }
  
  .bh-srv-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .bh-srv-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
  }
  
  /* ==========================================================================
     6. Photo Gallery (.bh-gallery)
     ========================================================================== */
  
  .bh-gallery {
    padding: 0; /* Full bleed */
    background-color: var(--color-dark);
  }
  
  .bh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 0; /* No gap for luxury mosaic feel */
  }
  
  .bh-gallery-item {
    position: relative;
    overflow: hidden;
    background-color: #1a1514;
  }
  
  /* Mosaic Layout */
  .bh-gallery-item:nth-child(1) { grid-column: 1 / span 2; grid-row: 1 / span 2; } /* Large left */
  .bh-gallery-item:nth-child(2) { grid-column: 3 / span 1; grid-row: 1 / span 1; } /* Top middle */
  .bh-gallery-item:nth-child(3) { grid-column: 4 / span 1; grid-row: 1 / span 1; } /* Top right */
  .bh-gallery-item:nth-child(4) { grid-column: 3 / span 2; grid-row: 2 / span 1; } /* Bottom wide right */
  
  .bh-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
    opacity: 0.8;
  }
  
  .bh-gallery-item:hover img {
    transform: scale(1.05);
    opacity: 1;
  }
  
  .bh-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
  }
  
  .bh-gallery-item:hover .bh-gallery-overlay {
    opacity: 1;
  }
  
  .bh-gallery-caption {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .bh-gallery-item:hover .bh-gallery-caption {
    transform: translateY(0);
  }
  
  /* ==========================================================================
     7. CTA Section (.bh-cta)
     ========================================================================== */
  
  .bh-cta {
    background-color: var(--color-dark);
    padding: 10rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  /* Subtle background pattern/gradient */
  .bh-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(170, 101, 104, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .bh-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .bh-cta .bh-section-title {
    color: var(--color-white);
    margin-bottom: 2rem;
  }
  
  .bh-cta .bh-text-lead {
    color: var(--color-sand);
    margin: 0 auto 3rem auto;
    opacity: 0.8;
  }
  
  /* ==========================================================================
     Animations
     ========================================================================== */
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes scrollDownLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }
  
  /* Ensure reveal class works with standard setup */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ==========================================================================
     Responsive Media Queries
     ========================================================================== */
  
  /* Desktop (Under 1200px) */
  @media (max-width: 1200px) {
    .bh-srv-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .bh-srv-card:nth-child(n) {
      grid-column: span 1;
    }
    
    .bh-srv-card:nth-child(7) {
      grid-column: 1 / span 2; /* Full width bottom card */
      max-width: 50%;
      margin: 0 auto;
    }
  }
  
  /* Tablet Landscape (Under 992px) */
  @media (max-width: 992px) {
    .bh-clients-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .bh-opp-layout {
      grid-template-columns: 1fr;
      gap: 4rem;
    }
    
    .bh-opp-text {
      padding-right: 0;
      text-align: center;
    }
    
    .bh-opp-text .bh-text-lead {
      margin-left: auto;
      margin-right: auto;
    }
    
    .bh-opp-img-wrapper::after {
      display: none;
    }
    
    .bh-meth-timeline {
      grid-template-columns: repeat(2, 1fr);
      gap: 4rem 2rem;
    }
    
    .bh-meth-timeline::before {
      display: none;
    }
    
    .bh-gallery-grid {
      grid-template-rows: repeat(3, 300px);
    }
    
    .bh-gallery-item:nth-child(1) { grid-column: 1 / span 4; grid-row: 1 / span 1; }
    .bh-gallery-item:nth-child(2) { grid-column: 1 / span 2; grid-row: 2 / span 1; }
    .bh-gallery-item:nth-child(3) { grid-column: 3 / span 2; grid-row: 2 / span 1; }
    .bh-gallery-item:nth-child(4) { grid-column: 1 / span 4; grid-row: 3 / span 1; }
  }
  
  /* Tablet Portrait & Large Mobile (Under 991px) */
  @media (max-width: 991px) {
    .bh-hero {
      height: auto !important;
      min-height: 100vh !important;
      min-height: 100dvh !important;
      padding: 6.5rem 1.25rem 3.5rem 1.25rem !important;
      background-attachment: scroll !important;
      overflow: visible !important;
    }
    
    .bh-hero-content {
      margin-top: 0 !important;
      padding: 0 !important;
      width: 100% !important;
    }

    .bh-hero-badge {
      padding: 0.4rem 1rem !important;
      font-size: 0.75rem !important;
      margin-bottom: 1.25rem !important;
    }
    
    .bh-hero-title {
      font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
      line-height: 1.15 !important;
      margin-bottom: 1.25rem !important;
    }

    .bh-hero-subtitle {
      font-size: 1.05rem !important;
      line-height: 1.5 !important;
      margin-bottom: 1.25rem !important;
    }

    .bh-hero-desc {
      font-size: 0.9rem !important;
      line-height: 1.6 !important;
      margin-bottom: 1.75rem !important;
    }

    .bh-hero-cta .btn-primary {
      display: inline-block;
      max-width: 100%;
      white-space: normal;
      text-align: center;
      padding: 0.9rem 1.5rem !important;
      font-size: 0.85rem !important;
    }
  }

  /* Tablet Portrait & Large Mobile (Under 768px) */
  @media (max-width: 768px) {
    .bh-section-title {
      font-size: 2.2rem;
    }
    
    .bh-opportunity, .bh-methodology, .bh-services, .bh-cta {
      padding: 4rem 1.25rem;
    }
    
    .bh-meth-timeline {
      grid-template-columns: 1fr;
      gap: 3rem;
      position: relative;
    }
    
    /* Vertical connecting line for mobile */
    .bh-meth-timeline::before {
      display: block;
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 1px;
      height: 100%;
      background-color: var(--border-light);
      z-index: 1;
      transform: translateX(-50%);
    }
    
    .bh-srv-grid {
      grid-template-columns: 1fr;
    }
    
    .bh-srv-card:nth-child(7) {
      grid-column: 1 / span 1;
      max-width: 100%;
    }
  }
  
  /* Mobile (Under 600px) */
  @media (max-width: 600px) {
    .bh-trust-band {
      padding: 2.25rem 1.25rem;
    }
    
    .bh-trust-text {
      font-size: 1.05rem;
    }
    
    .bh-gallery-grid {
      display: flex;
      flex-direction: column;
    }
    
    .bh-gallery-item {
      height: 260px;
    }
    
    .bh-gallery-item:nth-child(n) {
      grid-column: auto;
      grid-row: auto;
    }
  }
