    /* ELITE GALLERY REDESIGN */
    .elite-gallery-section {
      padding: 140px 0;
      background-color: #FAF7F4;
      /* Cream background */
      color: #1A1A1A;
      position: relative;
      overflow: hidden;
    }

    .elite-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .elite-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .elite-eyebrow {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: #a8615a;
      /* Terracotta */
      margin-bottom: 24px;
      font-weight: 500;
    }

    .elite-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      line-height: 1.1;
      font-weight: 300;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }

    .elite-flourish {
      color: #C9A84C;
      /* Gold */
      margin-bottom: 32px;
    }

    .elite-desc {
      font-family: 'Jost', sans-serif;
      font-size: 16px;
      line-height: 1.8;
      font-weight: 300;
      color: #4a4a4a;
      max-width: 520px;
    }

    .elite-filters {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 60px;
      position: relative;
    }

    .elite-filter-tabs {
      display: flex;
      gap: 40px;
      position: relative;
      padding-bottom: 12px;
    }

    .elite-tab {
      background: none;
      border: none;
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #8c8c8c;
      cursor: pointer;
      transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
      padding: 0;
    }

    .elite-tab.active {
      color: #1A1A1A;
      font-weight: 500;
    }

    .elite-tab-indicator {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 1px;
      background-color: #a8615a;
      transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .elite-filter-line {
      width: 100%;
      height: 1px;
      background-color: rgba(0, 0, 0, 0.06);
      margin-top: -1px;
    }

    .elite-masonry {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 240px;
      gap: 32px;
    }

    .elite-item {
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04), 0 4px 10px rgba(0, 0, 0, 0.02);
      transform: translateY(30px);
      opacity: 0;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    }

    .elite-item.in-view {
      transform: translateY(0);
      opacity: 1;
    }

    .elite-item.hidden-by-filter {
      opacity: 0 !important;
      transform: scale(0.95) !important;
      pointer-events: none;
      position: absolute;
    }

    .span-2x2 {
      grid-column: span 2;
      grid-row: span 2;
    }

    .span-tall {
      grid-column: span 1;
      grid-row: span 2;
    }

    .span-wide {
      grid-column: span 2;
      grid-row: span 1;
    }

    .span-square {
      grid-column: span 1;
      grid-row: span 1;
    }

    .elite-item-inner {
      width: 100%;
      height: 100%;
      position: relative;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .elite-item-inner::after {
      content: '';
      position: absolute;
      inset: 1px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 9px;
      pointer-events: none;
      z-index: 2;
    }

    .elite-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: sepia(15%) contrast(1.05) saturate(1.1);
      transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), filter 0.7s ease;
    }

    .elite-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 40%);
      opacity: 0;
      transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
      z-index: 1;
    }

    .elite-item-caption {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 3;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .elite-caption-tag {
      color: #fff;
      font-family: 'Jost', sans-serif;
      font-size: 10px;
      letter-spacing: 2px;
      font-weight: 400;
    }

    .elite-view-icon {
      width: 16px;
      height: 16px;
      color: #fff;
    }

    .elite-item:hover .elite-item-inner {
      transform: scale(1.04);
    }

    .elite-item:hover img {
      filter: sepia(5%) contrast(1.02) saturate(1.05);
    }

    .elite-item:hover .elite-item-overlay {
      opacity: 1;
    }

    .elite-item:hover .elite-item-caption {
      opacity: 1;
      transform: translateY(0);
    }

    .elite-gallery-cta {
      text-align: center;
      margin-top: 60px;
    }

    .elite-btn-outline {
      display: inline-block;
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #1A1A1A;
      border: 1px solid #E8E0D8;
      padding: 16px 36px;
      transition: all 0.4s ease;
      text-decoration: none;
    }

    .elite-btn-outline:hover {
      background: #1A1A1A;
      color: #fff;
      border-color: #1A1A1A;
    }

    /* Lightbox */
    .elite-lightbox {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .elite-lightbox.active {
      pointer-events: auto;
      opacity: 1;
    }

    .elite-lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(8px);
    }

    .elite-lightbox-container {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    .elite-lightbox-content {
      position: relative;
      max-width: 85%;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
      transform: scale(0.95);
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .elite-lightbox.active .elite-lightbox-content {
      transform: scale(1);
    }

    .elite-lightbox-img {
      max-width: 100%;
      max-height: 80vh;
      object-fit: contain;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .elite-lightbox-info {
      display: flex;
      justify-content: space-between;
      margin-top: 16px;
      color: rgba(255, 255, 255, 0.7);
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .elite-lightbox-nav {
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      padding: 20px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      transition: color 0.3s ease;
      z-index: 3;
    }

    .elite-lightbox-nav:hover {
      color: #C9A84C;
    }

    .elite-lightbox-nav svg {
      width: 32px;
      height: 32px;
    }

    .elite-lightbox-nav.prev {
      left: 20px;
    }

    .elite-lightbox-nav.next {
      right: 20px;
    }

    .elite-lightbox-close {
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      position: absolute;
      top: 30px;
      right: 30px;
      padding: 10px;
      z-index: 3;
      transition: color 0.3s ease;
    }

    .elite-lightbox-close:hover {
      color: #C9A84C;
    }

    .elite-lightbox-close svg {
      width: 28px;
      height: 28px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .elite-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
      }
    }

    @media (max-width: 768px) {
      .elite-gallery-section {
        padding: 80px 0;
      }

      .elite-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 20px;
      }

      .span-2x2,
      .span-tall,
      .span-wide,
      .span-square {
        grid-column: span 1;
        grid-row: auto;
        aspect-ratio: 4/5;
        /* default aspect ratio for mobile */
      }

      .span-tall {
        aspect-ratio: 3/4;
      }

      .span-wide {
        aspect-ratio: 16/9;
      }

      .span-quote {
        aspect-ratio: auto;
      }

      .elite-filter-tabs {
        gap: 20px;
        overflow-x: auto;
        width: 100%;
        justify-content: flex-start;
        padding-bottom: 12px;
      }

      .elite-lightbox-container {
        padding: 20px;
      }

      .elite-lightbox-nav {
        display: none;
        /* rely on swipe */
      }

      .elite-lightbox-content {
        max-width: 100%;
      }
    }

    /* ELITE REVIEWS SECTION */
    .elite-reviews-section {
      padding: 120px 0;
      background-color: #ffffff;
      /* White */
      position: relative;
      overflow: hidden;
    }

    .elite-reviews-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(168, 97, 90, 0.2), transparent);
    }

    .elite-reviews-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .elite-reviews-header {
      text-align: center;
      margin-bottom: 60px;
      max-width: 600px;
    }

    .elite-reviews-eyebrow {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #a8615a;
      margin-bottom: 16px;
    }

    .elite-reviews-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 300;
      color: #1A1A1A;
      margin-bottom: 16px;
    }

    .elite-reviews-desc {
      font-family: 'Jost', sans-serif;
      font-size: 16px;
      font-weight: 300;
      color: #6B6B6B;
    }

    /* Carousel */
    .elite-reviews-carousel {
      width: 100%;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .elite-reviews-track-wrapper {
      width: 100%;
      overflow: hidden;
      padding: 20px 0 40px;
    }

    .elite-reviews-track {
      display: flex;
      gap: 30px;
      transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Card */
    .elite-review-card {
      flex: 0 0 calc(33.3333% - 20px);
      background: #FAF7F4;
      /* Cream */
      border-radius: 12px;
      border: 1px solid rgba(139, 105, 80, 0.1);
      box-shadow: 0 15px 40px rgba(168, 97, 90, 0.06);
      padding: 40px;
      position: relative;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .elite-review-card.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .elite-review-quote-mark {
      position: absolute;
      top: 10px;
      left: 20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px;
      line-height: 1;
      color: rgba(168, 97, 90, 0.1);
      z-index: 1;
    }

    .elite-review-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .elite-review-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 24px;
    }

    .elite-review-stars svg {
      width: 18px;
      height: 18px;
      fill: #C9A84C;
      filter: drop-shadow(0 2px 4px rgba(201, 168, 76, 0.3));
    }

    .elite-review-text {
      font-family: 'Jost', sans-serif;
      font-size: 15px;
      line-height: 1.7;
      font-weight: 300;
      color: #4A4A4A;
      margin-bottom: 32px;
      flex-grow: 1;
    }

    .elite-review-author {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .elite-review-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f0eae4, #e8dcd4);
      border: 1px solid rgba(201, 168, 76, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: #a8615a;
    }

    .elite-review-name-wrap {
      display: flex;
      flex-direction: column;
    }

    .elite-review-name {
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: #1A1A1A;
    }

    .elite-review-verified {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 2px;
      font-family: 'Jost', sans-serif;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #8c8c8c;
    }

    .elite-review-verified svg {
      width: 12px;
      height: 12px;
      color: #75b798;
    }

    /* Controls */
    .elite-reviews-controls {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 10px;
    }

    .elite-reviews-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(168, 97, 90, 0.3);
      background: transparent;
      color: #a8615a;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .elite-reviews-btn svg {
      width: 18px;
      height: 18px;
    }

    .elite-reviews-btn:hover {
      background: #a8615a;
      color: #FAF7F4;
      border-color: #a8615a;
    }

    .elite-reviews-progress {
      width: 100px;
      height: 2px;
      background: rgba(168, 97, 90, 0.2);
      position: relative;
    }

    .elite-reviews-progress-bar {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      background: #a8615a;
      width: 0%;
      transition: width 0.1s linear;
    }

    .elite-reviews-toggle {
      background: transparent;
      border: none;
      color: #a8615a;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      transition: opacity 0.3s ease;
    }

    .elite-reviews-toggle:hover {
      opacity: 0.7;
    }

    .elite-reviews-toggle svg {
      width: 18px;
      height: 18px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .elite-review-card {
        flex: 0 0 calc(50% - 15px);
      }
    }

    @media (max-width: 768px) {
      .elite-reviews-section {
        padding: 80px 0;
      }

      .elite-review-card {
        flex: 0 0 100%;
      }

      .elite-reviews-track {
        gap: 0;
      }

      .elite-reviews-controls {
        gap: 16px;
      }

      .elite-reviews-progress {
        width: 60px;
      }
    }

    /* ELITE SIGNATURE SERVICES */
    .elite-signature-section {
      padding: 120px 0;
      background-color: transparent;
      position: relative;
    }

    .elite-signature-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .elite-sig-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .elite-sig-eyebrow {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #a8615a;
      margin-bottom: 16px;
    }

    .elite-sig-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 20px;
      color: #C9A84C;
    }

    .elite-sig-divider-line {
      height: 1px;
      width: 40px;
      background-color: currentColor;
    }

    .elite-sig-divider-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background-color: currentColor;
    }

    .elite-sig-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 300;
      color: #1A1A1A;
      margin: 0;
    }

    .elite-sig-headline em {
      font-style: italic;
      color: #a8615a;
    }

    /* Bento Grid */
    .elite-sig-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    /* Card Base */
    .elite-sig-card {
      display: flex;
      flex-direction: column;
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid rgba(139, 105, 80, 0.15);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      overflow: hidden;
      position: relative;
      text-decoration: none;
      cursor: pointer;
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      opacity: 0;
      transform: translateY(30px);
    }

    .elite-sig-card.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .elite-sig-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    /* Image Wrapper */
    .elite-sig-img-wrap {
      width: 100%;
      height: 240px;
      overflow: hidden;
      position: relative;
      border-radius: 11px 11px 0 0;
    }

    .elite-sig-card.span-hero .elite-sig-img-wrap {
      height: 380px;
    }

    .elite-sig-card.span-wide {
      flex-direction: row;
      grid-column: span 2;
    }

    .elite-sig-card.span-wide .elite-sig-img-wrap {
      width: 50%;
      height: 100%;
      border-radius: 11px 0 0 11px;
    }

    .elite-sig-card.span-wide .elite-sig-content {
      width: 50%;
      justify-content: center;
    }

    .elite-sig-card.span-hero {
      grid-row: span 2;
      background-color: #FAF7F4;
    }

    .elite-sig-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: sepia(10%) contrast(1.02) saturate(1.05);
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .elite-sig-card:hover .elite-sig-img {
      transform: scale(1.04);
    }

    /* Content */
    .elite-sig-content {
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      position: relative;
      z-index: 2;
    }

    .elite-sig-card.span-hero .elite-sig-content {
      padding: 40px 32px;
    }

    /* Badges & Meta */
    .elite-sig-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      position: relative;
    }

    .elite-sig-number {
      position: absolute;
      top: -20px;
      right: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 72px;
      font-weight: 200;
      color: rgba(168, 97, 90, 0.06);
      line-height: 1;
      z-index: -1;
      pointer-events: none;
    }

    .elite-sig-pill {
      font-family: 'Jost', sans-serif;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #a8615a;
      background-color: rgba(168, 97, 90, 0.08);
      padding: 6px 12px;
      border-radius: 20px;
      font-weight: 500;
    }

    .elite-sig-signature-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 10;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(4px);
      border: 1px solid #C9A84C;
      color: #C9A84C;
      font-family: 'Jost', sans-serif;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 10px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .elite-sig-signature-badge::before {
      content: '';
      display: block;
      width: 4px;
      height: 4px;
      background-color: #C9A84C;
      border-radius: 50%;
    }

    /* Typography */
    .elite-sig-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 300;
      color: #1A1A1A;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .elite-sig-card.span-hero .elite-sig-title {
      font-size: 34px;
    }

    .elite-sig-desc {
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: #6B6B6B;
      line-height: 1.6;
      margin-bottom: 24px;
      flex-grow: 1;
    }

    /* CTA */
    .elite-sig-link {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #1A1A1A;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
    }

    .elite-sig-link svg {
      width: 14px;
      height: 14px;
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .elite-sig-card:hover .elite-sig-link svg {
      transform: translateX(6px);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .elite-sig-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .elite-sig-card.span-wide {
        grid-column: span 2;
      }
    }

    @media (max-width: 768px) {
      .elite-signature-section {
        padding: 60px 0;
      }

      .elite-sig-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
      }

      .elite-sig-card {
        flex-direction: column;
        position: relative;
        overflow: hidden;
        height: 280px;
        border-radius: 12px !important;
        border: none !important;
      }

      /* First item becomes the hero full-width */
      .elite-sig-card:first-child {
        grid-column: span 2;
        height: 480px;
      }

      /* Reset desktop span properties */
      .elite-sig-card.span-wide,
      .elite-sig-card.span-hero {
        grid-column: auto;
        grid-row: auto;
      }

      .elite-sig-card:first-child.span-wide,
      .elite-sig-card:first-child.span-hero {
        grid-column: span 2;
      }

      .elite-sig-img-wrap {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        border-radius: 0 !important;
        transform: translateZ(0);
        /* Fix iOS rendering bug */
        z-index: 1;
      }

      .elite-sig-img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
      }

      /* Dark gradient overlay on top of image for readability */
      .elite-sig-img-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(30, 20, 15, 0.85) 0%, rgba(30, 20, 15, 0.4) 40%, transparent 100%);
        pointer-events: none;
        z-index: 2;
      }

      .elite-sig-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 16px;
        z-index: 3;
        align-items: center;
        text-align: center;
        width: 100%;
      }

      .elite-sig-card:first-child .elite-sig-content {
        padding: 32px 24px;
      }

      /* Typography inverted to white */
      .elite-sig-meta {
        justify-content: center;
        margin-bottom: 8px;
      }

      .elite-sig-pill {
        color: #fff;
        background: transparent;
        font-size: 13px;
        letter-spacing: 0.1em;
        text-transform: lowercase;
        font-style: italic;
        padding: 0;
        border: none;
        margin-bottom: 4px;
      }

      .elite-sig-number {
        display: none;
        /* Hide numbers on mobile */
      }

      .elite-sig-title {
        color: #fff;
        font-size: 18px;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        line-height: 1.2;
      }

      .elite-sig-card:first-child .elite-sig-title {
        font-size: 28px;
        font-weight: 800;
        line-height: 1.1;
      }

      .elite-sig-desc {
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        margin-bottom: 20px;
        display: none;
        /* Hide description on small cards */
      }

      .elite-sig-card:first-child .elite-sig-desc {
        display: block;
        /* Show description only on hero card */
      }

      /* White Pill Button */
      .elite-sig-link {
        display: inline-block;
        background: #fff;
        color: #1C1410;
        padding: 12px 28px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0;
        margin-top: auto;
      }

      .elite-sig-link svg {
        display: none;
      }
    }

    /* ELITE INSTAGRAM SHOWCASE */
    .elite-insta-section {
      padding: 120px 0;
      background-color: #FAF7F4;
      /* Cream */
    }

    .elite-insta-header {
      text-align: center;
      margin-bottom: 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .elite-insta-eyebrow {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #a8615a;
      margin-bottom: 12px;
    }

    .elite-insta-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 300;
      color: #1A1A1A;
      margin-bottom: 24px;
    }

    .elite-insta-divider {
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, transparent, #C9A84C, transparent);
      margin-bottom: 24px;
      border: none;
    }

    .elite-insta-desc {
      font-family: 'Jost', sans-serif;
      font-size: 16px;
      font-weight: 300;
      color: #6B6B6B;
      letter-spacing: 0.5px;
    }

    .elite-insta-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .elite-insta-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 320px;
      grid-auto-flow: row dense;
      gap: 20px;
      margin-bottom: 60px;
    }

    .elite-insta-item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      display: block;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
      transform: translateY(20px);
      opacity: 0;
      transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      background-color: #FAF7F4;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23a8615a" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="2" width="20" height="20" rx="5" ry="5"/><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"/><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"/></svg>');
      background-repeat: no-repeat;
      background-position: center;
      background-size: 32px 32px;
      cursor: pointer;
    }

    .elite-insta-item.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .elite-insta-item.wide-top {
      grid-column: span 2;
    }

    .elite-insta-item.wide-bottom {
      grid-column: span 2;
    }

    .elite-insta-poster {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
      z-index: 2;
      color: transparent;
      text-indent: 10000px;
    }

    .elite-insta-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 3;
      color: #fff;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    }

    .elite-insta-badge svg {
      width: 24px;
      height: 24px;
    }

    .elite-insta-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 60%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
      z-index: 4;
      display: flex;
      align-items: flex-end;
      padding: 24px;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.4s ease;
      pointer-events: none;
    }

    .elite-insta-overlay-content {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
    }

    .elite-insta-overlay-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .elite-insta-overlay-icon svg {
      width: 16px;
      height: 16px;
      fill: #fff;
    }

    .elite-insta-overlay-text {
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    @media (hover: hover) {
      .elite-insta-item:hover .elite-insta-poster {
        transform: scale(1.04);
      }

      .elite-insta-item:hover .elite-insta-overlay {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .elite-insta-cta-wrap {
      text-align: center;
    }

    .elite-insta-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 36px;
      border: 1px solid #a8615a;
      border-radius: 30px;
      color: #a8615a;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      background: transparent;
      transition: all 0.4s ease;
    }

    .elite-insta-cta svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .elite-insta-cta:hover {
      background: #a8615a;
      color: #FAF7F4;
      transform: scale(1.02);
    }

    @media (max-width: 1024px) {
      .elite-insta-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto auto;
      }

      .elite-insta-item.wide-top {
        grid-column: span 1;
      }

      .elite-insta-item.wide-bottom {
        grid-column: span 2;
      }

      .elite-insta-item {
        aspect-ratio: 1/1;
        height: auto;
      }

      .elite-insta-item.wide-bottom {
        aspect-ratio: 2/1;
      }
    }

    @media (max-width: 768px) {

      /* ── Apple-style editorial carousel (white) ── */
      .elite-insta-section {
        padding: 0 !important;
        background: radial-gradient(ellipse 70% 30% at 50% 0%, rgba(201, 169, 110, 0.06) 0%, transparent 65%), #FFFFFF !important;
      }

      .elite-insta-container {
        padding: 0;
        max-width: 100%;
      }

      /* ── Section header ── */
      .elite-insta-header {
        padding: 48px 24px 28px;
        margin-bottom: 0;
        text-align: center;
      }

      .elite-insta-eyebrow {
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
        font-size: 11px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: #8B4B3F;
        margin-bottom: 8px;
      }

      .elite-insta-headline {
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #1A0F0A;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
      }

      .elite-insta-divider {
        display: none;
      }

      .elite-insta-desc {
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
        font-size: 14px;
        color: #8B7355;
        line-height: 1.5;
        font-weight: 400;
      }

      /* ── Card carousel strip ── */
      .elite-insta-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding: 0 20px 24px 20px;
        margin-bottom: 0;
        touch-action: pan-x;
      }

      .elite-insta-grid::-webkit-scrollbar {
        display: none;
      }

      /* ── Individual card ── */
      .elite-insta-item {
        flex: 0 0 78vw;
        max-width: 300px;
        scroll-snap-align: center;
        border-radius: 18px;
        overflow: hidden;
        position: relative;
        background: #1C1C1E;
        aspect-ratio: unset;
        height: auto;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
        transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform;
        opacity: 1;
        transform: none;
        text-decoration: none;
      }

      .elite-insta-item.in-view {
        opacity: 1;
        transform: none;
      }

      .elite-insta-item:active {
        transform: scale(0.97);
      }

      .elite-insta-item.wide-top,
      .elite-insta-item.wide-bottom {
        flex: 0 0 78vw;
        max-width: 300px;
        aspect-ratio: unset;
      }

      /* ── Card image ── */
      .elite-insta-poster {
        position: relative;
        width: 100%;
        height: min(400px, 72vh);
        min-height: 320px;
        object-fit: cover;
        display: block;
        border-radius: 0;
        z-index: 1;
        opacity: 1;
        transform: none;
        transition: none;
      }

      /* ── Card gradient overlay (::after on the item) ── */
      .elite-insta-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 55%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
        border-radius: 0 0 18px 18px;
        z-index: 2;
        pointer-events: none;
      }

      /* ── Card text overlay ── */
      .apple-card-text {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 18px 22px;
        z-index: 3;
      }

      .apple-card-cat {
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        display: block;
      }

      .apple-card-title {
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
        font-size: 19px;
        font-weight: 700;
        color: #FFFFFF;
        line-height: 1.2;
        margin: 4px 0 12px;
        display: block;
      }

      .apple-card-btn {
        display: inline-block;
        background: rgba(255, 255, 255, 0.92);
        color: #1D1D1F;
        font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
        font-size: 13px;
        font-weight: 600;
        padding: 9px 20px;
        border-radius: 980px;
        letter-spacing: 0.02em;
        border: none;
        text-decoration: none;
        transition: background 0.2s ease;
      }

      .apple-card-btn:active {
        background: rgba(255, 255, 255, 0.75);
      }

      /* ── Play button (video cards) ── */
      .apple-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        z-index: 3;
        pointer-events: none;
      }

      .apple-play-tri {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8px 0 8px 16px;
        border-color: transparent transparent transparent #FFFFFF;
        margin-left: 3px;
      }

      /* ── Brand badge (top-left) — SVG monogram ── */
      .apple-card-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 7px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
      }

      .apple-card-badge .badge-monogram {
        display: none;
      }

      .apple-card-badge .badge-svg {
        flex-shrink: 0;
        display: block;
        width: 28px;
        height: 28px;
      }

      .apple-card-badge .badge-name {
        font-family: -apple-system, sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #FFFFFF;
        letter-spacing: 0.01em;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
      }

      /* Hide old overlay and old badge */
      .elite-insta-overlay {
        display: none !important;
      }

      .elite-insta-badge {
        display: none !important;
      }

      /* ── Dot pagination ── */
      .apple-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        margin-top: 20px;
        padding-bottom: 8px;
      }

      .apple-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(26, 15, 10, 0.2);
        transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-radius 0.3s ease, background 0.3s ease;
        flex-shrink: 0;
      }

      .apple-dot.active {
        width: 22px;
        height: 7px;
        border-radius: 3.5px;
        background: #1A0F0A;
      }

      /* ── Follow CTA button ── */
      .elite-insta-cta-wrap {
        text-align: center;
        padding: 0;
      }

      .elite-insta-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 28px auto 52px;
        width: fit-content;
        background: rgba(26, 15, 10, 0.08);
        color: #1A0F0A;
        border: 1.5px solid rgba(26, 15, 10, 0.15);
        border-radius: 980px;
        padding: 15px 32px;
        font-family: -apple-system, sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.03em;
        text-transform: none;
        text-decoration: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background 0.2s ease;
      }

      .elite-insta-cta svg {
        width: 18px;
        height: 18px;
        fill: none;
        vertical-align: -3px;
        margin-right: 0;
      }

      .elite-insta-cta:active {
        background: rgba(26, 15, 10, 0.14);
      }

      .elite-insta-cta:hover {
        background: rgba(26, 15, 10, 0.14);
        color: #1A0F0A;
        transform: none;
      }
    }

    /* ELITE VISIT US SECTION */
    .elite-visit-section {
      padding: 100px 0;
      background-color: #F7EAE8;
      position: relative;
    }

    .elite-visit-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .elite-visit-eyebrow {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #a8615a;
      display: block;
      margin-bottom: 12px;
    }

    .elite-visit-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 300;
      color: #1A1A1A;
      margin-bottom: 24px;
    }

    .elite-visit-divider {
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, transparent, #C9A84C, transparent);
      margin: 0 auto;
      border: none;
    }

    .elite-visit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .elite-visit-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s ease;
    }

    .elite-visit-card.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .elite-visit-card.in-view:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px -12px rgba(168, 97, 90, 0.15);
    }

    .elite-visit-card:nth-child(2) {
      transition-delay: 0.15s;
    }

    /* Map Card Premium Frame */
    .elite-visit-card:first-child .elite-visit-map-container::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 2px;
      background: linear-gradient(135deg, #a8615a 0%, rgba(212, 175, 55, 0.6) 50%, rgba(250, 247, 244, 0.3) 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      z-index: 4;
      pointer-events: none;
    }

    /* Map Card */
    .elite-visit-map-container {
      position: relative;
      width: 100%;
      height: auto;
      background: #E8E0D8;
      overflow: hidden;
      border-radius: 12px;
    }

    .elite-visit-map-iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(40%) sepia(30%) hue-rotate(-10deg) contrast(100%) brightness(95%);
    }

    .elite-visit-map-pin {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 28px;
      height: 28px;
      background-color: #a8615a;
      border-radius: 50% 50% 50% 0;
      transform: translate(-50%, -100%) rotate(-45deg);
      box-shadow: 2px -2px 6px rgba(0, 0, 0, 0.2);
      pointer-events: none;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .elite-visit-map-pin::after {
      content: '';
      width: 10px;
      height: 10px;
      background-color: #FAF7F4;
      border-radius: 50%;
      box-shadow: 0 0 2px rgba(0, 0, 0, 0.3) inset;
    }

    .elite-visit-map-pin::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 40px;
      background: rgba(168, 97, 90, 0.4);
      border-radius: 50%;
      transform: translate(-50%, 50%);
      animation: mapPulse 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
      z-index: -1;
    }

    @keyframes mapPulse {
      0% {
        transform: translate(-50%, 50%) scale(0.5);
        opacity: 0.8;
      }

      100% {
        transform: translate(-50%, 50%) scale(2.5);
        opacity: 0;
      }
    }

    .elite-visit-map-btn {
      position: absolute;
      top: 20px;
      left: 20px;
      background: linear-gradient(135deg, #FAF7F4, #fff);
      border: 1px solid rgba(168, 97, 90, 0.3);
      color: #a8615a;
      border-radius: 30px;
      padding: 8px 16px;
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 3;
    }

    .elite-visit-map-btn:hover {
      background: linear-gradient(135deg, #FAF7F4, #a8615a);
      color: #fff;
      border-color: #a8615a;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(168, 97, 90, 0.2);
    }

    .elite-visit-map-btn svg {
      width: 14px;
      height: 14px;
      transition: transform 0.3s ease;
    }

    .elite-visit-map-btn:hover svg {
      transform: translateX(3px);
    }

    /* Cover to hide Google Maps clutter */
    .elite-visit-map-cover {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background: transparent;
      z-index: 1;
      pointer-events: none;
    }

    /* Details Card & Map Card */
    .elite-visit-card {
      background: linear-gradient(145deg, #ffffff 0%, #FAF7F4 100%);
      border: 1px solid rgba(201, 168, 76, 0.25);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
      position: relative;
      border-radius: 24px;
    }

    .elite-visit-details {
      padding: 48px;
    }

    .elite-visit-hours-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      padding-bottom: 20px;
      margin-bottom: 28px;
    }

    .elite-visit-hours-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, #C9A84C, transparent);
      opacity: 0.4;
    }

    .elite-visit-details h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 400;
      color: #1c1410;
      margin: 0;
      letter-spacing: 0.5px;
    }

    .elite-visit-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 20px;
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      background: #fff;
      color: #8c7c72;
      border: 1px solid rgba(201, 168, 76, 0.2);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }

    .elite-visit-status-badge.is-open {
      background: rgba(201, 168, 76, 0.05);
      color: #C9A84C;
      border: 1px solid rgba(201, 168, 76, 0.3);
    }

    .elite-visit-status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #8c7c72;
    }

    .elite-visit-status-badge.is-open .elite-visit-status-dot {
      background: #C9A84C;
      box-shadow: 0 0 6px rgba(201, 168, 76, 0.6);
      animation: dotPulse 2s ease-in-out infinite;
    }

    @keyframes dotPulse {

      0%,
      100% {
        opacity: 0.4;
        transform: scale(1);
      }

      50% {
        opacity: 1;
        transform: scale(1.2);
      }
    }

    .elite-visit-hours-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 36px;
    }

    .elite-visit-hours-table td {
      padding: 14px 0;
      border-bottom: 1px dashed rgba(201, 168, 76, 0.25);
      font-family: 'Jost', sans-serif;
      font-size: 15px;
      color: #4a4a4a;
    }

    .elite-visit-hours-table td:first-child {
      font-weight: 500;
      color: #1c1410;
    }

    .elite-visit-hours-table tr:last-child td {
      border-bottom: none;
    }

    .elite-visit-hours-table td:last-child {
      text-align: right;
      color: #6B6B6B;
    }

    .elite-visit-hours-table tr {
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .elite-visit-card.in-view .elite-visit-hours-table tr {
      opacity: 1;
      transform: translateY(0);
    }

    .elite-visit-card.in-view .elite-visit-hours-table tr:nth-child(1) {
      transition-delay: 0.15s;
    }

    .elite-visit-card.in-view .elite-visit-hours-table tr:nth-child(2) {
      transition-delay: 0.19s;
    }

    .elite-visit-card.in-view .elite-visit-hours-table tr:nth-child(3) {
      transition-delay: 0.23s;
    }

    .elite-visit-card.in-view .elite-visit-hours-table tr:nth-child(4) {
      transition-delay: 0.27s;
    }

    .elite-visit-card.in-view .elite-visit-hours-table tr:nth-child(5) {
      transition-delay: 0.31s;
    }

    .elite-visit-card.in-view .elite-visit-hours-table tr:nth-child(6) {
      transition-delay: 0.35s;
    }

    .elite-visit-card.in-view .elite-visit-hours-table tr:nth-child(7) {
      transition-delay: 0.39s;
    }

    .elite-visit-hours-table tr.is-today td {
      font-weight: 600;
      color: #1c1410;
    }

    .elite-visit-hours-table tr.is-today td:last-child {
      color: #C9A84C;
      font-weight: 600;
    }

    .elite-visit-hours-table tr.is-today {
      background: linear-gradient(to right, rgba(201, 168, 76, 0.05), transparent);
    }

    .elite-visit-hours-table tr.is-today td:first-child {
      padding-left: 12px;
      border-top-left-radius: 6px;
      border-bottom-left-radius: 6px;
    }

    .elite-visit-info-list {
      list-style: none;
      padding: 0;
      margin: 0 0 32px 0;
    }

    .elite-visit-info-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      color: #6B6B6B;
      line-height: 1.6;
    }

    .elite-visit-info-list li svg {
      width: 18px;
      height: 18px;
      stroke: #C9A84C;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .elite-visit-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .elite-visit-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 20px;
      border-radius: 12px;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .elite-visit-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .elite-visit-btn--call {
      background: #1c1410;
      color: #ffffff;
      border: 1px solid #1c1410;
      box-shadow: 0 8px 20px rgba(28, 20, 16, 0.15);
    }

    .elite-visit-btn--call:hover {
      background: #C9A84C;
      border-color: #C9A84C;
      color: #ffffff;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(201, 168, 76, 0.25);
    }

    .elite-visit-btn--whatsapp {
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: #ffffff;
      border: none;
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
    }

    .elite-visit-btn--whatsapp:hover {
      background: linear-gradient(135deg, #128C7E, #075E54);
      color: #ffffff;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    }

    @media (max-width: 900px) {
      .elite-visit-grid {
        grid-template-columns: 1fr;
      }

      .elite-visit-map-container {
        height: auto;
      }

      .elite-visit-details {
        padding: 32px 24px;
      }

      .elite-visit-actions {
        grid-template-columns: 1fr;
      }
    }

    /* ═══════════════════════════════════════════════════════════════
       MOBILE VISIT LUMÈ SECTION — Apple.com Design Language
       ═══════════════════════════════════════════════════════════════ */
    @media (max-width: 768px) {

      /* ── Section wrapper ── */
      .elite-visit-section {
        padding: 56px 0 72px !important;
        background: #FFFFFF !important;
        position: relative;
        overflow: hidden;
      }

      /* ── Header ── */
      .elite-visit-header {
        text-align: center;
        margin-bottom: 36px;
        padding: 0 24px;
      }

      .elite-visit-eyebrow {
        font-family: -apple-system, sans-serif;
        font-size: 10px;
        letter-spacing: 0.38em;
        text-transform: uppercase;
        color: #8B4B3F;
        font-weight: 500;
        margin-bottom: 12px;
        display: block;
      }

      .elite-visit-headline {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 42px;
        font-weight: 300;
        font-style: italic;
        color: #1D1D1F;
        letter-spacing: -0.5px;
        line-height: 1.1;
        margin-bottom: 0;
      }

      .elite-visit-divider {
        width: 44px;
        height: 1.5px;
        background: linear-gradient(90deg, transparent, #C9A96E 40%, #E8C98A 60%, transparent);
        margin: 16px auto 36px;
        border: none;
        display: block;
      }

      /* ── Grid ── */
      .elite-visit-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-width: 100%;
      }

      /* ── Cards mobile layout ── */
      .elite-visit-card {
        margin: 16px 20px 0;
      }

      #lume-map-card {
        padding: 24px 20px !important;
      }

      /* === MOBILE MAP SECTION FIX START === */
      /* ── Map container — Responsive Apple card ── */
      .elite-visit-map-container {
        margin: 0 20px;
        width: calc(100% - 40px);
        /* Responsive width */
        box-sizing: border-box;
        border-radius: 18px;
        /* Match standard card radius */
        overflow: hidden;
        position: relative;
        min-height: unset;
        height: auto;
        background: #F5F5F7;
        /* Create stacking context for iOS border-radius clip */
        -webkit-mask-image: -webkit-radial-gradient(white, black);
        mask-image: radial-gradient(white, black);
      }

      .elite-visit-map-iframe {
        width: 100%;
        height: 280px;
        margin-top: -60px;
        /* Pull iframe up to completely hide native Google Maps UI button */
        margin-bottom: -30px;
        /* Counter-balance the height */
        border: none;
        display: block;
        filter: saturate(0.8) brightness(1.02) contrast(1.0);
        pointer-events: none;
        /* Disable interaction to prevent scrolling trap */
      }

      /* ── Map top overlay — Removing broken gradient ── */
      .elite-visit-map-cover {
        display: none !important;
      }

      /* === MOBILE MAP SECTION FIX END === */

      /* ── Map pin ── */
      .elite-visit-map-pin {
        width: 20px;
        height: 20px;
        background-color: #8B4B3F;
        border: 2.5px solid #fff;
        border-radius: 50%;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
      }

      /* ── "Open in Maps" button — centered ── */
      .elite-visit-map-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 5;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(201, 169, 110, 0.35);
        border-radius: 980px;
        padding: 11px 24px;
        display: flex;
        align-items: center;
        gap: 9px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
        white-space: nowrap;
        text-decoration: none;
        font-family: -apple-system, sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.2em;
        color: #1D1D1F;
        text-transform: uppercase;
        transition: all 0.2s ease;
      }

      .elite-visit-map-btn svg {
        width: 15px;
        height: 15px;
        stroke: #8B4B3F;
      }

      .elite-visit-map-btn:active {
        background: rgba(245, 239, 233, 0.98);
        transform: translate(-50%, -50%) scale(0.97);
      }

      /* ── Address strip — Apple list row ── */
      .lume-address-strip {
        margin: 12px 20px 0;
        background: #FFFFFF;
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
        padding: 16px 18px;
        display: flex;
        align-items: center;
        gap: 14px;
        text-decoration: none;
      }

      .lume-address-strip svg {
        width: 20px;
        height: 20px;
        fill: #C9A96E;
        flex-shrink: 0;
      }

      .lume-address-strip .addr-street {
        font-family: -apple-system, sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #1D1D1F;
        display: block;
        line-height: 1.3;
      }

      .lume-address-strip .addr-city {
        font-family: -apple-system, sans-serif;
        font-size: 13px;
        color: #86868B;
        display: block;
        margin-top: 2px;
        line-height: 1.3;
      }

      .lume-address-strip .addr-chevron {
        color: #C7C7CC;
        font-size: 18px;
        margin-left: auto;
        font-weight: 300;
        line-height: 1;
      }

      /* ── Details card — opening hours — Apple Settings list ── */
      .elite-visit-details {
        padding: 0 !important;
      }

      /* Mobile Opening Hours details specific */
      .elite-visit-details {
        padding: 0 !important;
      }

      /* ── Hours header row ── */
      .elite-visit-hours-header {
        padding: 18px 20px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        margin-bottom: 0;
      }

      .elite-visit-details h3 {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 22px;
        font-weight: 300;
        font-style: italic;
        color: #1D1D1F;
        line-height: 1.2;
        margin: 0;
      }

      .elite-visit-status-badge {
        background: #FFF0EE;
        border: 1px solid rgba(139, 75, 63, 0.18);
        border-radius: 10px;
        padding: 7px 11px;
        font-family: -apple-system, sans-serif;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: #8B4B3F;
        text-transform: uppercase;
        line-height: 1.45;
        text-align: center;
        max-width: 128px;
        gap: 0;
        display: inline-flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
      }

      .elite-visit-status-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #8B4B3F;
        display: inline-block;
        margin-right: 5px;
        vertical-align: 1px;
      }

      .elite-visit-status-badge.is-open {
        background: rgba(52, 199, 89, 0.08);
        border-color: rgba(52, 199, 89, 0.25);
        color: #248A3D;
      }

      .elite-visit-status-badge.is-open .elite-visit-status-dot {
        background: #34C759;
        box-shadow: 0 0 6px rgba(52, 199, 89, 0.5);
      }

      /* ── Hours table — Apple list cells ── */
      .elite-visit-hours-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 0;
      }

      .elite-visit-hours-table td {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-family: -apple-system, sans-serif;
        font-size: 15px;
        color: #1D1D1F;
        font-weight: 400;
      }

      .elite-visit-hours-table td:last-child {
        text-align: right;
        color: #3A3A3C;
        font-weight: 400;
      }

      .elite-visit-hours-table tr:last-child td {
        border-bottom: none;
      }

      /* Today's row highlight */
      .elite-visit-hours-table tr.is-today td {
        background: rgba(201, 169, 110, 0.05);
        font-weight: 600;
        color: #8B4B3F;
      }

      .elite-visit-hours-table tr.is-today td:last-child {
        color: #8B4B3F;
      }

      /* Closed days — italic muted */
      .elite-visit-hours-table tr[data-day="1"] td:last-child {
        color: #AEAEB2;
        font-style: italic;
        font-weight: 400;
      }

      .elite-visit-hours-table tr.is-today[data-day="1"] td:last-child {
        color: #8B4B3F;
        font-style: italic;
      }

      /* ── Info list — hide on mobile ── */
      .elite-visit-info-list {
        display: none;
      }

      /* ── Action buttons — hide ── */
      .elite-visit-actions {
        display: none;
      }

      /* ── Book appointment CTA (inside card, below hours) ── */
      .lume-visit-book-cta-wrap {
        padding: 16px 20px 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
      }

      .lume-visit-book-btn {
        display: block;
        width: 100%;
        padding: 16px;
        background: linear-gradient(135deg, #C9A96E 0%, #E8C98A 50%, #B8933A 100%);
        border: none;
        border-radius: 16px;
        font-family: -apple-system, sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.12em;
        color: #FFFFFF;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
        box-shadow: 0 4px 20px rgba(185, 147, 58, 0.3);
        cursor: pointer;
        transition: all 0.2s ease;
      }

      .lume-visit-book-btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(185, 147, 58, 0.2);
      }
    }

    /* ── Tagline ── */
    .elite-footer__tagline {
      font-family: 'Cormorant Garamond', Georgia, serif !important;
      font-size: 17px !important;
      font-style: italic;
      font-weight: 300;
      color: rgba(245, 239, 233, 0.75) !important;
      text-align: center;
      line-height: 1.5 !important;
      margin-bottom: 6px;
    }

    .elite-footer__tagline-sub {
      display: block;
      font-family: -apple-system, sans-serif;
      font-style: normal;
      font-size: 12px;
      color: rgba(245, 239, 233, 0.4);
      letter-spacing: 0.05em;
      margin-top: 6px;
      margin-bottom: 28px;
    }

    /* ── Social icon row ── */
    .elite-footer__social-row {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin: 0 0 40px 0 !important;
    }

    .elite-footer__social-link {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(201, 169, 110, 0.1);
      border: 1px solid rgba(201, 169, 110, 0.25) !important;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #C9A96E !important;
      transition: all 0.25s ease;
    }

    .elite-footer__social-link svg {
      width: 18px;
      height: 18px;
      stroke: #C9A96E !important;
      fill: none;
    }

    .elite-footer__social-link:active {
      background: rgba(201, 169, 110, 0.2);
      transform: scale(0.93);
    }

    /* ── Gold dividers ── */
    .elite-footer__grid>div {
      position: relative;
    }

    .elite-footer__grid>div::before {
      content: '';
      display: block;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 110, 0.3) 30%, rgba(201, 169, 110, 0.3) 70%, transparent 100%);
      margin: 0 0 36px;
    }

    .elite-footer__grid>div:first-child::before {
      display: none;
    }

    /* ── Quick Links heading ── */
    .elite-footer__heading {
      font-family: 'Cormorant Garamond', Georgia, serif !important;
      font-size: 20px !important;
      font-weight: 400 !important;
      font-style: italic;
      color: #C9A96E !important;
      text-align: center;
      margin: 0 0 6px 0 !important;
      display: block !important;
    }

    .elite-footer__heading::after {
      content: '' !important;
      position: relative !important;
      bottom: unset !important;
      left: unset !important;
      display: block !important;
      width: 36px !important;
      height: 1px !important;
      background: linear-gradient(90deg, transparent, #C9A96E, transparent) !important;
      margin: 6px auto 22px !important;
      transform: none !important;
    }

    /* ── Link list ── */
    .elite-footer__list {
      list-style: none;
      padding: 0;
      margin: 0 !important;
      display: flex;
      flex-direction: column;
      gap: 0 !important;
      margin-bottom: 0;
    }

    .elite-footer__list li {
      border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    }

    .elite-footer__list li:last-child {
      border-bottom: none;
    }

    .elite-footer__link {
      display: block !important;
      text-align: center;
      padding: 11px 0;
      font-family: -apple-system, sans-serif !important;
      font-size: 14px !important;
      font-weight: 400 !important;
      color: rgba(245, 239, 233, 0.65) !important;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .elite-footer__link::before {
      display: none !important;
    }

    .elite-footer__link:active {
      color: #C9A96E !important;
    }

    .elite-footer__link:hover {
      transform: none !important;
      color: rgba(245, 239, 233, 0.85) !important;
    }

    /* ── Contact items ── */
    .elite-footer__contact-item {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
      gap: 0 !important;
      margin-bottom: 24px;
      font-family: -apple-system, sans-serif !important;
      font-size: 13px !important;
      color: rgba(245, 239, 233, 0.6) !important;
      line-height: 1.7 !important;
    }

    .elite-footer__contact-item:last-child {
      margin-bottom: 0;
    }

    .elite-footer__contact-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(201, 169, 110, 0.1) !important;
      border: 1px solid rgba(201, 169, 110, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      color: #C9A96E !important;
    }

    .elite-footer__contact-icon svg {
      width: 16px;
      height: 16px;
      stroke: #C9A96E;
    }

    .elite-footer__contact-item a {
      color: rgba(245, 239, 233, 0.85) !important;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.04em;
      font-family: -apple-system, sans-serif;
      text-decoration: none;
      display: block;
    }

    .elite-footer__contact-item a[href^="mailto"] {
      font-size: 13px !important;
      font-weight: 400 !important;
      color: #C9A96E !important;
      letter-spacing: 0.02em;
    }

    .elite-footer__contact-item a[href^="mailto"]:active {
      opacity: 0.75;
    }

    /* ── Hours table ── */
    .elite-footer__hours-table {
      width: 100% !important;
      display: table !important;
      border-collapse: collapse;
      font-family: -apple-system, sans-serif !important;
      font-size: 13px !important;
      color: rgba(245, 239, 233, 0.85) !important;
    }

    .elite-footer__hours-table td {
      padding: 10px 0 !important;
      border-bottom: 1px solid rgba(201, 169, 110, 0.08) !important;
      text-align: left !important;
    }

    .elite-footer__hours-table td:first-child {
      color: rgba(245, 239, 233, 0.55) !important;
      text-align: left !important;
      padding-right: 16px !important;
      font-weight: 400;
    }

    .elite-footer__hours-table td:last-child {
      text-align: right !important;
      color: rgba(245, 239, 233, 0.85) !important;
      font-weight: 500;
    }

    .elite-footer__hours-table tr:last-child td {
      border-bottom: none !important;
    }

    /* Closed day — italic muted */
    .elite-footer__hours-table tr:last-child td:last-child {
      color: rgba(245, 239, 233, 0.3) !important;
      font-style: italic;
      font-weight: 400 !important;
    }

    /* "See full hours" link */
    .elite-footer__hours-link {
      display: block !important;
      text-align: center;
      margin-top: 16px;
      font-family: -apple-system, sans-serif !important;
      font-size: 12px !important;
      color: #C9A96E !important;
      letter-spacing: 0.08em;
      text-decoration: underline !important;
      text-underline-offset: 3px !important;
      text-decoration-color: rgba(201, 169, 110, 0.4) !important;
    }

    /* ── Newsletter ── */
    .elite-footer__newsletter {
      margin-top: 36px !important;
    }

    .elite-footer__newsletter h5 {
      font-family: -apple-system, sans-serif !important;
      font-size: 10px !important;
      letter-spacing: 0.35em !important;
      color: #C9A96E !important;
      text-align: center;
      font-weight: 600 !important;
      text-transform: uppercase;
      margin-bottom: 16px !important;
    }

    .elite-footer__newsletter-form {
      display: flex;
      gap: 10px !important;
      align-items: stretch;
    }

    .elite-footer__newsletter-input {
      flex: 1;
      padding: 14px 18px !important;
      background: rgba(255, 255, 255, 0.06) !important;
      border: 1px solid rgba(201, 169, 110, 0.25) !important;
      border-radius: 14px !important;
      font-family: -apple-system, sans-serif !important;
      font-size: 14px !important;
      color: #F5EFE9 !important;
      outline: none;
    }

    .elite-footer__newsletter-input::placeholder {
      color: rgba(245, 239, 233, 0.3) !important;
    }

    .elite-footer__newsletter-input:focus {
      border-color: rgba(201, 169, 110, 0.55) !important;
      background: rgba(255, 255, 255, 0.09) !important;
    }

    .elite-footer__newsletter-btn {
      padding: 14px 22px !important;
      background: linear-gradient(135deg, #C9A96E 0%, #E8C98A 50%, #B8933A 100%) !important;
      border: none !important;
      border-radius: 14px !important;
      font-family: -apple-system, sans-serif !important;
      font-size: 12px !important;
      font-weight: 700 !important;
      letter-spacing: 0.12em !important;
      color: #FFFFFF !important;
      text-transform: uppercase;
      white-space: nowrap;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(185, 147, 58, 0.35);
      transition: all 0.2s ease;
    }

    .elite-footer__newsletter-btn:active {
      transform: scale(0.96);
    }

    /* Wrapper with margin-top override */
    .elite-footer__grid>div:last-child>div[style] {
      margin-top: 0 !important;
    }

    /* ── Bottom copyright bar ── */
    .elite-footer__bottom {
      margin-top: 40px !important;
      padding-top: 20px !important;
      border-top: 1px solid rgba(201, 169, 110, 0.12) !important;
      border-image: none !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 8px !important;
      text-align: center;
      font-family: -apple-system, sans-serif !important;
      font-size: 11px !important;
      color: rgba(245, 239, 233, 0.3) !important;
      line-height: 1.6 !important;
    }

    .elite-footer__bottom a {
      color: rgba(201, 169, 110, 0.55) !important;
      text-decoration: none;
    }

    /* ── End mobile footer ── */

    /* Elite Hero Redesign */
    .hero__overlay {
      background: radial-gradient(ellipse at 25% 50%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 80%) !important;
    }

    .hero__overlay::after {
      display: none !important;
    }

    .hero__wordmark {
      font-size: clamp(4.5rem, 8vw, 7rem) !important;
      letter-spacing: 0.1em !important;
      color: #b8977e !important;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .hero__eyebrow-text,
    .hero__subtitle,
    .hero__quote,
    .hero__status .status-text,
    .hero__address {
      color: #FFFFFF !important;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      opacity: 0.9;
    }

    .hero__eyebrow-line,
    .hero__divider,
    .meta-divider {
      background-color: rgba(255, 255, 255, 0.4) !important;
    }

    /* Buttons */
    .hero__ctas .btn {
      height: 52px !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 0 32px !important;
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }

    .hero__ctas .btn--secondary {
      background: rgba(255, 255, 255, 0.08) !important;
      backdrop-filter: blur(8px) !important;
      -webkit-backdrop-filter: blur(8px) !important;
      color: #FAF7F4 !important;
      border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    .hero__ctas .btn--secondary:hover {
      background: #FAF7F4 !important;
      color: #1C1410 !important;
      border-color: #FAF7F4 !important;
      transform: translateY(-2px) !important;
    }

    .hero__ctas .btn--primary:hover {
      transform: scale(1.02) translateY(-2px) !important;
      box-shadow: 0 10px 25px rgba(201, 168, 76, 0.4) !important;
    }

    /* Motion */
    .scroll-arrow {
      animation: scrollBounce 2s cubic-bezier(0.25, 1, 0.5, 1) infinite !important;
      transform-origin: center;
    }

    @keyframes scrollBounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(6px);
      }
    }

    .hero__bg {
      animation: heroPan 15s ease-out infinite alternate !important;
      transform-origin: center center;
    }

    @keyframes heroPan {
      0% {
        transform: scale(1);
      }

      100% {
        transform: scale(1.05);
      }
    }

    .hero__content>* {
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    .hero__content>.hero__eyebrow {
      animation-delay: 0.1s;
    }

    .hero__content>.hero__wordmark {
      animation-delay: 0.2s;
    }

    .hero__content>.hero__subtitle {
      animation-delay: 0.3s;
    }

    .hero__content>.hero__divider {
      animation-delay: 0.4s;
    }

    .hero__content>.hero__quote {
      animation-delay: 0.5s;
    }

    .hero__content>.hero__ctas {
      animation-delay: 0.6s;
    }

    .hero__content>.hero__meta {
      animation-delay: 0.7s;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .scroll-line {
      animation: scrollBounce 2s cubic-bezier(0.25, 1, 0.5, 1) infinite !important;
      transform-origin: top;
    }

    @keyframes scrollBounce {

      0%,
      20%,
      50%,
      80%,
      100% {
        transform: scaleY(1);
      }

      40% {
        transform: scaleY(1.5);
      }

      60% {
        transform: scaleY(1.2);
      }
    }

    .hero__scroll {
      transform: scale(1.1) translateX(-45%) !important;
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: 1s;
    }

    /* Nav bar */
    .header__inner {
      padding-top: 24px !important;
      padding-bottom: 24px !important;
    }

    .nav__list {
      display: flex !important;
      gap: 32px !important;
      opacity: 1 !important;
      visibility: visible !important;
      align-items: center !important;
    }

    .nav__link {
      font-family: 'Jost', sans-serif !important;
      font-size: 14px !important;
      font-weight: 500 !important;
      color: #FAF7F4 !important;
      text-transform: uppercase !important;
      letter-spacing: 1.5px !important;
      opacity: 1 !important;
      text-decoration: none !important;
      position: relative !important;
      padding-bottom: 4px !important;
      transition: color 0.3s ease !important;
    }

    .nav__link:hover,
    .nav__link--active {
      color: #C9A84C !important;
    }

    .nav__link::after {
      content: '' !important;
      position: absolute !important;
      bottom: 0 !important;
      left: 0 !important;
      width: 0% !important;
      height: 1px !important;
      background: #C9A84C !important;
      transition: width 0.3s ease !important;
    }

    .nav__link:hover::after,
    .nav__link--active::after {
      width: 100% !important;
    }

    .header__cta {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-family: 'Jost', sans-serif !important;
      font-size: 13px !important;
      font-weight: 600 !important;
      text-transform: uppercase !important;
      letter-spacing: 1.5px !important;
      background-color: #a8615a !important;
      color: #FAF7F4 !important;
      padding: 0 24px !important;
      height: 44px !important;
      border: none !important;
      border-radius: 4px !important;
      text-decoration: none !important;
      transition: all 0.3s ease !important;
    }

    .header__cta:hover {
      background-color: #8E4C46 !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 15px rgba(168, 97, 90, 0.4) !important;
    }

    /* Logo Fallback */
    .header__logo {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 60px !important;
      height: 60px !important;
      background-color: #FAF7F4 !important;
      border-radius: 50% !important;
      overflow: hidden !important;
    }
