
:root {
      --navy: #071525;
      --navy-mid: #0D2137;
      --navy-light: #122844;
      --gold: #C49A3C;
      --gold-light: #D4AA4E;
      --gold-pale: #F0DFA0;
      --white: #FFFFFF;
      --off-white: #F7F5F0;
      --gray-light: #E8E4DC;
      --gray: #9A9080;
      --text-dark: #1A1208;
      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ─── UTILITY ─── */
    .section-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--navy);
      line-height: 1.2;
      margin-top: 0.5rem;
    }
    .section-title.light { color: var(--white); }
    .section-body {
      font-size: 1.0rem;
      color: var(--gray);
      line-height: 1.8;
      max-width: 600px;
    }
    .gold-line {
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      margin: 1.2rem 0 2rem;
      border-radius: 2px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 2.2rem;
      border-radius: 2px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: var(--transition);
    }
    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy);
      box-shadow: 0 4px 24px rgba(196,154,60,0.3);
    }
    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(196,154,60,0.45);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.6);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--gold);
      color: var(--gold);
    }
    .btn-outline-dark {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--navy);
    }
    .btn-outline-dark:hover {
      background: var(--navy);
      color: var(--white);
    }
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── NAVBAR ─── */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 3.5%;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s, box-shadow 0.4s, height 0.4s;
      background: transparent;
    }
    #navbar.scrolled {
      background: var(--navy);
      box-shadow: 0 4px 40px rgba(0,0,0,0.3);
      height: 68px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }
    .logo-icon {
      width: 42px;
      height: 42px;
      border: 1.5px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--gold);
      font-weight: 700;
      letter-spacing: 0.05em;
    }
    .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--white);
      font-weight: 700;
      letter-spacing: 0.06em;
      padding-right: 15px;
    }
    .logo-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem; /* 2.5*/
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 100%;
      height: 1px;
      background: var(--gold);
      transition: right 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { right: 0; }
    .nav-right { display: flex; align-items: center; gap: 1.5rem; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: var(--transition);
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--navy);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-close {
      position: absolute;
      top: 24px; right: 28px;
      font-size: 2rem;
      color: var(--white);
      cursor: pointer;
    }

    /* ─── HERO ─── */
    #hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #071525 0%, #0D2C4A 50%, #122844 100%);
      z-index: 0;
    }
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1589391886645-d51941baf7fb?w=1800&q=80');
      background-size: cover;
      background-position: center;
      opacity: 0.18;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(7,21,37,0.55) 0%, rgba(7,21,37,0.85) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 5%;
      max-width: 900px;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.3s forwards;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--gold);
    }
    .hero-eyebrow span {
      font-size: 0.72rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      color: var(--white);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 0.4rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.5s forwards;
    }
    .hero-title .gold { color: var(--gold); }
    .hero-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      color: rgba(255,255,255,0.75);
      font-style: italic;
      margin-bottom: 1.5rem;
      letter-spacing: 0.04em;
      opacity: 0;
      animation: fadeUp 0.8s 0.7s forwards;
    }
    .hero-sub {
      font-size: clamp(0.9rem, 1.5vw, 1.05rem);
      color: rgba(255,255,255,0.6);
      max-width: 580px;
      margin: 0 auto 2.5rem;
      line-height: 1.75;
      opacity: 0;
      animation: fadeUp 0.8s 0.9s forwards;
    }
    .hero-buttons {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s 1.1s forwards;
    }
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.5);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, transparent, var(--gold));
    }
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
      from { opacity: 0; transform: translateY(25px); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ─── STAT BAR ─── */
    .stat-bar {
      background: var(--navy-mid);
      border-top: 1px solid rgba(196,154,60,0.2);
      border-bottom: 1px solid rgba(196,154,60,0.2);
      padding: 2rem 5%;
      display: flex;
      justify-content: center;
      gap: 5%;
      flex-wrap: wrap;
    }
    .stat-item {
      text-align: center;
      padding: 0.5rem 1.5rem;
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-top: 0.4rem;
    }

    /* ─── ABOUT ─── */
    #about {
      padding: 120px 5%;
      background: var(--off-white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6%;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    .about-text .section-body { max-width: 100%; margin-bottom: 1.5rem; }
    .about-pillars {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem;
    }
    .pillar {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .pillar-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      font-size: 0.85rem;
    }
    .pillar-text strong {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--navy);
      margin-bottom: 0.2rem;
    }
    .pillar-text span { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }
    /* Carousel */
    .carousel-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      box-shadow: 0 20px 60px rgba(7,21,37,0.15);
    }
    .carousel-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .carousel-slide {
      min-width: 100%;
      aspect-ratio: 4/3;
      overflow: hidden;
    }
    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .carousel-slide:hover img { transform: scale(1.04); }
    .carousel-nav {
      position: absolute;
      bottom: 16px; right: 16px;
      display: flex;
      gap: 8px;
      z-index: 5;
    }
    .carousel-btn {
      width: 36px;
      height: 36px;
      background: rgba(7,21,37,0.75);
      border: 1px solid var(--gold);
      color: var(--gold);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      transition: background 0.3s;
    }
    .carousel-btn:hover { background: var(--gold); color: var(--navy); }
    .carousel-dots {
      position: absolute;
      bottom: 16px; left: 16px;
      display: flex;
      gap: 6px;
    }
    .carousel-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .carousel-dot.active { background: var(--gold); transform: scale(1.3); }

    /* ─── PRACTICE AREAS ─── */
    #practice {
      padding: 120px 5%;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    #practice::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196,154,60,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .practice-header {
      text-align: center;
      margin-bottom: 4rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    .practice-header .gold-line { margin: 1.2rem auto 1.5rem; }
    .practice-header .section-body { color: rgba(255,255,255,0.55); max-width: 100%; margin: 0 auto; }
    .practice-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
      max-width: 1300px;
      margin: 0 auto;
    }
    .practice-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(196,154,60,0.12);
      padding: 2.2rem;
      cursor: pointer;
      transition: transform 0.35s, background 0.35s, box-shadow 0.35s, border-color 0.35s;
      position: relative;
      overflow: hidden;
    }
    .practice-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transition: width 0.4s;
    }
    .practice-card:hover {
      transform: translateY(-6px) scale(1.015);
      background: rgba(255,255,255,0.08);
      box-shadow: 0 20px 60px rgba(0,0,0,0.35);
      border-color: rgba(196,154,60,0.3);
    }
    .practice-card:hover::before { width: 100%; }
    .practice-icon {
      width: 52px;
      height: 52px;
      background: rgba(196,154,60,0.1);
      border: 1px solid rgba(196,154,60,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--gold);
      margin-bottom: 1.5rem;
      transition: background 0.35s;
    }
    .practice-card:hover .practice-icon { background: rgba(196,154,60,0.2); }
    .practice-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--white);
      margin-bottom: 0.8rem;
      font-weight: 600;
    }
    .practice-card p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
    }
    .practice-card .learn-more {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 1.2rem;
      font-weight: 600;
      opacity: 0;
      transform: translateX(-8px);
      transition: opacity 0.3s, transform 0.3s;
    }
    .practice-card:hover .learn-more { opacity: 1; transform: translateX(0); }

    /* ─── GALLERY ─── */
    #gallery {
      padding: 120px 5%;
      background: var(--off-white);
    }
    .gallery-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .gallery-header .gold-line { margin: 1.2rem auto; }
    .gallery-filters {
      display: flex;
      gap: 0.75rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }
    .filter-btn {
      padding: 0.5rem 1.4rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1.5px solid rgba(7,21,37,0.2);
      background: transparent;
      color: var(--navy);
      cursor: pointer;
      transition: var(--transition);
      border-radius: 2px;
    }
    .filter-btn:hover, .filter-btn.active {
      background: var(--navy);
      color: var(--gold);
      border-color: var(--navy);
    }
    /* Horizontal scroll gallery */
    .gallery-hscroll {
      overflow-x: auto;
      scrollbar-width: none;
      cursor: grab;
      margin-bottom: 2rem;
    }
    .gallery-hscroll::-webkit-scrollbar { display: none; }
    .gallery-hscroll.grabbing { cursor: grabbing; }
    .gallery-hscroll-track {
      display: flex;
      gap: 1rem;
      width: max-content;
      padding: 0.5rem 0;
    }
    .gallery-hscroll-track .g-item {
      width: 300px;
      height: 220px;
      flex-shrink: 0;
    }
    /* Masonry grid */
    .gallery-masonry {
      columns: 4;
      column-gap: 1rem;
      margin-bottom: 2rem;
    }
    .gallery-masonry .g-item {
      break-inside: avoid;
      margin-bottom: 1rem;
    }
    /* g-item shared */
    .g-item {
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .g-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease, filter 0.5s ease;
    }
    .g-item:hover img {
      transform: scale(1.08);
      filter: brightness(0.85);
    }
    .g-item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(7,21,37,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .g-item:hover .g-item-overlay { opacity: 1; }
    .g-item-overlay i { font-size: 1.5rem; color: var(--gold); }
    /* Lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.95);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox-img {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      box-shadow: 0 20px 80px rgba(0,0,0,0.8);
      transition: transform 0.3s;
    }
    .lightbox-close {
      position: absolute;
      top: 24px; right: 32px;
      font-size: 2rem;
      color: var(--white);
      cursor: pointer;
      transition: color 0.3s;
    }
    .lightbox-close:hover { color: var(--gold); }
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      background: rgba(255,255,255,0.08);
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s;
    }
    .lightbox-nav:hover { background: var(--gold); color: var(--navy); }
    .lightbox-prev { left: 24px; }
    .lightbox-next { right: 24px; }
    .lightbox-counter {
      position: absolute;
      bottom: 20px; left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.6);
      font-size: 0.8rem;
      letter-spacing: 0.15em;
    }
    /* Auto scroll strip */
    .gallery-strip-wrap { overflow: hidden; margin-bottom: 2rem; }
    .gallery-strip {
      display: flex;
      gap: 1rem;
      animation: slideStrip 30s linear infinite;
      width: max-content;
    }
    .gallery-strip:hover { animation-play-state: paused; }
    .gallery-strip .g-strip-item {
      width: 240px;
      height: 160px;
      flex-shrink: 0;
      overflow: hidden;
      cursor: pointer;
    }
    .gallery-strip .g-strip-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .gallery-strip .g-strip-item:hover img { transform: scale(1.05); }
    @keyframes slideStrip {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── INSIGHTS ─── */
    #insights {
      padding: 120px 5%;
      background: var(--white);
    }
    .insights-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .insights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .insight-card {
      border: 1px solid var(--gray-light);
      overflow: hidden;
      transition: transform 0.4s, box-shadow 0.4s;
      cursor: pointer;
    }
    .insight-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(7,21,37,0.12);
    }
    .insight-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s;
    }
    .insight-card:hover .insight-img { transform: scale(1.04); }
    .insight-img-wrap { overflow: hidden; }
    .insight-body { padding: 1.8rem; }
    .insight-tag {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 0.7rem;
    }
    .insight-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--navy);
      line-height: 1.4;
      margin-bottom: 0.8rem;
    }
    .insight-preview {
      font-size: 0.87rem;
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 1.4rem;
    }
    .read-more {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 700;
      text-decoration: none;
      transition: color 0.3s, gap 0.3s;
    }
    .read-more:hover { color: var(--gold); gap: 0.7rem; }

    /* ─── TESTIMONIALS ─── */
    #testimonials {
      padding: 120px 5%;
      background: var(--navy-mid);
      position: relative;
      overflow: hidden;
    }
    #testimonials::before {
      content: '"';
      position: absolute;
      top: -60px; left: 5%;
      font-family: 'Playfair Display', serif;
      font-size: 30rem;
      color: rgba(196,154,60,0.04);
      line-height: 1;
      pointer-events: none;
    }
    .testimonials-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .testimonials-header .gold-line { margin: 1.2rem auto; }
    .testimonials-slider {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
    }
    .testimonials-track { overflow: hidden; }
    .testimonials-inner {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .testimonial-card {
      min-width: 100%;
      padding: 3rem 3.5rem;
      text-align: center;
    }
    .t-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.5rem; }
    .t-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.15rem, 2.5vw, 1.6rem);
      color: var(--white);
      line-height: 1.65;
      font-style: italic;
      margin-bottom: 2rem;
    }
    .t-divider {
      width: 36px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 1.5rem;
    }
    .t-name {
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .t-role { font-size: 0.82rem; color: var(--gray); }
    .slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .slider-btn {
      width: 44px;
      height: 44px;
      background: transparent;
      border: 1px solid rgba(196,154,60,0.4);
      color: var(--gold);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, border-color 0.3s;
    }
    .slider-btn:hover { background: rgba(196,154,60,0.15); border-color: var(--gold); }
    .slider-dots { display: flex; gap: 8px; }
    .slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .slider-dot.active { background: var(--gold); transform: scale(1.2); }

    /* ─── CONTACT ─── */
    #contact {
      padding: 120px 5%;
      background: var(--off-white);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6%;
      max-width: 1200px;
      margin: 0 auto;
    }
    .contact-info .section-body { margin-top: 0.5rem; }
    .contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .contact-item-icon {
      width: 42px;
      height: 42px;
      min-width: 42px;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1rem;
    }
    .contact-item-text strong {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 0.3rem;
    }
    .contact-item-text span, .contact-item-text a {
      font-size: 0.92rem;
      color: var(--navy);
      text-decoration: none;
      display: block;
      line-height: 1.6;
    }
    .contact-item-text a:hover { color: var(--gold); }
    .social-links {
      display: flex;
      gap: 0.75rem;
      margin-top: 2rem;
    }
    .social-link {
      width: 40px;
      height: 40px;
      background: var(--navy);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      text-decoration: none;
      transition: background 0.3s, transform 0.3s;
    }
    .social-link:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
    .map-embed {
      margin-top: 2rem;
      width: 100%;
      height: 200px;
      border: none;
      filter: grayscale(30%);
    }
    /* Contact form */
    .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 600;
    }
    .form-group input, .form-group textarea, .form-group select {
      padding: 0.9rem 1.1rem;
      border: 1.5px solid var(--gray-light);
      background: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem;
      color: var(--navy);
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
      border-radius: 0;
      -webkit-appearance: none;
    }
    .form-group input:focus, .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(196,154,60,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 130px; }
    .form-success {
      display: none;
      padding: 1.2rem;
      background: rgba(196,154,60,0.1);
      border: 1px solid var(--gold);
      color: var(--navy);
      font-size: 0.9rem;
      margin-top: 0.5rem;
    }

    /* ─── FOOTER ─── */
    #footer {
      background: var(--navy);
      padding: 70px 5% 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
      gap: 4%;
      max-width: 1300px;
      margin: 0 auto 50px;
    }
    .footer-brand .logo-name { font-size: 1.3rem; }
    .footer-desc {
      font-size: 0.87rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.75;
      margin-top: 1rem;
    }
    .footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
    .footer-social .social-link { width: 34px; height: 34px; font-size: 0.85rem; }
    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem;
      color: var(--white);
      margin-bottom: 1.2rem;
      padding-bottom: 0.7rem;
      border-bottom: 1px solid rgba(196,154,60,0.2);
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-links a {
      text-decoration: none;
      font-size: 0.83rem;
      color: rgba(255,255,255,0.45);
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.8rem; }
    .footer-contact-item i { color: var(--gold); font-size: 0.85rem; margin-top: 2px; }
    .footer-contact-item span, .footer-contact-item a {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

    /* ─── FLOATING BUTTONS ─── */
    .whatsapp-float {
      position: fixed;
      bottom: 32px;
      left: 28px;
      z-index: 800;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: #25D366;
      color: white;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(37,211,102,0.45);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
    .consult-float {
      position: fixed;
      bottom: 32px;
      right: 18px;
      z-index: 800;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .gallery-masonry { columns: 3; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-right .btn { display: none; }
      .hamburger { display: flex; }
      .about-grid, .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .gallery-masonry { columns: 2; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .testimonial-card { padding: 2rem 1.5rem; }
      .practice-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
      .stat-bar { gap: 3%; }
      .stat-num { font-size: 1.8rem; }
    }
    @media (max-width: 480px) {
      .gallery-masonry { columns: 1; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-buttons { flex-direction: column; align-items: center; }
    }
