 :root {
   --gold: #C9A84C;
   --gold-light: #E8C97A;
   --gold-dark: #9A7A2E;
   --black: #0A0A0A;
   --charcoal: #111111;
   --dark: #181818;
   --mid: #222222;
   --text: #D8D8D8;
   --white: #F5F0E8;
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   background: var(--black);
   color: var(--text);
   font-family: 'Montserrat', sans-serif;
   font-weight: 300;
   overflow-x: hidden;
 }

 strong {
   font-weight: 600;
   color: var(--gold);
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 /* ── NAV ── */
 nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 100;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 22px 60px;
   background: linear-gradient(to bottom, rgba(10, 10, 10, 0.98) 0%, transparent 100%);
   backdrop-filter: blur(4px);
   border-bottom: 1px solid rgba(201, 168, 76, 0.15);
   animation: fadeDown 1s ease both;
 }

 .nav-logo {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.15rem;
   font-weight: 600;
   color: var(--gold);
   letter-spacing: 0.12em;
   text-transform: uppercase;
   line-height: 1.3;
 }

 .nav-logo span {
   display: block;
   font-size: 0.65rem;
   font-weight: 300;
   letter-spacing: 0.3em;
   color: var(--text);
   margin-top: 1px;
 }

 .nav-links {
   display: flex;
   gap: 36px;
   list-style: none;
 }

 .nav-links a {
   color: var(--text);
   text-decoration: none;
   font-size: 0.72rem;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   font-weight: 500;
   transition: color 0.3s;
   position: relative;
 }

 .nav-links a::after {
   content: '';
   position: absolute;
   bottom: -4px;
   left: 0;
   width: 0;
   height: 1px;
   background: var(--gold);
   transition: width 0.3s;
 }

 .nav-links a:hover {
   color: var(--gold);
 }

 .nav-links a:hover::after {
   width: 100%;
 }

 .nav-cta {
   background: transparent;
   border: 1px solid var(--gold);
   color: var(--gold);
   padding: 10px 24px;
   font-size: 0.7rem;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   font-family: 'Montserrat', sans-serif;
   font-weight: 500;
   cursor: pointer;
   transition: all 0.3s;
   text-decoration: none;
 }

 .nav-cta:hover {
   background: var(--gold);
   color: var(--black);
 }

 /* ── HERO ── */
 #hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
   padding: 120px 60px 80px;
 }

 .hero-bg {
   position: absolute;
   inset: 0;
   z-index: 0;
   background:
     radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
     radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
     linear-gradient(160deg, #0f0f0f 0%, #0a0a0a 50%, #0d0b07 100%);
 }

 .hero-grid {
   position: absolute;
   inset: 0;
   z-index: 0;
   background-image:
     linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
     linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
   background-size: 80px 80px;
   mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
 }

 .hero-content {
   position: relative;
   z-index: 1;
   max-width: 760px;
 }

 .hero-image {
   position: absolute;
   top: 0;
   right: 3%;
   width: 45%;
   height: 134%;
   background: url(../assests/Lakhwinder_Sandhu.png);
   /* background:url("../assets/hero-img.png") center/cover no-repeat; */
   opacity: 0.80;
   -webkit-mask-image: linear-gradient(to right,
       transparent 0%,
       black 30%,
       black 70%,
       transparent 100%);
   mask-image: linear-gradient(to right,
       transparent 0%,
       black 30%,
       black 70%,
       transparent 100%);
   background-position: left;
   background-repeat: no-repeat;
   background-size: cover;
 }

 .hero-eyebrow {
   font-size: 0.7rem;
   letter-spacing: 0.4em;
   text-transform: uppercase;
   color: var(--gold);
   margin-bottom: 28px;
   display: flex;
   align-items: center;
   gap: 16px;
   animation: fadeUp 1s 0.3s ease both;
 }

 .hero-eyebrow::before {
   content: '';
   width: 40px;
   height: 1px;
   background: var(--gold);
 }

 h1 {
   font-family: 'Cormorant Garamond', serif;
   font-size: clamp(3rem, 6vw, 5.5rem);
   font-weight: 300;
   line-height: 1.05;
   color: var(--white);
   margin-bottom: 12px;
   animation: fadeUp 1s 0.5s ease both;
 }

 h1 strong {
   color: var(--gold);
   font-weight: 600;
   display: block;
 }

 .hero-sub {
   font-size: 0.8rem;
   letter-spacing: 0.25em;
   text-transform: uppercase;
   color: rgba(201, 168, 76, 0.6);
   margin-bottom: 28px;
   animation: fadeUp 1s 0.6s ease both;
 }

 .hero-divider {
   width: 80px;
   height: 1px;
   background: var(--gold);
   margin-bottom: 28px;
   animation: expandWidth 1.2s 0.7s ease both;
 }

 .hero-desc {
   font-size: 1rem;
   line-height: 1.8;
   color: rgba(216, 216, 216, 0.7);
   max-width: 520px;
   margin-bottom: 44px;
   animation: fadeUp 1s 0.8s ease both;
 }

 .hero-actions {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
   animation: fadeUp 1s 1s ease both;
 }

 .btn-primary {
   background: var(--gold);
   color: var(--black);
   padding: 15px 36px;
   font-size: 0.72rem;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   font-weight: 600;
   font-family: 'Montserrat', sans-serif;
   cursor: pointer;
   border: none;
   text-decoration: none;
   transition: all 0.3s;
   display: inline-block;
 }

 .btn-primary:hover {
   background: var(--gold-light);
   transform: translateY(-2px);
   box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
 }

 .btn-outline {
   background: transparent;
   color: var(--white);
   padding: 15px 36px;
   font-size: 0.72rem;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   font-weight: 500;
   font-family: 'Montserrat', sans-serif;
   cursor: pointer;
   border: 1px solid rgba(255, 255, 255, 0.25);
   text-decoration: none;
   transition: all 0.3s;
   display: inline-block;
 }

 .btn-outline:hover {
   border-color: var(--gold);
   color: var(--gold);
 }

 .hero-rating {
   position: absolute;
   bottom: 60px;
   right: 60px;
   z-index: 1;
   text-align: right;
   animation: fadeUp 1s 1.2s ease both;
 }

 .rating-stars {
   color: var(--gold);
   font-size: 1.1rem;
   letter-spacing: 3px;
   margin-bottom: 4px;
 }

 .rating-text {
   font-size: 0.68rem;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   color: rgba(216, 216, 216, 0.5);
 }

 .rating-num {
   font-family: 'Cormorant Garamond', serif;
   font-size: 2.5rem;
   color: var(--gold);
   font-weight: 300;
   line-height: 1;
 }

 /* ── SECTION COMMON ── */
 section {
   padding: 100px 60px;
 }

 .section-label {
   font-size: 0.65rem;
   letter-spacing: 0.4em;
   text-transform: uppercase;
   color: var(--gold);
   display: flex;
   align-items: center;
   gap: 14px;
   margin-bottom: 20px;
 }

 .section-label::before {
   content: '';
   width: 30px;
   height: 1px;
   background: var(--gold);
 }

 .section-title {
   font-family: 'Cormorant Garamond', serif;
   font-size: clamp(2rem, 4vw, 3.2rem);
   font-weight: 300;
   color: var(--white);
   line-height: 1.15;
   margin-bottom: 16px;
 }

 .section-title em {
   font-style: italic;
   color: var(--gold);
 }

 /* ── ABOUT ── */
 #about {
   background: var(--charcoal);
 }

 .about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   margin-top: 60px;
 }

 .about-text p {
   font-size: 0.92rem;
   line-height: 1.9;
   color: rgba(216, 216, 216, 0.75);
   margin-bottom: 20px;
 }

 .about-stats {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2px;
   margin-top: 40px;
 }

 .stat-box {
   background: var(--dark);
   padding: 28px 24px;
   border-top: 2px solid var(--gold);
 }

 .stat-num {
   font-family: 'Cormorant Garamond', serif;
   font-size: 2.8rem;
   color: var(--gold);
   font-weight: 300;
   line-height: 1;
   margin-bottom: 6px;
 }

 .stat-label {
   font-size: 0.65rem;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   color: rgba(216, 216, 216, 0.5);
 }

 .team-cards {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }

 .team-card {
   background: var(--dark);
   padding: 36px;
   border-left: 3px solid var(--gold);
   position: relative;
   overflow: hidden;
   transition: transform 0.3s;
 }

 .team-card:hover {
   transform: translateX(6px);
 }

 .team-card::before {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   width: 80px;
   height: 80px;
   background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
 }

 .team-name {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.5rem;
   color: var(--white);
   font-weight: 600;
   margin-bottom: 4px;
 }

 .team-title {
   font-size: 0.68rem;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   color: var(--gold);
   margin-bottom: 14px;
 }

 .team-desc {
   font-size: 0.85rem;
   line-height: 1.7;
   color: rgba(216, 216, 216, 0.6);
 }

 /* ── PRACTICE AREAS ── */
 #practice {
   background: var(--black);
 }

 .practice-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2px;
   margin-top: 60px;
 }

 .practice-card {
   background: var(--charcoal);
   padding: 50px 40px;
   position: relative;
   overflow: hidden;
   cursor: default;
   transition: all 0.4s;
 }

 .practice-card:hover {
   background: var(--dark);
 }

 .practice-card:hover .practice-icon {
   color: var(--gold);
   transform: scale(1.1);
 }

 .practice-num {
   font-family: 'Cormorant Garamond', serif;
   font-size: 4rem;
   color: rgba(201, 168, 76, 0.08);
   font-weight: 700;
   position: absolute;
   top: 20px;
   right: 24px;
   line-height: 1;
 }

 .practice-icon {
   font-size: 1.8rem;
   margin-bottom: 20px;
   transition: all 0.3s;
   display: block;
 }

 .practice-name {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.5rem;
   color: var(--gold);
   font-weight: 600;
   margin-bottom: 8px;
 }

 .practice-phone {
   font-size: 0.72rem;
   letter-spacing: 0.1em;
   color: rgba(201, 168, 76, 0.6);
   margin-bottom: 20px;
   font-weight: 500;
 }

 .practice-phone a {
   color: inherit;
   text-decoration: none;
 }

 .practice-phone a:hover {
   color: var(--gold);
 }

 .practice-divider {
   width: 36px;
   height: 1px;
   background: var(--gold-dark);
   margin-bottom: 20px;
 }

 .practice-list {
   list-style: none;
 }

 .practice-list li {
   font-size: 0.82rem;
   color: rgba(216, 216, 216, 0.6);
   line-height: 1.6;
   padding: 5px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.04);
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .practice-list li::before {
   content: '—';
   color: var(--gold-dark);
   font-size: 0.7rem;
 }

 /* ── REVIEWS ── */
 #reviews {
   background: var(--charcoal);
 }

 .reviews-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-top: 60px;
 }

 .review-card {
   background: var(--dark);
   padding: 36px 32px;
   border-top: 1px solid rgba(201, 168, 76, 0.2);
   position: relative;
 }

 .review-quote {
   font-family: 'Cormorant Garamond', serif;
   font-size: 4rem;
   color: rgba(201, 168, 76, 0.15);
   line-height: 0;
   position: absolute;
   top: 30px;
   left: 28px;
 }

 .review-stars {
   color: var(--gold);
   font-size: 0.8rem;
   letter-spacing: 3px;
   margin-bottom: 16px;
 }

 .review-text {
   font-size: 0.85rem;
   line-height: 1.8;
   color: rgba(216, 216, 216, 0.7);
   margin-bottom: 20px;
   font-style: italic;
 }

 .review-author {
   font-size: 0.7rem;
   letter-spacing: 0.15em;
   text-transform: uppercase;
   color: var(--gold);
   font-weight: 500;
 }

 /* ── CONTACT ── */
 #contact {
   background: var(--black);
 }

 .contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   margin-top: 60px;
   align-items: center;
 }

 .contact-info {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }

 .contact-item {
   display: flex;
   gap: 20px;
 }

 .contact-icon {
   width: 44px;
   height: 44px;
   border: 1px solid rgba(201, 168, 76, 0.3);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.1rem;
   flex-shrink: 0;
   color: var(--gold);
 }

 .contact-detail-label {
   font-size: 0.62rem;
   letter-spacing: 0.25em;
   text-transform: uppercase;
   color: rgba(201, 168, 76, 0.6);
   margin-bottom: 6px;
 }

 .contact-detail-val {
   font-size: 0.88rem;
   color: var(--white);
   line-height: 1.6;
 }

 .contact-detail-val a {
   color: inherit;
   text-decoration: none;
   transition: color 0.2s;
 }

 .contact-detail-val a:hover {
   color: var(--gold);
 }

 .hours-table {
   width: 100%;
 }

 .hours-table td {
   font-size: 0.82rem;
   padding: 6px 0;
   color: rgba(216, 216, 216, 0.65);
 }

 .hours-table td:first-child {
   color: var(--white);
   font-weight: 500;
   width: 50%;
 }

 .contact-form-area {
   background: var(--charcoal);
   padding: 48px;
 }

 .form-title {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.6rem;
   color: var(--white);
   margin-bottom: 28px;
   font-weight: 300;
 }

 .form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
   margin-bottom: 16px;
 }

 .form-group {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-bottom: 16px;
 }

 .form-group label {
   font-size: 0.65rem;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   color: rgba(201, 168, 76, 0.7);
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
   background: var(--dark);
   border: 1px solid rgba(255, 255, 255, 0.08);
   color: var(--white);
   padding: 14px 16px;
   font-family: 'Montserrat', sans-serif;
   font-size: 0.85rem;
   font-weight: 300;
   outline: none;
   transition: border-color 0.3s;
   -webkit-appearance: none;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
   border-color: var(--gold);
 }

 .form-group textarea {
   resize: vertical;
   min-height: 120px;
 }

 .form-group select option {
   background: var(--dark);
 }

 .btn-submit {
   background: var(--gold);
   color: var(--black);
   border: none;
   padding: 16px 44px;
   font-size: 0.72rem;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   font-weight: 600;
   font-family: 'Montserrat', sans-serif;
   cursor: pointer;
   transition: all 0.3s;
   width: 100%;
   margin-top: 8px;
 }

 .btn-submit:hover {
   background: var(--gold-light);
   box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
 }

 .contact-map-info {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .map-container {
   margin-top: 20px;
   border-radius: 10px;
   overflow: hidden;
   height: 300px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
 }

 /* ── FOOTER ── */
 footer {
   background: var(--charcoal);
   border-top: 1px solid rgba(201, 168, 76, 0.15);
   padding: 50px 60px 30px;
 }

 .footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr;
   gap: 60px;
   margin-bottom: 40px;
 }

 .footer-brand {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.3rem;
   color: var(--gold);
   font-weight: 600;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   margin-bottom: 14px;
 }

 .footer-brand span {
   display: block;
   font-size: 0.6rem;
   font-weight: 300;
   letter-spacing: 0.3em;
   color: var(--text);
   margin-top: 2px;
   font-family: 'Montserrat', sans-serif;
 }

 .footer-desc {
   font-size: 0.82rem;
   color: rgba(216, 216, 216, 0.5);
   line-height: 1.8;
   margin-bottom: 20px;
   max-width: 300px;
 }

 .footer-col-title {
   font-size: 0.65rem;
   letter-spacing: 0.3em;
   text-transform: uppercase;
   color: var(--gold);
   margin-bottom: 18px;
 }

 .footer-links {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .footer-links a {
   color: rgba(216, 216, 216, 0.5);
   text-decoration: none;
   font-size: 0.82rem;
   transition: color 0.2s;
 }

 .footer-links a:hover {
   color: var(--gold);
 }

 .footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.06);
   padding-top: 24px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 50px;
 }

 .footer-copy {
   font-size: 0.7rem;
   color: rgba(216, 216, 216, 0.3);
   letter-spacing: 0.1em;
 }

 .footer-disclaimer {
   font-size: 0.65rem;
   color: rgba(216, 216, 216, 0.25);
   width: 100%;
   text-align: center;
   line-height: 1.5;
 }

 /* ── FLOATING CTA BAR ── */
 .cta-bar {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   z-index: 99;
   background: rgba(10, 10, 10, 0.95);
   backdrop-filter: blur(10px);
   border-top: 1px solid rgba(201, 168, 76, 0.25);
   display: flex;
   justify-content: center;
   gap: 0;
   transform: translateY(100%);
   transition: transform 0.5s ease;
 }

 .cta-bar.visible {
   transform: translateY(0);
 }

 .cta-bar-item {
   flex: 1;
   max-width: 220px;
   padding: 14px 20px;
   text-align: center;
   border-right: 1px solid rgba(201, 168, 76, 0.1);
   text-decoration: none;
   transition: background 0.2s;
 }

 .cta-bar-item:hover {
   background: rgba(201, 168, 76, 0.08);
 }

 .cta-bar-label {
   font-size: 0.55rem;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   color: var(--gold);
   display: block;
   margin-bottom: 2px;
 }

 .cta-bar-num {
   font-size: 0.9rem;
   color: var(--white);
   font-weight: 500;
 }

 /* ── ANIMATIONS ── */
 @keyframes fadeDown {
   from {
     opacity: 0;
     transform: translateY(-20px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes expandWidth {
   from {
     width: 0;
   }

   to {
     width: 80px;
   }
 }

 .reveal {
   opacity: 0;
   transform: translateY(30px);
   transition: all 0.8s ease;
 }

 .reveal.visible {
   opacity: 1;
   transform: translateY(0);
 }



 /* --- Desktop Adjustments --- */
 .menu-icon {
   display: none;
   cursor: pointer;
   flex-direction: column;
   gap: 5px;
 }

 .menu-icon span {
   width: 25px;
   height: 2px;
   background: var(--gold);
   transition: 0.3s;
 }

 .nav-mobile-cta {
   display: none;
 }

 /* Hide mobile-only link on desktop */

 /* ── BACK TO TOP ── */
 .back-to-top {
   position: fixed;
   bottom: 85px;
   /* Sits above the CTA bar */
   right: 20px;
   width: 45px;
   height: 45px;
   background: var(--gold);
   color: var(--black);
   border: none;
   border-radius: 50%;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
   font-weight: bold;
   opacity: 0;
   /* Hidden by default */
   visibility: hidden;
   transition: all 0.4s ease;
   z-index: 98;
   /* Just below the CTA bar and Nav */
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
 }

 .back-to-top.show {
   opacity: 1;
   visibility: visible;
 }

 .back-to-top:hover {
   background: var(--gold-light);
   transform: translateY(-5px);
 }

 /* ── MOBILE ── */
 @media (max-width: 900px) {
   h2 {
     font-size: 0.8rem;
     font-weight: 500;
     font-size: 0.8rem;
     letter-spacing: 0.25em;
   }

   nav {
     padding: 18px 24px;
   }

   .nav-links {
     display: none;
   }

   section {
     padding: 70px 24px;
   }

   #hero {
     padding: 100px 24px 80px;
     display: block;
   }

   .hero-image {
     width: 96%;
     background-size: cover;
     background-position: center;
     height: 75%;
     opacity: .4;
     top: 8%;
     right: -25%;
     -webkit-mask-image:
       radial-gradient(circle at center, black 50%, transparent 100%),
       linear-gradient(to right, transparent, black 15%, black 85%, transparent);
     -webkit-mask-composite: intersect;

     mask-image:
       radial-gradient(circle at center, black 50%, transparent 100%),
       linear-gradient(to right, transparent, black 15%, black 85%, transparent);
     mask-composite: intersect;
   }

   .hero-sub {
     width: 43%;
   }

   .hero-desc {
     padding-top: 10%;
   }

   .about-grid,
   .contact-grid {
     grid-template-columns: 1fr;
     gap: 40px;
   }

   .practice-grid {
     grid-template-columns: 1fr;
   }

   .reviews-grid {
     grid-template-columns: 1fr;
   }

   .map-container {
     height: 200px;
   }

   .footer-grid {
     grid-template-columns: 1fr;
     gap: 30px;
   }

   .footer-bottom {
     flex-direction: column;
     gap: 12px;
     text-align: center;
   }

   .footer-disclaimer {
     text-align: center;
   }

   .hero-rating {
     position: absolute;
     text-align: left;
     margin-top: 40px;
     left: 2em;
   }

   .form-row {
     grid-template-columns: 1fr;
   }

   .about-stats {
     grid-template-columns: 1fr 1fr;
   }

   .cta-bar-item {
     padding: 10px 12px;
   }

   .cta-bar-num {
     font-size: 0.75rem;
   }

   .cta-bar-label {
     font-size: 0.5rem;
   }

   .nav-cta {
     display: none;
   }

   /* Hide the main button on mobile */

   .menu-icon {
     display: flex;
     z-index: 1001;
   }

   .nav-links {
     display: flex;
     /* Override display:none */
     position: fixed;
     top: 0;
     right: -100%;
     /* Start off-screen */
     width: 80%;
     height: 100vh;
     background: var(--charcoal);
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 40px;
     transition: 0.4s ease-in-out;
     box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
     z-index: 1000;
   }

   .nav-links.active {
     right: 0;
     /* Slide in */
   }

   .nav-mobile-cta {
     display: block;
     color: var(--gold) !important;
     border: 1px solid var(--gold);
     padding: 10px 20px;
     margin-top: 20px;
   }

   /* Hamburger Animation to 'X' */
   .menu-icon.active span:nth-child(1) {
     transform: translateY(7px) rotate(45deg);
   }

   .menu-icon.active span:nth-child(2) {
     opacity: 0;
   }

   .menu-icon.active span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg);
   }

   .back-to-top {
     bottom: 100px;
   }

   .map-container {
     position: relative;
     padding-bottom: 56.25%;
     /* 16:9 Aspect Ratio */
     height: 0;
     overflow: hidden;
     border-radius: 10px;
   }

   .map-container iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100% !important;
     height: 100% !important;
   }

 }