 /* ===== CUSTOM VARIABLES ===== */
 :root {
     --gold: #C8A45C;
     --gold-dark: #B08A3E;
     --black: #1A1A1A;
     --white: #FFFFFF;
     --light-gray: #F8F6F3;
     --gray: #E8E5E0;
     --dark-gray: #4A4A4A;
     --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
     --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.12);
     --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 }

 /* ===== RESET & BASE ===== */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     overflow-x: clip;
     scroll-padding-top: 80px;
 }

 body {
     font-family: var(--font-primary);
     background: var(--white);
     color: var(--black);
     line-height: 1.7;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     overflow-x: clip;
     width: 100%;
     max-width: 100vw;
 }

 img {
     max-width: 100%;
     height: auto;
     display: block;
 }

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

 .container {
     max-width: 1240px;
     padding: 0 24px;
 }

 /* ===== TYPOGRAPHY ===== */
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-weight: 600;
     letter-spacing: -0.02em;
     line-height: 1.2;
 }

 h1 {
     font-size: clamp(2.6rem, 6vw, 4.8rem);
     font-weight: 700;
 }

 h2 {
     font-size: clamp(2rem, 4vw, 3.2rem);
     margin-bottom: 1rem;
 }

 h3 {
     font-size: clamp(1.4rem, 2.5vw, 2rem);
 }

 .section-title {
     margin-bottom: 0.5rem;
 }

 .section-subtitle {
     font-size: 1.1rem;
     color: var(--dark-gray);
     max-width: 620px;
     margin: 0 auto 3rem;
 }

 /* ===== BUTTONS ===== */
 .btn-gold {
     background: var(--gold);
     color: var(--white);
     border: none;
     padding: 14px 40px;
     font-weight: 600;
     font-size: 1rem;
     border-radius: 8px;
     transition: var(--transition);
     letter-spacing: 0.3px;
     box-shadow: 0 8px 24px rgba(200, 164, 92, 0.25);
 }
 .btn-whatsapp-nav {
     background: #25D366;
     color: var(--white);
     border: none;
     padding: 12px 32px;
     border-radius: 8px;
     font-weight: 600;
     transition: var(--transition);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }



 .btn-gold:hover {
     background: var(--gold-dark);
     color: var(--white);
     transform: translateY(-3px);
     box-shadow: 0 16px 40px rgba(200, 164, 92, 0.35);
 }

 .btn-outline-gold {
     background: transparent;
     color: var(--gold);
     border: 2px solid var(--gold);
     padding: 12px 36px;
     font-weight: 600;
     font-size: 1rem;
     border-radius: 8px;
     transition: var(--transition);
 }

 .btn-outline-gold:hover {
     background: var(--gold);
     color: var(--white);
     transform: translateY(-3px);
     box-shadow: 0 16px 40px rgba(200, 164, 92, 0.2);
 }

 .btn-dark {
     background: var(--black);
     color: var(--white);
     border: none;
     padding: 14px 40px;
     font-weight: 600;
     border-radius: 8px;
     transition: var(--transition);
 }

 .btn-dark:hover {
     background: #2a2a2a;
     color: var(--white);
     transform: translateY(-3px);
     box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
 }

 /* ===== NAVBAR ===== */
 .navbar {
     padding: 16px 0;
     background: rgba(255, 255, 255, 0.96);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     transition: var(--transition);
 }

 .navbar .container {
     max-width: 1240px;
 }

 .navbar-brand img {
     height: 100px;
     width: auto;
     border-radius: 10px;
 }

 .navbar-nav .nav-link {
     font-weight: 500;
     color: var(--black);
     padding: 8px 18px;
     font-size: 0.95rem;
     transition: var(--transition);
     border-radius: 6px;
 }

 .navbar-nav .nav-link:hover {
     color: var(--gold);
     background: rgba(200, 164, 92, 0.06);
 }

 .navbar .btn-gold {
     padding: 10px 28px;
     font-size: 0.9rem;
 }

 .site-navbar-toggler {
     padding: 0.35rem 0.55rem;
    
 }
 

 .site-navbar-toggler:focus {
     box-shadow: 0 0 0 0.2rem rgba(200, 164, 92, 0.35);
 }

 .nav-offcanvas {
     width: min(320px, 88vw);
     border-left: 1px solid rgba(0, 0, 0, 0.06);
 }

 .nav-offcanvas .nav-offcanvas-links .nav-link {
     font-size: 1.05rem;
     font-weight: 500;
     padding: 0.85rem 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
     color: var(--black);
 }

 .nav-offcanvas .nav-offcanvas-links .nav-link:hover,
 .nav-offcanvas .nav-offcanvas-links .nav-link:focus {
     color: var(--gold);
 }

 .nav-offcanvas-actions .btn {
     justify-content: center;
 }

 /* ===== HERO ===== */
 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding: 120px 0 80px;
     background: var(--light-gray);
     position: relative;
     overflow: hidden;
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero-content .badge {
     background: var(--gold);
     color: var(--white);
     font-weight: 500;
     padding: 6px 20px;
     border-radius: 50px;
     font-size: 0.8rem;
     letter-spacing: 0.5px;
     display: inline-block;
     margin-bottom: 1.5rem;
 }

 .hero h1 {
     margin-bottom: 1.2rem;
 }

 .hero h1 .highlight {
     color: var(--gold);
 }

 .hero .lead {
     font-size: 1.2rem;
     color: var(--dark-gray);
     max-width: 540px;
     margin-bottom: 2.5rem;
     line-height: 1.8;
 }

 .hero .btn-group {
     gap: 16px;
     flex-wrap: wrap;
 }

 .hero-image-wrapper {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: var(--shadow);
     background: var(--white);
 }

 .hero-image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     min-height: 400px;
     transition: var(--transition);
 }

 .hero-image-wrapper:hover img {
     transform: scale(1.02);
 }

 /* ===== SECTION SPACING ===== */
 section {
     padding: 80px 0;
 }

 /* ===== DESTAQUES / QUIOSQUE ===== */
 .destaques {
     background:
         linear-gradient(180deg, #f3efe8 0%, var(--white) 42%, var(--white) 100%);
     position: relative;
     overflow: hidden;
 }

 .destaques::before {
     content: '';
     position: absolute;
     top: -80px;
     right: -60px;
     width: 320px;
     height: 320px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(200, 164, 92, 0.18) 0%, transparent 70%);
     pointer-events: none;
 }

 .destaques-heading {
     display: flex;
     flex-direction: column;
     gap: 12px;
     margin-bottom: 2.5rem;
     position: relative;
     z-index: 1;
 }

 .destaques-heading-top {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     width: 100%;
 }

 .destaques-badge {
     background: var(--black) !important;
     color: var(--white) !important;
     font-weight: 600;
     padding: 6px 18px;
     border-radius: 50px;
     font-size: 0.8rem;
     letter-spacing: 0.6px;
     text-transform: uppercase;
     display: inline-block;
     margin-bottom: 0;
 }

 .destaques-title {
     font-size: clamp(1.85rem, 4.2vw, 3rem);
     margin-bottom: 0;
     max-width: 18ch;
 }

 .destaques-heading-logo {
     flex-shrink: 0;
 }

 .destaques-heading-logo img {
     height: clamp(40px, 8vw, 72px);
     width: auto;
     display: block;
     border-radius: 10px;
 }

 @media (min-width: 992px) {
     .destaques-heading-logo img {
         height: 140px;
     }
 }

 .destaques-lead {
     font-size: 1.15rem;
     color: var(--black);
     line-height: 1.7;
     margin-bottom: 1rem;
 }

 .destaques-copy {
     color: var(--dark-gray);
     margin-bottom: 1.5rem;
     line-height: 1.75;
 }

 .destaques-list {
     list-style: none;
     padding: 0;
     margin: 0 0 0.5rem;
 }

 .destaques-list li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     margin-bottom: 0.85rem;
     color: var(--black);
     font-weight: 500;
 }

 .destaques-list i {
     color: var(--gold);
     font-size: 1.2rem;
     margin-top: 2px;
     flex-shrink: 0;
 }

 .destaques-gallery {
     display: grid;
     grid-template-columns: 1.35fr 1fr;
     grid-template-rows: auto auto;
     gap: 16px;
 }

 .destaques-photo {
     margin: 0;
     border-radius: 16px;
     overflow: hidden;
     background: var(--light-gray);
     box-shadow: var(--shadow);
     position: relative;
     cursor: zoom-in;
 }

 .destaques-photo:focus-visible {
     outline: 3px solid rgba(200, 164, 92, 0.65);
     outline-offset: 3px;
 }

 .destaques-photo--main {
     grid-row: 1 / 3;
 }

 .destaques-photo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     min-height: 180px;
     transition: var(--transition);
 }

 .destaques-photo--main img {
     min-height: 420px;
 }

 .destaques-photo:hover img {
     transform: scale(1.03);
 }

 .destaques-photo figcaption {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     padding: 14px 16px;
     background: linear-gradient(to top, rgba(26, 26, 26, 0.78), transparent);
     color: var(--white);
     font-size: 0.85rem;
     font-weight: 500;
 }

 @media (max-width: 991.98px) {
     .destaques-gallery {
         grid-template-columns: 1fr 1fr;
         grid-template-rows: auto;
     }

     .destaques-photo--main {
         grid-column: 1 / -1;
         grid-row: auto;
     }

     .destaques-photo--main img {
         min-height: 280px;
     }

     .destaques-heading-logo img {
         height: 56px;
     }
 }

 @media (max-width: 767.98px) {
     .destaques-heading {
         gap: 10px;
         margin-bottom: 1.75rem;
     }

     .destaques-heading-top {
         gap: 12px;
     }

     .destaques-badge {
         font-size: 0.72rem;
         padding: 5px 14px;
     }

     .destaques-heading-logo img {
         height: 40px;
     }

     .destaques-title {
         max-width: none;
         font-size: clamp(1.45rem, 6.5vw, 1.9rem);
     }

     .destaques-lead {
         font-size: 1rem;
     }

     .destaques-copy {
         font-size: 0.92rem;
     }

     .destaques-list li {
         font-size: 0.92rem;
     }

     .destaques-gallery {
         grid-template-columns: 1fr;
         gap: 12px;
     }

     .destaques-photo img {
         min-height: 200px;
         max-height: 280px;
     }

     .destaques-photo--main img {
         min-height: 220px;
         max-height: 320px;
     }

     .destaques .btn-gold {
         width: 100%;
         text-align: center;
     }
 }

 @media (max-width: 575.98px) {
     .destaques-heading-logo img {
         height: 34px;
     }

     .destaques-photo figcaption {
         font-size: 0.78rem;
         padding: 10px 12px;
     }
 }

 /* ===== DIFFERENTIALS ===== */
 .differentials .card {
     border: none;
     background: var(--light-gray);
     padding: 32px 24px;
     border-radius: 16px;
     box-shadow: var(--shadow);
     transition: var(--transition);
     height: 100%;
     border: 1px solid rgba(0, 0, 0, 0.03);
 }

 .differentials .card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-hover);
 }

 .differentials .card .icon {
     font-size: 2.8rem;
     color: var(--gold);
     margin-bottom: 1rem;
     display: inline-block;
 }

 .differentials .card h5 {
     font-weight: 600;
     margin-bottom: 0.5rem;
 }

 .differentials .card p {
     color: var(--dark-gray);
     font-size: 0.95rem;
     margin: 0;
 }

 /* ===== ABOUT ===== */
 .about {
     background: var(--white);
 }

 .about-image-wrapper {
     border-radius: 20px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .about-image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     min-height: 320px;
 }

 .about-content h2 {
     margin-bottom: 1.2rem;
 }

 .about-content p {
     color: var(--dark-gray);
     margin-bottom: 1.2rem;
 }

 .about-content .list-item {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 0.8rem;
 }

 .about-content .list-item i {
     color: var(--gold);
     font-size: 1.3rem;
 }

 /* ===== SERVICES ===== */

 .services .card {
     border: none;
     background: var(--white);
     padding: 32px 24px;
     border-radius: 16px;
     box-shadow: var(--shadow);
     transition: var(--transition);
     height: 100%;
     border: 1px solid rgba(0, 0, 0, 0.02);
     text-align: center;
 }

 .services .card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-hover);
 }

 .services .card .icon {
     font-size: 2.8rem;
     color: var(--gold);
     margin-bottom: 1rem;
     display: inline-block;
 }

 .services .card h5 {
     font-weight: 600;
     margin-bottom: 0.5rem;
 }

 .services .card p {
     color: var(--dark-gray);
     font-size: 0.95rem;
     margin: 0;
 }

 /* ===== PORTFOLIO ===== */
 .portfolio {
     background: var(--white);
 }

 .portfolio-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
     gap: 24px;
 }

 .video-wrapper {
     border-radius: 16px;
     overflow: hidden;
     box-shadow: var(--shadow);
     background: var(--black);
     aspect-ratio: 16 / 10;
 }

 .video-wrapper video {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     vertical-align: top;
 }

 .portfolio-item {
     position: relative;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
     aspect-ratio: 4/3;
     background: var(--white);
     cursor: pointer;
 }

 .portfolio-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
     cursor: pointer;
 }

 .portfolio-item:hover img {
     transform: scale(1.05);

 }

 .portfolio-item .overlay {
     position: absolute;
     inset: 0;
     background: rgba(26, 26, 26, 0.6);
     backdrop-filter: blur(4px);
     -webkit-backdrop-filter: blur(4px);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: var(--transition);
     padding: 24px;
 }

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

 .portfolio-item .overlay span {
     color: var(--white);
     font-weight: 500;
     font-size: 1.1rem;
     text-align: center;
     padding: 8px 16px;
     border-radius: 8px;
     background: rgba(200, 164, 92, 0.85);
 }

 /* ===== VIDEOS ===== */

 .video-wrapper video {
     pointer-events: none;
 }

 /* Ou se quiser desabilitar apenas o botão de play/pause */
 .video-wrapper video::-webkit-media-controls {
     display: none !important;
 }

 .video-wrapper video::-webkit-media-controls-play-button {
     display: none !important;
 }


 /* ===== PROCESS ===== */
 .process .step {
     text-align: center;
     padding: 24px 16px;
     border-radius: 16px;
     background: var(--light-gray);
     box-shadow: var(--shadow);
     transition: var(--transition);
     height: 100%;
     border: 1px solid rgba(0, 0, 0, 0.02);
 }

 .process .step:hover {
     transform: translateY(-6px);
     box-shadow: var(--shadow-hover);
 }

 .process .step .number {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: var(--gold);
     color: var(--white);
     font-weight: 700;
     font-size: 1.6rem;
     margin-bottom: 1rem;
 }

 .process .step h5 {
     font-weight: 600;
 }

 .process .step p {
     color: var(--dark-gray);
     font-size: 0.95rem;
     margin: 0;
 }

 /* ===== NUMBERS ===== */
 .numbers {
     background: var(--black);
     color: var(--white);
 }

 .numbers .stat {
     text-align: center;
     padding: 16px;
 }

 .numbers .stat .number {
     font-size: 3.2rem;
     font-weight: 700;
     color: var(--gold);
     line-height: 1.2;
 }

 .numbers .stat .label {
     font-size: 1rem;
     opacity: 0.7;
     font-weight: 400;
     margin-top: 4px;
 }

 /* ===== CTA ===== */
 .cta-section {
     background: var(--gold);
     color: var(--white);
     padding: 80px 0;
     text-align: center;
 }

 .cta-section h2 {
     margin-bottom: 1rem;
 }

 .cta-section p {
     font-size: 1.15rem;
     opacity: 0.9;
     max-width: 560px;
     margin: 0 auto 2.5rem;
 }

 .cta-section .btn-dark {
     background: var(--black);
     color: var(--white);
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
 }

 .cta-section .btn-dark:hover {
     background: #2a2a2a;
     transform: translateY(-3px);
     box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
 }

 /* ===== CONTACT ===== */
 .contact-card {
     background: var(--white);
     border-radius: 20px;
     padding: 40px 32px;
     box-shadow: var(--shadow);
     height: 100%;
     border: 1px solid rgba(0, 0, 0, 0.03);
     transition: var(--transition);
 }

 .contact-card:hover {
     box-shadow: var(--shadow-hover);
 }

 .contact-card .icon {
     font-size: 2rem;
     color: var(--gold);
     margin-bottom: 1rem;
 }

 .contact-card h5 {
     font-weight: 600;
     margin-bottom: 0.5rem;
 }

 .contact-card p {
     color: var(--dark-gray);
     margin: 0;
 }

 .contact-card .btn-whatsapp {
     background: #25D366;
     color: var(--white);
     border: none;
     padding: 12px 32px;
     border-radius: 8px;
     font-weight: 600;
     transition: var(--transition);
     display: inline-flex;
     align-items: center;
     gap: 10px;
 }

 .contact-card .btn-whatsapp:hover {
     background: #1ebe5a;
     transform: scale(1.02);
     color: var(--white);
 }

 .map-wrapper {
     border-radius: 20px;
     overflow: hidden;
     box-shadow: var(--shadow);
     height: 100%;
     min-height: 280px;
     background: var(--gray);
 }

 .map-wrapper iframe {
     width: 100%;
     height: 100%;
     min-height: 280px;
     border: 0;
 }

 /* ===== FOOTER ===== */
 footer {
     background: var(--black);
     color: rgba(255, 255, 255, 0.7);
     padding: 48px 0 32px;
 }

 footer .logo-footer img {
     height: 44px;
     width: auto;
     filter: brightness(0) invert(1);
     margin-bottom: 1rem;
 }

 footer p {
     font-size: 0.95rem;
     margin-bottom: 0.5rem;
 }

 footer .copy {
     border-top: 1px solid rgba(255, 255, 255, 0.08);
     padding-top: 24px;
     margin-top: 24px;
     font-size: 0.9rem;
     text-align: center;
 }

 /* ===== ANIMATIONS ===== */
 .fade-up {
     opacity: 0;
     transform: translateY(30px);
     animation: fadeUp 0.8s ease forwards;
 }

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

 .delay-1 {
     animation-delay: 0.1s;
 }

 .delay-2 {
     animation-delay: 0.2s;
 }

 .delay-3 {
     animation-delay: 0.3s;
 }

 .delay-4 {
     animation-delay: 0.4s;
 }

 /* ===== RESPONSIVE TWEAKS ===== */
 @media (max-width: 767.98px) {
     section {
         padding: 48px 0;
     }

     .section-subtitle {
         font-size: 0.95rem;
         margin-bottom: 2rem;
         line-height: 1.6;
     }

     h1 {
         font-size: clamp(1.75rem, 8vw, 2.35rem);
     }

     h2.section-title {
         font-size: clamp(1.45rem, 6vw, 1.85rem);
     }

     .section-title br {
         display: none;
     }

     .hero {
         padding: 88px 0 40px;
         min-height: auto;
     }

     .hero h1 br {
         display: none;
     }

     .hero .lead {
         font-size: 0.95rem;
         margin-bottom: 1.5rem;
         line-height: 1.65;
     }

     .hero .btn-group {
         flex-direction: column;
         align-items: stretch;
     }

     .hero .btn-group .btn {
         width: 100%;
         text-align: center;
         padding: 12px 24px;
     }

     .hero-image-wrapper {
         margin-top: 0.5rem;
     }

     .hero-image-wrapper img {
         min-height: 200px;
     }

     .about-image-wrapper img {
         min-height: 200px;
     }

     .about-content p {
         font-size: 0.92rem;
         line-height: 1.65;
     }

     .btn-about-more {
         color: var(--gold);
         font-weight: 600;
         padding: 0;
         border: none;
         background: none;
         text-decoration: underline;
         text-underline-offset: 3px;
     }

     .btn-about-more:hover {
         color: var(--gold-dark);
     }

     .differentials .card,
     .services .card {
         padding: 22px 18px;
     }

     .differentials .card .icon,
     .services .card .icon {
         font-size: 2.2rem;
     }

     .process .step {
         padding: 18px 14px;
     }

     .process .step .number {
         width: 48px;
         height: 48px;
         font-size: 1.25rem;
     }

     .numbers {
         padding: 40px 0;
     }

     .numbers .stat .number {
         font-size: 2rem;
     }

     .numbers .stat .label {
         font-size: 0.85rem;
     }

     .cta-section {
         padding: 48px 0;
     }

     .cta-section p {
         font-size: 0.95rem;
         margin-bottom: 1.5rem;
     }

     .cta-section h2 br {
         display: none;
     }

     .contact-card {
         padding: 24px 18px;
     }

     .portfolio-grid {
         display: flex;
         flex-wrap: nowrap;
         overflow-x: auto;
         gap: 16px;
         padding: 4px 0 12px;
         scroll-snap-type: x mandatory;
         -webkit-overflow-scrolling: touch;
         scrollbar-width: thin;
     }

     .portfolio-grid::-webkit-scrollbar {
         height: 4px;
     }

     .portfolio-grid::-webkit-scrollbar-thumb {
         background: var(--gray);
         border-radius: 4px;
     }

     .portfolio-item {
         flex: 0 0 min(82vw, 300px);
         scroll-snap-align: start;
     }

     .portfolio-item .overlay {
         opacity: 1;
         background: linear-gradient(to top, rgba(26, 26, 26, 0.75), transparent 55%);
         align-items: flex-end;
         justify-content: flex-start;
         padding: 16px;
     }

     .portfolio-item .overlay span {
         font-size: 0.9rem;
         background: rgba(200, 164, 92, 0.9);
     }

     .row.videos {
         --bs-gutter-y: 1rem;
     }

     footer {
         padding: 36px 0 24px;
         text-align: center;
     }

     footer .text-md-end {
         text-align: center !important;
     }
 }

 @media (max-width: 575.98px) {
     .container {
         padding-left: max(16px, env(safe-area-inset-left));
         padding-right: max(16px, env(safe-area-inset-right));
     }

     .navbar-brand img {
         height: 50px;
         
     }

     .cta-section h2 {
         font-size: 1.5rem;
     }

     .btn-gold,
     .btn-outline-gold,
     .btn-dark {
         font-size: 0.95rem;
     }
 }

 /* ===== UTILITY ===== */
 .text-gold {
     color: var(--gold);
 }

 .bg-light-gray {
     background: var(--light-gray);
 }

 .gap-2 {
     gap: 0.5rem;
 }

 .gap-3 {
     gap: 1rem;
 }

 .gap-4 {
     gap: 1.5rem;
 }

 .gap-5 {
     gap: 2.5rem;
 }