    :root {
      --navy: #0d1b2a;
      --navy-mid: #162032;
      --gold: #c9a84c;
      --gold-light: #e2c47a;
      --gold-dim: #a8893e;
      --cream: #f5f0e8;
      --cream-dark: #ede5d4;
      --white: #ffffff;
      --text-muted: #8a8a8a;
      --border: rgba(201,168,76,0.25);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--navy);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 80px;
      background: rgba(13,27,42,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }
    .logo {
      display: flex; flex-direction: column; line-height: 1;
    }
    .logo-top {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 700;
      color: var(--gold);
      letter-spacing: 2px;
    }
    .logo-sub {
      font-size: 0.6rem; letter-spacing: 5px;
      color: var(--cream); text-transform: uppercase; margin-top: 2px;
    }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      color: var(--cream); text-decoration: none;
      font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
      font-weight: 500; position: relative; padding-bottom: 4px;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; 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-family: 'Jost', sans-serif; font-size: 0.75rem;
      letter-spacing: 2px; text-transform: uppercase;
      cursor: pointer; transition: all 0.3s;
    }
    .nav-cta:hover { background: var(--gold); color: var(--navy); }

    /* ── HERO SLIDER ── */
    .hero {
      position: relative; height: 100vh; overflow: hidden;
    }
    .slides-container {
      position: relative; height: 100%; width: 100%;
    }
    .slide {
      position: absolute; inset: 0;
      display: flex; align-items: center;
      opacity: 0;
      transition: opacity 1s ease;
      pointer-events: none;
    }
    .slide.active {
      opacity: 1;
      pointer-events: auto;
    }
    .slide-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
    }
    .slide-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(13,27,42,0.92) 45%, rgba(13,27,42,0.3) 100%);
    }
    .slide:nth-child(1) .slide-bg {
      background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80');
    }
    .slide:nth-child(2) .slide-bg {
      background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&q=80');
    }
    .slide:nth-child(3) .slide-bg {
      background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&q=80');
    }
    .slide-content {
      position: relative; z-index: 2;
      padding: 0 8%; max-width: 760px;
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.8s 0.4s, transform 0.8s 0.4s;
    }
    .slide.active .slide-content {
      opacity: 1; transform: translateY(0);
    }
    .slide-tag {
      font-size: 0.68rem; letter-spacing: 5px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.5rem;
      display: flex; align-items: center; gap: 12px;
    }
    .slide-tag::before {
      content: ''; display: inline-block;
      width: 40px; height: 1px; background: var(--gold);
    }
    .slide-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 300; line-height: 1.1;
      color: var(--white); margin-bottom: 1.5rem;
    }
    .slide-title em {
      font-style: italic; color: var(--gold-light);
    }
    .slide-desc {
      font-size: 0.95rem; font-weight: 300;
      color: rgba(245,240,232,0.75); line-height: 1.8;
      max-width: 500px; margin-bottom: 2.5rem;
    }
    .slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold); color: var(--navy);
      padding: 14px 36px; font-family: 'Jost', sans-serif;
      font-size: 0.75rem; letter-spacing: 2.5px;
      text-transform: uppercase; font-weight: 600;
      border: none; cursor: pointer; transition: all 0.3s;
      text-decoration: none; display: inline-block;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-outline {
      background: transparent; color: var(--cream);
      padding: 14px 36px; font-family: 'Jost', sans-serif;
      font-size: 0.75rem; letter-spacing: 2.5px;
      text-transform: uppercase; font-weight: 500;
      border: 1px solid rgba(245,240,232,0.4);
      cursor: pointer; transition: all 0.3s;
      text-decoration: none; display: inline-block;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    /* Slider Controls */
    .slider-controls {
      position: absolute; bottom: 50px; right: 8%;
      z-index: 10; display: flex; align-items: center; gap: 1rem;
    }
    .slider-btn {
      width: 48px; height: 48px; border: 1px solid var(--border);
      background: rgba(13,27,42,0.6); color: var(--gold);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: all 0.3s; font-size: 1.1rem;
    }
    .slider-btn:hover { background: var(--gold); color: var(--navy); }
    .slider-dots {
      position: absolute; bottom: 30px; left: 50%;
      transform: translateX(-50%);
      z-index: 10; display: flex; gap: 10px;
    }
    .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(245,240,232,0.3);
      cursor: pointer; transition: all 0.3s;
    }
    .dot.active { background: var(--gold); width: 24px; border-radius: 3px; }

    /* Progress bar */
    .slide-progress {
      position: absolute; bottom: 0; left: 0;
      height: 3px; background: var(--gold);
      width: 0%; z-index: 10;
    }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--gold);
      padding: 30px 8%;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px;
    }
    .stat {
      text-align: center; padding: 10px 20px;
      border-right: 1px solid rgba(13,27,42,0.2);
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem; font-weight: 700;
      color: var(--navy); line-height: 1;
    }
    .stat-label {
      font-size: 0.68rem; letter-spacing: 2px;
      text-transform: uppercase; color: var(--navy);
      opacity: 0.7; margin-top: 4px;
    }

    /* ── SECTION COMMON ── */
    section { padding: 100px 8%; }
    .section-label {
      font-size: 0.65rem; letter-spacing: 5px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300; line-height: 1.2;
      color: var(--cream); margin-bottom: 1.5rem;
    }
    .section-title span { color: var(--gold); font-style: italic; }
    .divider {
      width: 60px; height: 1px; background: var(--gold);
      margin-bottom: 2rem;
    }

    /* ── ABOUT ── */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .about-img {
      position: relative;
    }
    .about-img img {
      width: 100%; height: 520px;
      object-fit: cover; display: block;
    }
    .about-img-accent {
      position: absolute; bottom: -20px; right: -20px;
      width: 180px; height: 180px;
      border: 2px solid var(--gold); z-index: -1;
    }
    .about-badge {
      position: absolute; top: 30px; left: -25px;
      background: var(--gold); padding: 20px 24px;
      text-align: center;
    }
    .about-badge-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem; font-weight: 700;
      color: var(--navy); line-height: 1;
    }
    .about-badge-text {
      font-size: 0.6rem; letter-spacing: 2px;
      text-transform: uppercase; color: var(--navy);
    }
    .about-text p {
      color: rgba(245,240,232,0.75);
      line-height: 1.9; font-size: 0.95rem;
      margin-bottom: 1.2rem; font-weight: 300;
    }
    .values-list {
      list-style: none; margin-top: 2rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    }
    .values-list li {
      font-size: 0.8rem; letter-spacing: 1px;
      color: var(--cream); display: flex;
      align-items: center; gap: 10px;
    }
    .values-list li::before {
      content: ''; width: 20px; height: 1px;
      background: var(--gold); flex-shrink: 0;
    }

    /* ── PRACTICE AREAS ── */
    #practices { background: var(--navy-mid); }
    .practices-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 20px;
    }
    .practices-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
    }
    .practice-card {
      background: var(--navy);
      padding: 50px 40px;
      transition: all 0.4s;
      position: relative; overflow: hidden;
      cursor: pointer;
    }
    .practice-card::before {
      content: ''; position: absolute;
      bottom: 0; left: 0; width: 100%; height: 3px;
      background: var(--gold); transform: scaleX(0);
      transition: transform 0.4s;
    }
    .practice-card:hover::before { transform: scaleX(1); }
    .practice-card:hover { background: var(--navy-mid); }
    .practice-icon {
      font-size: 2.2rem; margin-bottom: 1.5rem;
      display: block;
    }
    .practice-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem; font-weight: 700;
      color: rgba(201,168,76,0.08);
      position: absolute; top: 20px; right: 30px;
      line-height: 1;
    }
    .practice-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 600;
      color: var(--cream); margin-bottom: 1rem;
    }
    .practice-card p {
      font-size: 0.85rem; color: rgba(245,240,232,0.6);
      line-height: 1.8; font-weight: 300;
    }
    .practice-arrow {
      margin-top: 1.5rem; color: var(--gold);
      font-size: 1.2rem; display: inline-block;
      transition: transform 0.3s;
    }
    .practice-card:hover .practice-arrow { transform: translateX(8px); }

    /* ── ATTORNEYS ── */
    .team-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
      margin-top: 50px;
    }
    .attorney-card { position: relative; overflow: hidden; }
    .attorney-card img {
      width: 100%; height: 380px;
      object-fit: cover; display: block;
      filter: grayscale(30%);
      transition: filter 0.4s, transform 0.4s;
    }
    .attorney-card:hover img { filter: grayscale(0%); transform: scale(1.03); }
    .attorney-overlay {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(13,27,42,0.95) 60%, transparent);
      padding: 30px 25px 25px;
    }
    .attorney-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 600; color: var(--white);
    }
    .attorney-role {
      font-size: 0.68rem; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold); margin-top: 4px;
    }
    .attorney-links {
      margin-top: 12px; display: flex; gap: 10px;
      opacity: 0; transform: translateY(10px);
      transition: all 0.3s;
    }
    .attorney-card:hover .attorney-links { opacity: 1; transform: translateY(0); }
    .attorney-link {
      width: 32px; height: 32px; border: 1px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 0.75rem;
      text-decoration: none; transition: all 0.2s;
    }
    .attorney-link:hover { background: var(--gold); color: var(--navy); }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--navy-mid); }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 30px; margin-top: 50px;
    }
    .testimonial-card {
      border: 1px solid var(--border);
      padding: 40px; position: relative;
    }
    .quote-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 6rem; color: var(--gold);
      line-height: 0.5; margin-bottom: 1.5rem;
      display: block; opacity: 0.5;
    }
    .testimonial-card p {
      font-size: 0.9rem; color: rgba(245,240,232,0.75);
      line-height: 1.9; font-weight: 300; font-style: italic;
    }
    .testimonial-footer {
      margin-top: 1.5rem; padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      display: flex; align-items: center; gap: 14px;
    }
    .testimonial-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      border: 2px solid var(--gold); overflow: hidden;
      background: var(--navy-mid);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--gold);
    }
    .testimonial-name {
      font-size: 0.85rem; font-weight: 600; color: var(--cream);
    }
    .testimonial-role {
      font-size: 0.7rem; color: var(--text-muted); margin-top: 2px;
    }

    /* ── CONTACT ── */
    #contact { background: var(--navy); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 80px; align-items: start;
    }
    .contact-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 400;
      color: var(--cream); margin-bottom: 0.5rem;
    }
    .contact-info p {
      font-size: 0.9rem; color: rgba(245,240,232,0.6);
      line-height: 1.8; margin-bottom: 2rem; font-weight: 300;
    }
    .contact-detail {
      display: flex; align-items: flex-start; gap: 16px;
      margin-bottom: 1.5rem;
    }
    .contact-detail-icon {
      width: 42px; height: 42px; border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); flex-shrink: 0; font-size: 1rem;
    }
    .contact-detail-label {
      font-size: 0.65rem; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
    }
    .contact-detail-value {
      font-size: 0.9rem; color: var(--cream); font-weight: 300;
    }
    .contact-form-wrap {
      background: var(--navy-mid);
      padding: 50px; border: 1px solid var(--border);
    }
    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 400;
      color: var(--cream); margin-bottom: 2rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-size: 0.65rem;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      color: var(--cream); padding: 14px 16px;
      font-family: 'Jost', sans-serif; font-size: 0.9rem;
      outline: none; transition: border-color 0.3s;
      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: 130px; }
    .form-group select option { background: var(--navy); }
    .form-submit {
      width: 100%; background: var(--gold); border: none;
      color: var(--navy); padding: 16px;
      font-family: 'Jost', sans-serif; font-size: 0.78rem;
      letter-spacing: 3px; text-transform: uppercase;
      font-weight: 600; cursor: pointer; transition: all 0.3s;
      margin-top: 10px;
    }
    .form-submit:hover { background: var(--gold-light); }
    .form-success {
      display: none; text-align: center; padding: 20px;
      color: var(--gold); font-size: 0.9rem;
    }

    /* ── FOOTER ── */
    footer {
      background: #070f17;
      padding: 70px 8% 30px;
      border-top: 1px solid var(--border);
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 50px; margin-bottom: 50px;
    }
    .footer-brand p {
      font-size: 0.85rem; color: rgba(245,240,232,0.5);
      line-height: 1.8; font-weight: 300; margin-top: 1rem;
    }
    .footer-heading {
      font-size: 0.65rem; letter-spacing: 3px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(245,240,232,0.55); text-decoration: none;
      font-size: 0.85rem; font-weight: 300;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 25px;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom p {
      font-size: 0.75rem; color: rgba(245,240,232,0.35);
    }

    /* ── SCROLL ANIMATION ── */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s, transform 0.8s;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── MOBILE MENU ── */
    .hamburger {
      display: none; flex-direction: column;
      gap: 5px; cursor: pointer; padding: 5px;
    }
    .hamburger span {
      width: 25px; height: 2px; background: var(--cream);
      transition: all 0.3s;
    }

    /* ── PAGE HERO (subpages) ── */
    .page-hero {
      height: 45vh; display: flex; align-items: flex-end;
      padding: 60px 8%; position: relative;
      background: var(--navy-mid);
      border-bottom: 1px solid var(--border);
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, transparent 60%);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
      .practices-grid { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .practices-grid, .team-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .contact-form-wrap { padding: 30px 20px; }
      section { padding: 70px 5%; }
      nav { padding: 0 5%; }
    }