    :root {
      --navy: #0B1C2C;
      --navy-mid: #102235;
      --gold: #C6A85B;
      --gold-light: #d9bd7e;
      --ivory: #F7F6F3;
      --charcoal: #1A1A1A;
      --teal: #1C4B5C;
      --text-muted: #8a9bb0;
    }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Jost', sans-serif; background: var(--ivory); color: var(--charcoal); overflow-x: hidden; }

    /* CUSTOM CURSOR — desktop only */
    .cursor { z-index: 10002; }
    .cursor-ring { z-index: 10001; }
    @media (pointer: fine) {
      body { cursor: none; }
      .cursor {
        display: block; position: fixed; width: 10px; height: 10px;
        background: var(--gold); border-radius: 50%; pointer-events: none;
        z-index: 9999; transform: translate(-50%,-50%);
        transition: width .3s, height .3s, opacity .3s;
      }
      .cursor-ring {
        display: block; position: fixed; width: 36px; height: 36px;
        border: 1px solid rgba(198,168,91,.5); border-radius: 50%;
        pointer-events: none; z-index: 9998; transform: translate(-50%,-50%);
        transition: width .3s, height .3s;
      }
      a, button, .practice-card, .court-card, .trust-pillar { cursor: none; }
    }

    /* POPUP */
    #popup-overlay {
      position: fixed; inset: 0; background: rgba(5,12,20,.88);
      z-index: 10000; display: flex; align-items: center; justify-content: center;
      padding: 20px; backdrop-filter: blur(6px); animation: fadeIn .4s ease;
    }
    #popup-overlay.hidden { display: none; }
    @keyframes fadeIn { from{opacity:0} to{opacity:1} }
    .popup-box {
      background: var(--navy); border: 1px solid rgba(198,168,91,.25);
      max-width: 480px; width: 100%; padding: clamp(28px,6vw,52px);
      position: relative; animation: popUp .4s cubic-bezier(.23,1,.32,1);
    }
    @keyframes popUp { from{transform:translateY(30px);opacity:0} to{transform:none;opacity:1} }
    .popup-close {
      position: absolute; top: 16px; right: 20px; background: none; border: none;
      color: var(--text-muted); font-size: 1.4rem; line-height: 1; transition: color .3s;
    }
    .popup-close:hover { color: var(--gold); }
    .popup-eyebrow { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
    .popup-title { font-family: 'Playfair Display',serif; font-size: clamp(1.3rem,3vw,1.75rem); color: var(--ivory); margin-bottom: 8px; line-height: 1.2; }
    .popup-sub { font-size: .87rem; color: var(--text-muted); margin-bottom: 26px; line-height: 1.7; }
    .popup-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .popup-btn-primary {
      flex:1; min-width:130px; padding:13px 20px; background:var(--gold); color:var(--navy);
      border:none; font-family:'Jost',sans-serif; font-size:.78rem; letter-spacing:.14em;
      text-transform:uppercase; font-weight:600; text-decoration:none; text-align:center;
      display:inline-block; transition:background .3s;
    }
    .popup-btn-primary:hover { background: var(--gold-light); }
    .popup-btn-ghost {
      flex:1; min-width:130px; padding:12px 20px; border:1px solid rgba(247,246,243,.2);
      color:var(--ivory); background:none; font-family:'Jost',sans-serif; font-size:.78rem;
      letter-spacing:.14em; text-transform:uppercase; transition:border-color .3s, color .3s;
    }
    .popup-btn-ghost:hover { border-color:var(--gold); color:var(--gold); }
    .popup-divider { display:flex; align-items:center; gap:12px; margin:20px 0 14px; }
    .popup-divider::before, .popup-divider::after { content:''; flex:1; height:1px; background:rgba(198,168,91,.15); }
    .popup-divider span { font-size:.7rem; color:var(--text-muted); letter-spacing:.1em; }
    .popup-quick { display:flex; gap:10px; }
    .popup-quick a {
      flex:1; padding:11px; border:1px solid rgba(198,168,91,.15);
      display:flex; align-items:center; justify-content:center; gap:7px;
      text-decoration:none; font-size:.78rem; color:var(--text-muted); transition:border-color .3s, color .3s;
    }
    .popup-quick a:hover { border-color:var(--gold); color:var(--gold); }

    /* FLOATING WHATSAPP BUTTON */
    .float-wa {
      position: fixed; bottom: 24px; right: 24px; z-index: 5000;
      width: 56px; height: 56px; border-radius: 50%; background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none;
      transition: transform .3s, box-shadow .3s;
      animation: floatPulse 3s ease-in-out infinite;
    }
    .float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.65); }
    .float-wa i { font-size: 1.5rem; color: #fff; }
    @keyframes floatPulse {
      0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)}
      50%{box-shadow:0 4px 38px rgba(37,211,102,.7)}
    }

    /* NAV */
    nav {
      position: fixed; top:0; left:0; width:100%; z-index:1000;
      padding: clamp(14px,2.5vw,22px) clamp(20px,5vw,60px);
      display: flex; align-items: center; justify-content: space-between;
      transition: background .4s, padding .4s;
    }
    nav.scrolled { background: rgba(11,28,44,.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(198,168,91,.15); }
    .nav-logo { display:flex; align-items:center; gap:12px; }
    .logo-crest { width:42px; height:42px; border:1.5px solid var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .logo-crest svg { width:26px; height:26px; }
    .logo-text { font-family:'Playfair Display',serif; color:var(--ivory); line-height:1.1; }
    .logo-text .name { font-size:clamp(.82rem,1.5vw,1rem); font-weight:700; letter-spacing:.08em; }
    .logo-text .title { font-size:.6rem; color:var(--gold); letter-spacing:.18em; text-transform:uppercase; }
    .nav-links { display:flex; gap:clamp(18px,3vw,36px); list-style:none; }
    .nav-links a { color:rgba(247,246,243,.75); text-decoration:none; font-size:.77rem; letter-spacing:.14em; text-transform:uppercase; transition:color .3s; position:relative; }
    .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--gold); transition:width .3s; }
    .nav-links a:hover { color:var(--gold); }
    .nav-links a:hover::after { width:100%; }
    .nav-cta { padding:9px 20px; border:1px solid var(--gold); color:var(--gold)!important; transition:background .3s,color .3s!important; }
    .nav-cta:hover { background:var(--gold); color:var(--navy)!important; }
    .nav-cta::after { display:none!important; }
    .nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; padding:4px; }
    .nav-hamburger span { display:block; width:24px; height:1.5px; background:var(--ivory); transition:transform .3s,opacity .3s; }
    .nav-hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity:0; }
    .nav-hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }
    .nav-mobile-menu {
      display:none; position:fixed; top:0; left:0; width:100%; height:100vh;
      background:var(--navy); z-index:999; flex-direction:column; align-items:center; justify-content:center; gap:28px;
    }
    .nav-mobile-menu.open { display:flex; }
    .nav-mobile-menu a { font-family:'Playfair Display',serif; font-size:1.6rem; color:var(--ivory); text-decoration:none; letter-spacing:.06em; transition:color .3s; }
    .nav-mobile-menu a:hover { color:var(--gold); }
    .nav-mobile-socials { display:flex; gap:20px; margin-top:10px; }
    .nav-mobile-socials a { font-size:1.3rem; color:var(--text-muted); text-decoration:none; transition:color .3s; }
    .nav-mobile-socials a:hover { color:var(--gold); }

    /* HERO */
    #hero { min-height:100vh; background:var(--navy); position:relative; display:flex; align-items:center; overflow:hidden; }
    .hero-bg-pattern { position:absolute; inset:0; background-image:radial-gradient(ellipse at 70% 50%,rgba(28,75,92,.35) 0%,transparent 60%),radial-gradient(ellipse at 20% 80%,rgba(198,168,91,.06) 0%,transparent 50%); }
    .hero-grid-lines { position:absolute; inset:0; background-image:linear-gradient(rgba(198,168,91,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(198,168,91,.04) 1px,transparent 1px); background-size:80px 80px; }
    .hero-image-block { position:absolute; right:0; top:0; bottom:0; width:clamp(45%,48%,52%); overflow:hidden; }
    .hero-image-block::before {
      background: linear-gradient(90deg, var(--navy) 0%, rgba(11,28,44,.15) 45%, transparent 100%);
    }
    .hero-image-block img { width:100%; height:100%; object-fit:cover; object-position:center top; }
    .hero-image-placeholder { width:100%; height:100%; background:linear-gradient(135deg,#0d2238,#1a3a52,#0f2840); display:flex; flex-direction:column; align-items:center; justify-content:flex-end; padding:32px; gap:10px; text-align:center; }
    .hero-image-placeholder i { font-size:5rem; color:rgba(198,168,91,.12); }
    .hero-image-placeholder p { font-size:.78rem; color:rgba(198,168,91,.3); line-height:1.6; letter-spacing:.06em; }
    .hero-content { position:relative; z-index:2; padding:clamp(100px,12vw,140px) clamp(20px,6vw,80px) clamp(60px,8vw,100px); max-width:680px; width:100%; }
    .hero-eyebrow { display:flex; align-items:center; gap:14px; margin-bottom:28px; opacity:0; animation:fadeUp .9s .3s forwards; }
    .hero-eyebrow-line { width:40px; height:1px; background:var(--gold); }
    .hero-eyebrow span { font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); }
    .hero-name { font-family:'Playfair Display',serif; font-size:clamp(2.6rem,6vw,5.2rem); font-weight:900; color:var(--ivory); line-height:1.0; margin-bottom:10px; opacity:0; animation:fadeUp .9s .5s forwards; }
    .hero-name span { color:var(--gold); }
    .hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(1rem,2vw,1.3rem); color:var(--text-muted); letter-spacing:.06em; margin-bottom:24px; font-weight:300; opacity:0; animation:fadeUp .9s .65s forwards; }
    .hero-divider { width:60px; height:1px; background:var(--gold); margin-bottom:24px; opacity:0; animation:fadeUp .9s .75s forwards; }
    .hero-tagline { font-size:clamp(.9rem,1.8vw,1.05rem); color:rgba(247,246,243,.65); line-height:1.7; margin-bottom:40px; font-weight:300; max-width:440px; opacity:0; animation:fadeUp .9s .85s forwards; }
    .hero-tagline em { color:var(--gold); font-style:normal; }
    .hero-buttons { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:48px; opacity:0; animation:fadeUp .9s 1s forwards; }
    .btn-primary { padding:14px 28px; background:var(--gold); color:var(--navy); border:none; font-family:'Jost',sans-serif; font-size:.8rem; letter-spacing:.14em; text-transform:uppercase; font-weight:600; text-decoration:none; display:inline-block; transition:background .3s,transform .3s; }
    .btn-primary:hover { background:var(--gold-light); transform:translateY(-2px); }
    .btn-outline { padding:13px 28px; border:1px solid rgba(247,246,243,.3); color:var(--ivory); font-family:'Jost',sans-serif; font-size:.8rem; letter-spacing:.14em; text-transform:uppercase; font-weight:400; text-decoration:none; display:inline-block; transition:border-color .3s,color .3s,transform .3s; }
    .btn-outline:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }
    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px 0;
      width: 100%;
    }
    .hero-stat {
      border-right: none;
      padding-right: 0;
      margin-right: 0;
      padding: 12px 16px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(198,168,91,.12);
    }
    .hero-stat:last-child {
      grid-column: span 2;
    }
    .hero-stat-num { font-family:'Playfair Display',serif; font-size:clamp(1.4rem,3vw,2rem); font-weight:700; color:var(--gold); line-height:1; }
    .hero-stat-label { font-size:.68rem; color:var(--text-muted); letter-spacing:.1em; text-transform:uppercase; margin-top:4px; }
    .hero-socials { display:flex; gap:12px; margin-top:28px; opacity:0; animation:fadeUp .9s 1.3s forwards; }
    .hero-socials a { width:40px; height:40px; border:1px solid rgba(198,168,91,.25); display:flex; align-items:center; justify-content:center; color:var(--text-muted); text-decoration:none; font-size:1rem; transition:border-color .3s,color .3s,background .3s; }
    .hero-socials a:hover { border-color:var(--gold); color:var(--navy); background:var(--gold); }
    .hero-socials a.wa:hover { background:#25D366; border-color:#25D366; color:#fff; }

    /* SCROLL INDICATOR — fixed so it doesn't overlay content */
    .scroll-indicator {
      position: absolute; bottom: 32px; left: clamp(20px,6vw,80px);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      z-index: 3; pointer-events: none;
      opacity: 0; animation: fadeUp 1s 1.5s forwards;
    }
    .scroll-line { width:1px; height:44px; background:linear-gradient(var(--gold),transparent); animation:scrollPulse 2s ease-in-out infinite; }
    .scroll-label { font-size:.6rem; letter-spacing:.2em; text-transform:uppercase; color:var(--text-muted); writing-mode:vertical-rl; margin-top:4px; }
    @keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:.3} }

    /* GOLD SEPARATOR */
    .gold-separator { width:100%; height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent); }

    /* SECTION BASE */
    section { position:relative; }
    .section-eyebrow { display:flex; align-items:center; gap:14px; margin-bottom:16px; }
    .section-eyebrow-line { width:30px; height:1px; background:var(--gold); }
    .section-eyebrow span { font-size:.7rem; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); }
    .section-title { font-family:'Playfair Display',serif; font-size:clamp(1.7rem,3.5vw,3rem); line-height:1.15; margin-bottom:16px; }
    .section-sub { font-size:clamp(.87rem,1.5vw,1rem); line-height:1.8; color:#555; font-weight:300; }

    /* COURTS */
    #courts { background:var(--navy); padding:clamp(60px,8vw,100px) clamp(20px,6vw,80px); }
    .courts-header { margin-bottom:clamp(40px,6vw,70px); }
    .courts-header .section-title { color:var(--ivory); }
    .courts-header .section-sub { color:var(--text-muted); max-width:500px; }
    .courts-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:2px; }
    .court-card { background:rgba(255,255,255,.03); border:1px solid rgba(198,168,91,.1); padding:clamp(28px,4vw,48px) clamp(24px,3vw,40px); position:relative; overflow:hidden; transition:border-color .4s,background .4s; }
    .court-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .4s; }
    .court-card:hover { border-color:rgba(198,168,91,.4); background:rgba(255,255,255,.05); }
    .court-card:hover::before { transform:scaleX(1); }
    .court-icon { width:44px; height:44px; margin-bottom:20px; color:var(--gold); }
    .court-name { font-family:'Playfair Display',serif; font-size:1.15rem; color:var(--ivory); margin-bottom:10px; }
    .court-desc { font-size:.87rem; color:var(--text-muted); line-height:1.8; font-weight:300; }
    .court-number { position:absolute; top:28px; right:28px; font-family:'Playfair Display',serif; font-size:3rem; color:rgba(198,168,91,.07); font-weight:900; }

    /* ABOUT */
    #about { padding:clamp(60px,8vw,120px) clamp(20px,6vw,80px); background:var(--ivory); }
    .about-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,80px); align-items:center; }
    .about-image-wrap { position:relative; }
    .about-image-frame { position:relative; width:100%; padding-bottom:125%; overflow:hidden; }
    .about-image-frame img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center top; }
    .about-image-placeholder { position:absolute; inset:0; background:linear-gradient(135deg,#0d2238,#1a3a52); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; }
    .about-image-placeholder i { font-size:3rem; color:rgba(198,168,91,.2); }
    .about-image-placeholder p { font-size:.75rem; color:rgba(198,168,91,.3); letter-spacing:.1em; text-align:center; padding:0 20px; }
    .about-image-accent { position:absolute; bottom:-16px; right:-16px; width:140px; height:140px; border:1px solid var(--gold); z-index:-1; }
    .about-image-accent2 { position:absolute; top:-16px; left:-16px; width:80px; height:80px; background:var(--gold); opacity:.08; z-index:-1; }
    .about-content .section-title { color:var(--navy); }
    .about-bio { font-family:'Cormorant Garamond',serif; font-size:clamp(1rem,1.8vw,1.15rem); line-height:1.9; color:#444; margin-bottom:32px; }
    .about-credentials { display:flex; flex-direction:column; gap:12px; margin-bottom:36px; }
    .credential-item { display:flex; align-items:center; gap:14px; font-size:.9rem; color:var(--charcoal); }
    .credential-item::before { content:''; width:18px; height:1px; background:var(--gold); flex-shrink:0; }

    /* PRACTICE */
    #practice { padding:clamp(60px,8vw,100px) clamp(20px,6vw,80px); background:#f0ede8; }
    .practice-header { text-align:center; margin-bottom:clamp(40px,6vw,70px); }
    .practice-header .section-eyebrow { justify-content:center; }
    .practice-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; }
    .practice-card { background:var(--ivory); border:1px solid rgba(0,0,0,.08); padding:clamp(28px,4vw,44px) clamp(22px,3vw,32px); position:relative; overflow:hidden; transition:transform .4s cubic-bezier(.23,1,.32,1),box-shadow .4s,border-color .4s; }
    .practice-card::after { content:''; position:absolute; inset:0; border:1.5px solid var(--gold); opacity:0; transition:opacity .4s; }
    .practice-card:hover { transform:translateY(-8px); box-shadow:0 30px 60px rgba(0,0,0,.12); border-color:transparent; }
    .practice-card:hover::after { opacity:1; }
    .practice-card-icon { width:50px; height:50px; background:var(--navy); border-radius:2px; display:flex; align-items:center; justify-content:center; margin-bottom:24px; transition:background .4s; }
    .practice-card:hover .practice-card-icon { background:var(--gold); }
    .practice-card-icon i { font-size:1.1rem; color:var(--gold); transition:color .4s; }
    .practice-card:hover .practice-card-icon i { color:var(--navy); }
    .practice-card-title { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--navy); margin-bottom:10px; }
    .practice-card-desc { font-size:.87rem; color:#777; line-height:1.8; font-weight:300; }
    .practice-card-arrow { margin-top:20px; color:var(--gold); font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; opacity:0; transform:translateX(-8px); transition:opacity .3s,transform .3s; }
    .practice-card:hover .practice-card-arrow { opacity:1; transform:none; }

    /* GALLERY */
    #gallery { padding:clamp(60px,8vw,100px) clamp(20px,6vw,80px); background:var(--navy); }
    .gallery-header { margin-bottom:clamp(36px,5vw,60px); }
    .gallery-header .section-title { color:var(--ivory); }
    .gallery-header .section-sub { color:var(--text-muted); max-width:500px; margin-top:8px; }
    .gallery-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:8px; }
    .gallery-item { position:relative; overflow:hidden; background:rgba(255,255,255,.04); border:1px solid rgba(198,168,91,.08); }
    .gallery-item.big  { grid-column:span 6; grid-row:span 2; min-height:320px; }
    .gallery-item.med  { grid-column:span 4; min-height:200px; }
    .gallery-item.sm   { grid-column:span 3; min-height:180px; }
    .gallery-item.wide { grid-column:span 6; min-height:200px; }
    .gallery-item img  { width:100%; height:100%; object-fit:cover; transition:transform .5s cubic-bezier(.23,1,.32,1); }
    .gallery-item:hover img { transform:scale(1.06); }
    .gallery-item-overlay { position:absolute; inset:0; background:linear-gradient(transparent 50%,rgba(11,28,44,.8) 100%); opacity:0; transition:opacity .4s; display:flex; align-items:flex-end; padding:16px; }
    .gallery-item:hover .gallery-item-overlay { opacity:1; }
    .gallery-item-label { font-size:.72rem; color:var(--gold); letter-spacing:.12em; text-transform:uppercase; }
    .gallery-placeholder { width:100%; height:100%; min-height:inherit; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; padding:20px; }
    .gallery-placeholder i { font-size:1.8rem; color:rgba(198,168,91,.15); }
    .gallery-placeholder p { font-size:.7rem; color:rgba(198,168,91,.2); text-align:center; letter-spacing:.06em; line-height:1.5; }
    .gallery-add-note { margin-top:24px; padding:18px 22px; border:1px dashed rgba(198,168,91,.2); display:flex; align-items:center; gap:14px; }
    .gallery-add-note i { color:var(--gold); font-size:1rem; flex-shrink:0; }
    .gallery-add-note p { font-size:.8rem; color:var(--text-muted); line-height:1.6; }
    .gallery-add-note span { color:var(--gold); }

    /* MEDIA */
    #media { background:#0d2035; padding:clamp(60px,8vw,100px) clamp(20px,6vw,80px); }
    .media-header { margin-bottom:clamp(36px,5vw,60px); }
    .media-header .section-title { color:var(--ivory); }
    .media-stat-bar { display:flex; gap:clamp(24px,4vw,50px); margin-bottom:clamp(36px,5vw,60px); padding-bottom:clamp(28px,4vw,50px); border-bottom:1px solid rgba(198,168,91,.15); flex-wrap:wrap; }
    .media-stat-num { font-family:'Playfair Display',serif; font-size:clamp(2rem,4vw,2.8rem); color:var(--gold); font-weight:700; line-height:1; }
    .media-stat-label { font-size:.72rem; color:var(--text-muted); letter-spacing:.12em; text-transform:uppercase; margin-top:5px; }
    .media-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:16px; }
    .media-card { background:rgba(255,255,255,.04); border:1px solid rgba(198,168,91,.1); padding:clamp(22px,3vw,32px) clamp(20px,2.5vw,28px); display:flex; flex-direction:column; gap:14px; transition:border-color .3s,background .3s; }
    .media-card:hover { border-color:rgba(198,168,91,.4); background:rgba(255,255,255,.07); }
    .media-card-type { font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); }
    .media-card-title { font-family:'Playfair Display',serif; font-size:.98rem; color:var(--ivory); line-height:1.5; }
    .media-card-icon { width:42px; height:42px; border:1px solid rgba(198,168,91,.25); display:flex; align-items:center; justify-content:center; color:var(--gold); margin-top:auto; font-size:1rem; }

    /* TRUST */
    #trust { padding:clamp(60px,8vw,100px) clamp(20px,6vw,80px); background:var(--navy-mid); position:relative; overflow:hidden; }
    #trust::before { content:'RK'; position:absolute; right:-30px; top:50%; transform:translateY(-50%); font-family:'Playfair Display',serif; font-size:clamp(10rem,18vw,22rem); font-weight:900; color:rgba(198,168,91,.03); pointer-events:none; }
    .trust-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,80px); align-items:center; }
    .trust-left .section-title { color:var(--ivory); }
    .trust-left .section-sub { color:var(--text-muted); margin-top:16px; }
    .trust-pillars { display:flex; flex-direction:column; }
    .trust-pillar { display:flex; gap:22px; align-items:flex-start; padding:24px 0; border-bottom:1px solid rgba(198,168,91,.1); transition:padding-left .3s; }
    .trust-pillar:last-child { border-bottom:none; }
    .trust-pillar:hover { padding-left:10px; }
    .trust-pillar-icon { width:40px; height:40px; border:1px solid rgba(198,168,91,.3); display:flex; align-items:center; justify-content:center; color:var(--gold); flex-shrink:0; font-size:.9rem; transition:background .3s; }
    .trust-pillar:hover .trust-pillar-icon { background:var(--gold); color:var(--navy); }
    .trust-pillar-text h4 { font-family:'Playfair Display',serif; color:var(--ivory); font-size:.98rem; margin-bottom:5px; }
    .trust-pillar-text p { font-size:.84rem; color:var(--text-muted); line-height:1.7; font-weight:300; }

    /* CONTACT */
    #contact { padding:clamp(60px,8vw,120px) clamp(20px,6vw,80px); background:var(--ivory); }
    .contact-inner { display:grid; grid-template-columns:1fr 1fr; gap:clamp(36px,6vw,80px); }
    .contact-left .section-title { color:var(--navy); }
    .contact-left .section-sub { margin-top:16px; margin-bottom:40px; }
    .contact-methods { display:flex; flex-direction:column; gap:14px; }
    .contact-method { display:flex; align-items:center; gap:18px; padding:18px 22px; border:1px solid rgba(0,0,0,.08); text-decoration:none; color:var(--charcoal); transition:border-color .3s,transform .3s; }
    .contact-method:hover { border-color:var(--gold); transform:translateX(5px); }
    .contact-method-icon { width:42px; height:42px; background:var(--navy); display:flex; align-items:center; justify-content:center; color:var(--gold); flex-shrink:0; font-size:.95rem; }
    .contact-method-info h4 { font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:#999; margin-bottom:3px; }
    .contact-method-info p { font-size:.92rem; font-weight:500; }
    .wa-badge { margin-left:auto; background:#25D366; color:#fff; padding:4px 10px; font-size:.65rem; letter-spacing:.1em; text-transform:uppercase; border-radius:20px; flex-shrink:0; }
    .contact-right { background:var(--navy); padding:clamp(30px,4vw,56px) clamp(24px,4vw,48px); }
    .contact-form-title { font-family:'Playfair Display',serif; font-size:clamp(1.2rem,2.5vw,1.5rem); color:var(--ivory); margin-bottom:8px; }
    .contact-form-sub { font-size:.84rem; color:var(--text-muted); margin-bottom:30px; line-height:1.7; }
    .form-group { margin-bottom:18px; }
    .form-group label { display:block; font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--text-muted); margin-bottom:7px; }
    .form-group input,.form-group textarea,.form-group select { width:100%; background:rgba(255,255,255,.05); border:1px solid rgba(198,168,91,.15); padding:12px 15px; color:var(--ivory); font-family:'Jost',sans-serif; font-size:.88rem; outline:none; transition:border-color .3s; -webkit-appearance:none; }
    .form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color:var(--gold); }
    .form-group textarea { min-height:100px; resize:vertical; }
    .form-group select option { background:var(--navy); }
    .form-submit { width:100%; padding:15px; background:var(--gold); border:none; color:var(--navy); font-family:'Jost',sans-serif; font-size:.82rem; letter-spacing:.16em; text-transform:uppercase; font-weight:600; transition:background .3s; }
    .form-submit:hover { background:var(--gold-light); }

    /* MAP */
    #map-section { padding:clamp(60px,8vw,100px) clamp(20px,6vw,80px); background:#f0ede8; }
    .map-inner { display:grid; grid-template-columns:1fr 1.6fr; gap:clamp(30px,5vw,60px); align-items:start; }
    .map-info .section-title { color:var(--navy); }
    .map-info .section-sub { margin-top:12px; margin-bottom:28px; }
    .map-address-block { display:flex; flex-direction:column; gap:14px; margin-bottom:28px; }
    .map-address-item { display:flex; gap:14px; align-items:flex-start; }
    .map-address-item i { color:var(--gold); margin-top:3px; flex-shrink:0; width:16px; }
    .map-address-item span { font-size:.9rem; line-height:1.7; color:#444; }
    .map-directions { display:inline-flex; align-items:center; gap:10px; padding:12px 24px; background:var(--navy); color:var(--gold); text-decoration:none; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; transition:background .3s; }
    .map-directions:hover { background:var(--teal); }
    .map-frame-wrap { border:1px solid rgba(0,0,0,.1); overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,.1); }
    .map-frame-wrap iframe { width:100%; height:420px; border:none; display:block; filter:grayscale(15%) contrast(1.05); }

    /* FOOTER */
    footer { background:#060f17; padding:clamp(40px,6vw,60px) clamp(20px,6vw,80px) 28px; }
    .footer-top { display:grid; grid-template-columns:1fr auto auto; gap:clamp(30px,5vw,60px); padding-bottom:36px; border-bottom:1px solid rgba(198,168,91,.1); margin-bottom:24px; }
    .footer-tagline { font-size:.82rem; color:var(--text-muted); margin-top:10px; font-style:italic; font-family:'Cormorant Garamond',serif; }
    .footer-socials { display:flex; gap:10px; margin-top:16px; flex-wrap:wrap; }
    .footer-socials a { width:36px; height:36px; border:1px solid rgba(198,168,91,.2); display:flex; align-items:center; justify-content:center; color:var(--text-muted); text-decoration:none; font-size:.9rem; transition:border-color .3s,color .3s; }
    .footer-socials a:hover { border-color:var(--gold); color:var(--gold); }
    .footer-col h5 { font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
    .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
    .footer-col ul a { font-size:.84rem; color:var(--text-muted); text-decoration:none; transition:color .3s; }
    .footer-col ul a:hover { color:var(--ivory); }
    .footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
    .footer-copy { font-size:.76rem; color:rgba(138,155,176,.5); }
    .footer-copy span { color:var(--gold); }

    /* ANIMATIONS */
    @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
    .reveal { opacity:0; transform:translateY(38px); transition:opacity .8s cubic-bezier(.23,1,.32,1),transform .8s cubic-bezier(.23,1,.32,1); }
    .reveal.revealed { opacity:1; transform:none; }
    .reveal-delay-1{transition-delay:.1s} .reveal-delay-2{transition-delay:.2s} .reveal-delay-3{transition-delay:.3s} .reveal-delay-4{transition-delay:.4s}

    /* RESPONSIVE */
    @media(max-width:1024px){
      .about-grid{grid-template-columns:1fr}
      .about-image-frame{padding-bottom:70%}
      .trust-grid{grid-template-columns:1fr}
      .contact-inner{grid-template-columns:1fr}
      .map-inner{grid-template-columns:1fr}
      .map-frame-wrap iframe{height:300px}
      .footer-top{grid-template-columns:1fr 1fr}
    }
    @media(max-width:768px){
        .hero-eyebrow { margin-bottom: 14px; }
        .hero-eyebrow span { font-size: .62rem; letter-spacing: .14em; }
        .hero-content { padding: 0 18px 44px; padding-top: 72px; }
        .hero-image-block { height: 100vh; }
      .nav-links{display:none}
      .nav-hamburger{display:flex}
      #hero{align-items:flex-end}
      .hero-image-block{width:100%}
        .hero-image-block::before {
        background: linear-gradient(0deg, var(--navy) 30%, rgba(11,28,44,.45) 60%, rgba(11,28,44,.1) 100%);
        }
      .hero-content{padding:0 20px 56px;max-width:100%}
      .gallery-item.big{grid-column:span 12}
      .gallery-item.med{grid-column:span 6}
      .gallery-item.sm{grid-column:span 6}
      .gallery-item.wide{grid-column:span 12}
      .footer-top{grid-template-columns:1fr}
      .footer-bottom{flex-direction:column;align-items:flex-start}
      .scroll-indicator{display:none}
    }
    @media(max-width:480px){
      .hero-buttons{flex-direction:column}
      .hero-buttons a{text-align:center}
      .hero-stat{border-right:none;padding-right:0;margin-right:0}
      .gallery-item.med,.gallery-item.sm{grid-column:span 12}
      .popup-actions{flex-direction:column}
      .popup-quick{flex-direction:column}
    }
    @media(min-width:1920px){
      nav,#courts,#about,#practice,#gallery,#media,#trust,#contact,#map-section,footer{padding-left:140px;padding-right:140px}
      .hero-content{padding-left:140px}
    }