    :root {
      --gold: #b8960c;
      --gold-light: #d4af37;
      --gold-pale: #f5e9b8;
      --dark: #0d0d0d;
      --dark2: #161616;
      --dark3: #1e1e1e;
      --cream: #faf6ee;
      --text-muted: #999;
      --white: #ffffff;
      --border: rgba(184,150,12,0.25);
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--dark);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

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

    /* ─── HEADER / NAV ─── */
    header {
      position: fixed; top: 0; width: 100%; z-index: 1000;
      background: rgba(13,13,13,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 5%;
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
    }
    .logo {
      display: flex; align-items: center; gap: 14px; text-decoration: none;
    }
    .logo-emblem {
      width: 48px; height: 48px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 900;
      color: var(--gold);
      position: relative; overflow: hidden;
      background: linear-gradient(135deg,#1a1500,#0d0d0d);
      flex-shrink: 0;
    }
    .logo-emblem::after {
      content: '';
      position: absolute; inset: 3px;
      border: 1px solid rgba(184,150,12,0.3);
      border-radius: 50%;
    }
    .logo-text { line-height: 1.2; }
    .logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 18px; font-weight: 700;
      color: var(--white); letter-spacing: 1px;
    }
    .logo-tagline {
      font-size: 11px; letter-spacing: 2.5px;
      color: var(--gold); text-transform: uppercase;
    }
    nav { display: flex; align-items: center; gap: 6px; }
    nav a {
      text-decoration: none; color: rgba(255,255,255,0.75);
      font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
      text-transform: uppercase; padding: 8px 14px;
      border-radius: 2px;
      transition: color .3s;
    }
    nav a:hover { color: var(--gold-light); }
    .nav-cta {
      background: var(--gold) !important;
      color: var(--dark) !important;
      padding: 9px 20px !important;
      font-weight: 600 !important;
      transition: background .3s !important;
    }
    .nav-cta:hover { background: var(--gold-light) !important; }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex; align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(135deg,rgba(13,13,13,0.97) 45%,rgba(30,20,0,0.85) 100%);
      z-index: 1;
    }
    .hero-img {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1800&q=80');
      background-size: cover; background-position: center;
      opacity: 0.18;
    }
    .hero-pattern {
      position: absolute; inset: 0; z-index: 1;
      background-image:
        repeating-linear-gradient(0deg,transparent,transparent 59px,rgba(184,150,12,0.04) 59px,rgba(184,150,12,0.04) 60px),
        repeating-linear-gradient(90deg,transparent,transparent 59px,rgba(184,150,12,0.04) 59px,rgba(184,150,12,0.04) 60px);
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 780px; padding: 0 5%;
      margin-top: 72px;
      animation: fadeUp 1s ease both;
    }
    @keyframes fadeUp {
      from { opacity:0; transform:translateY(40px); }
      to   { opacity:1; transform:translateY(0); }
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid var(--border);
      padding: 6px 16px; border-radius: 20px;
      font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 32px;
      background: rgba(184,150,12,0.06);
    }
    .hero-badge::before {
      content: ''; width: 6px; height: 6px;
      background: var(--gold); border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100%{opacity:1;transform:scale(1)}
      50%{opacity:.4;transform:scale(.6)}
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(42px, 6vw, 80px);
      font-weight: 900; line-height: 1.05;
      margin-bottom: 10px;
    }
    .hero h1 em {
      font-style: italic; color: var(--gold-light);
      display: block;
    }
    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(16px,2vw,22px);
      color: rgba(255,255,255,0.6);
      font-weight: 300; letter-spacing: 1px;
      margin-bottom: 40px; max-width: 560px;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold);
      color: var(--dark);
      border: none; cursor: pointer;
      padding: 15px 36px;
      font-family: 'Montserrat',sans-serif;
      font-size: 11px; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      text-decoration: none;
      transition: all .3s;
      clip-path: polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px));
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-outline {
      border: 1px solid var(--border);
      color: var(--white); background: transparent;
      padding: 15px 36px;
      font-family: 'Montserrat',sans-serif;
      font-size: 11px; font-weight: 500;
      letter-spacing: 2px; text-transform: uppercase;
      text-decoration: none;
      transition: all .3s;
      clip-path: polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px));
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    /* ─── STATS BAR ─── */
    .stats-bar {
      background: var(--gold);
      padding: 20px 5%;
    }
    .stats-inner {
      display: flex; justify-content: center;
      flex-wrap: wrap; gap: 0;
      max-width: 1100px; margin: 0 auto;
    }
    .stat {
      flex: 1 1 200px;
      text-align: center; padding: 12px 24px;
      border-right: 1px solid rgba(0,0,0,0.15);
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'Playfair Display',serif;
      font-size: 32px; font-weight: 900;
      color: var(--dark); line-height: 1;
    }
    .stat-label {
      font-size: 10px; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(0,0,0,0.65);
      margin-top: 4px;
    }

    /* ─── SECTION COMMON ─── */
    section { padding: 100px 5%; }
    .section-eyebrow {
      font-size: 10px; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display',serif;
      font-size: clamp(28px,4vw,52px);
      font-weight: 700; line-height: 1.15;
      margin-bottom: 20px;
    }
    .section-title span { color: var(--gold-light); font-style: italic; }
    .section-lead {
      font-family: 'Cormorant Garamond',serif;
      font-size: 18px; color: rgba(255,255,255,0.55);
      max-width: 560px; line-height: 1.7;
    }
    .gold-rule {
      width: 60px; height: 2px;
      background: var(--gold); margin: 24px 0;
    }

    /* ─── ABOUT ─── */
    #about { background: var(--dark2); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      max-width: 1200px; margin: 0 auto;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img {
      width: 100%; height: 520px;
      object-fit: cover;
      filter: grayscale(20%) contrast(1.1);
      clip-path: polygon(0 0,92% 0,100% 8%,100% 100%,8% 100%,0 92%);
    }
    .about-img-badge {
      position: absolute; bottom: -24px; right: -24px;
      width: 140px; height: 140px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
    }
    .about-img-badge strong {
      font-family: 'Playfair Display',serif;
      font-size: 36px; color: var(--dark);
    }
    .about-img-badge span {
      font-size: 9px; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(0,0,0,0.65);
    }
    .about-list { list-style: none; margin-top: 28px; }
    .about-list li {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 12px 0; border-bottom: 1px solid var(--border);
      font-size: 14px; color: rgba(255,255,255,0.75);
    }
    .about-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
    .highlight-bar {
      background: rgba(184,150,12,0.08);
      border-left: 3px solid var(--gold);
      padding: 20px 24px; margin-top: 32px;
      font-family: 'Cormorant Garamond',serif;
      font-size: 17px; font-style: italic;
      color: rgba(255,255,255,0.7);
    }

    /* ─── SERVICES ─── */
    #services { background: var(--dark); }
    .services-header { max-width: 1200px; margin: 0 auto 60px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
      gap: 2px;
      max-width: 1200px; margin: 0 auto;
    }
    .service-card {
      background: var(--dark3);
      padding: 40px 36px;
      position: relative; overflow: hidden;
      transition: all .4s;
      cursor: default;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 3px; height: 0;
      background: var(--gold);
      transition: height .4s;
    }
    .service-card:hover::before { height: 100%; }
    .service-card:hover { background: #1c1c1c; transform: translateY(-4px); }
    .service-icon {
      width: 56px; height: 56px;
      border: 1px solid var(--border);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      font-size: 22px; color: var(--gold);
      background: rgba(184,150,12,0.06);
      transition: background .4s;
    }
    .service-card:hover .service-icon { background: rgba(184,150,12,0.15); }
    .service-card h3 {
      font-family: 'Playfair Display',serif;
      font-size: 20px; font-weight: 700;
      margin-bottom: 12px;
    }
    .service-card p {
      font-size: 13px; color: rgba(255,255,255,0.55);
      line-height: 1.75;
    }
    .service-card ul {
      list-style: none; margin-top: 16px;
    }
    .service-card ul li {
      font-size: 12px; color: rgba(255,255,255,0.45);
      padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
      padding-left: 14px; position: relative;
    }
    .service-card ul li::before {
      content: '›'; position: absolute; left: 0;
      color: var(--gold);
    }

    /* ─── HIGH COURT SECTION ─── */
    #highcourt {
      background: linear-gradient(135deg,#0a0800 0%,#1a1200 50%,#0a0800 100%);
      position: relative; overflow: hidden;
    }
    #highcourt::before {
      content: '';
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1400&q=60');
      background-size: cover; background-position: center;
      opacity: 0.06;
    }
    .highcourt-inner {
      position: relative; z-index: 2;
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .court-badge-wrap { text-align: center; }
    .court-seal {
      width: 200px; height: 200px;
      border: 3px solid var(--gold);
      border-radius: 50%;
      margin: 0 auto 32px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      background: rgba(184,150,12,0.06);
      position: relative;
    }
    .court-seal::before {
      content:'';
      position:absolute; inset:8px;
      border: 1px solid rgba(184,150,12,0.4);
      border-radius:50%;
    }
    .court-seal i { font-size: 60px; color: var(--gold); }
    .court-seal-text {
      font-family: 'Playfair Display',serif;
      font-size: 13px; letter-spacing: 1px;
      color: var(--gold-light); margin-top: 8px;
    }
    .court-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
    .court-feature {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 20px; background: rgba(184,150,12,0.05);
      border: 1px solid var(--border);
    }
    .court-feature i { color: var(--gold); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
    .court-feature h4 {
      font-family: 'Playfair Display',serif;
      font-size: 15px; margin-bottom: 4px;
    }
    .court-feature p { font-size: 12px; color: rgba(255,255,255,0.5); }

    /* ─── TEAM ─── */
    #team { background: var(--dark2); }
    .team-header { max-width: 1200px; margin: 0 auto 60px; }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px; max-width: 1200px; margin: 0 auto;
    }
    .team-card {
      background: var(--dark3);
      overflow: hidden;
      position: relative;
      transition: transform .4s;
    }
    .team-card:hover { transform: translateY(-8px); }
    .team-img-wrap { position: relative; overflow: hidden; height: 280px; }
    .team-img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: top;
      filter: grayscale(30%);
      transition: transform .5s, filter .5s;
    }
    .team-card:hover .team-img { transform: scale(1.06); filter: grayscale(0%); }
    .team-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top,rgba(13,13,13,0.9) 0%,transparent 60%);
    }
    .team-info { padding: 24px; }
    .team-name {
      font-family: 'Playfair Display',serif;
      font-size: 20px; font-weight: 700;
    }
    .team-role {
      font-size: 10px; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--gold);
      margin: 6px 0 12px;
    }
    .team-bio { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.7; }
    .team-social {
      display: flex; gap: 10px; margin-top: 16px;
    }
    .team-social a {
      width: 32px; height: 32px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted); font-size: 13px;
      text-decoration: none; transition: all .3s;
    }
    .team-social a:hover { border-color: var(--gold); color: var(--gold); }

    /* ─── TESTIMONIALS ─── */
    #testimonials { background: var(--dark); }
    .testimonials-header { max-width: 1200px; margin: 0 auto 60px; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 24px; max-width: 1200px; margin: 0 auto;
    }
    .testimonial-card {
      background: var(--dark3);
      padding: 36px; position: relative;
      border-top: 2px solid var(--gold);
    }
    .testimonial-card::before {
      content: '\201C';
      position: absolute; top: 12px; right: 24px;
      font-family: 'Playfair Display',serif;
      font-size: 80px; color: rgba(184,150,12,0.12);
      line-height: 1;
    }
    .stars { color: var(--gold); font-size: 13px; margin-bottom: 16px; }
    .testimonial-text {
      font-family: 'Cormorant Garamond',serif;
      font-size: 17px; font-style: italic;
      color: rgba(255,255,255,0.7); line-height: 1.7;
      margin-bottom: 24px;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: 14px;
    }
    .author-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display',serif;
      font-size: 16px; font-weight: 700;
      color: var(--dark); flex-shrink: 0;
    }
    .author-name { font-size: 14px; font-weight: 600; }
    .author-detail { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

    /* ─── CONTACT ─── */
    #contact {
      background: var(--dark2);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px; max-width: 1200px; margin: 0 auto;
    }
    .contact-info-item {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 20px 0; border-bottom: 1px solid var(--border);
    }
    .contact-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 16px;
    }
    .contact-info-item h4 {
      font-size: 10px; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 6px;
    }
    .contact-info-item p, .contact-info-item a {
      font-size: 14px; color: rgba(255,255,255,0.75);
      text-decoration: none; line-height: 1.6;
    }
    .contact-info-item a:hover { color: var(--gold); }

    /* ─── CONTACT FORM ─── */
    .contact-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group label {
      font-size: 10px; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      color: var(--white);
      padding: 14px 16px;
      font-family: 'Montserrat',sans-serif;
      font-size: 13px;
      outline: none;
      transition: border-color .3s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--gold); }
    .form-group textarea { min-height: 130px; resize: vertical; }
    .form-group select option { background: var(--dark3); }

    /* ─── FOOTER ─── */
    footer {
      background: #080808;
      padding: 60px 5% 24px;
      border-top: 1px solid var(--border);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px; max-width: 1200px; margin: 0 auto;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
    }
    .footer-brand p {
      font-size: 13px; color: rgba(255,255,255,0.4);
      line-height: 1.7; margin-top: 16px; margin-bottom: 20px;
    }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a {
      width: 36px; height: 36px; border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted); font-size: 14px; text-decoration: none;
      transition: all .3s;
    }
    .footer-social a:hover { border-color: var(--gold); color: var(--gold); }
    .footer-col h4 {
      font-family: 'Playfair Display',serif;
      font-size: 16px; margin-bottom: 20px;
      color: var(--white);
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      font-size: 13px; color: rgba(255,255,255,0.45);
      text-decoration: none; transition: color .3s;
    }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-bottom {
      max-width: 1200px; margin: 24px auto 0;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
    .footer-bottom a { color: var(--gold); text-decoration: none; }

    /* ─── STICKY CTA ─── */
    .sticky-cta {
      position: fixed; bottom: 28px; right: 28px;
      z-index: 999;
      display: flex; flex-direction: column; gap: 12px;
      align-items: flex-end;
    }
    .sticky-btn {
      display: flex; align-items: center; gap: 10px;
      background: var(--gold); color: var(--dark);
      text-decoration: none; padding: 12px 18px;
      font-size: 12px; font-weight: 600; letter-spacing: 1px;
      box-shadow: 0 8px 32px rgba(184,150,12,0.4);
      transition: all .3s;
    }
    .sticky-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
    .sticky-btn.whatsapp { background: #25D366; box-shadow: 0 8px 32px rgba(37,211,102,0.35); }
    .sticky-btn.whatsapp:hover { background: #22c55e; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .about-grid, .highcourt-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      nav { display: none; }
    }
    @media (max-width: 600px) {
      .footer-top { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .stats-inner { flex-direction: column; }
      .stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.15); }
    }

    /* ─── REVEAL ANIMATION ─── */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }
/* Reduce hero top gap */
.hero-section,
section.hero,
.hero {
    padding-top: 20px !important;
}
