*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --copper:       #e07b39;
      --copper-light: #f0a060;
      --copper-dark:  #b85c1a;
      --ink:          #0a0a0a;
      --ink-card:     rgba(20,16,12,0.95);
      --cream:        #f5f0e8;
      --border:       rgba(224,123,57,0.18);
    }
    html { scroll-behavior: smooth; }
    body { background: var(--ink); color: var(--cream); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; line-height: 1.75; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    ::selection { background: var(--copper); color: #0a0a0a; }
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--ink); }
    ::-webkit-scrollbar-thumb { background: var(--copper-dark); border-radius: 2px; }

    /* NAVBAR */
    #navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.4s, box-shadow 0.4s; }
    #navbar.scrolled { background: rgba(10,9,8,0.96); backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--border); }
    .nav-link { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.7); transition: color 0.3s; position: relative; padding-bottom: 2px; text-decoration: none; }
    .nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--copper); transition: width 0.35s; }
    .nav-link:hover { color: var(--copper); }
    .nav-link:hover::after { width: 100%; }
    .nav-link.active { color: var(--copper); }
    .nav-link.active::after { width: 100%; }

    /* HAMBURGER */
    .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: all 0.35s; transform-origin: center; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* MOBILE MENU */
    #mobile-menu { display: none; position: fixed; inset: 0; background: rgba(8,7,6,0.98); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; overflow-y: auto; }
    #mobile-menu.open { display: flex; }
    .mobile-nav-link { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--cream); transition: color 0.3s; text-decoration: none; }
    .mobile-nav-link:hover { color: var(--copper); }

    /* MEGA DROPDOWN */
    .has-dropdown { position: relative; }
    .mega-drop { position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%) translateY(6px); background: rgba(12,10,8,0.98); border: 1px solid rgba(224,123,57,0.18); backdrop-filter: blur(24px); display: flex; min-width: 680px; opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; z-index: 300; box-shadow: 0 24px 60px rgba(0,0,0,0.7); }
    .has-dropdown.open .mega-drop { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
    .mega-drop::before { content: ''; position: absolute; top: -20px; left: 0; right: 0; height: 20px; background: transparent; }
    .drop-tabs { width: 185px; flex-shrink: 0; border-right: 1px solid rgba(224,123,57,0.12); padding: 1rem 0; }
    .drop-tab { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 1.25rem; font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; color: rgba(245,240,232,0.5); cursor: pointer; transition: color 0.2s, background 0.2s; border-left: 2px solid transparent; user-select: none; }
    .drop-tab:hover, .drop-tab.active { color: var(--copper); background: rgba(224,123,57,0.06); border-left-color: var(--copper); }
    .drop-panels { flex: 1; padding: 0.75rem 0; }
    .drop-panel { display: none; }
    .drop-panel.active { display: block; }
    .drop-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(245,240,232,0.65); transition: color 0.2s, background 0.2s, padding-left 0.2s; border-bottom: 1px solid rgba(224,123,57,0.06); text-decoration: none; }
    .drop-item:last-child { border-bottom: none; }
    .drop-item::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--copper); opacity: 0; flex-shrink: 0; transition: opacity 0.2s; }
    .drop-item:hover { color: var(--copper-light); background: rgba(224,123,57,0.05); padding-left: 1.75rem; }
    .drop-item:hover::before { opacity: 1; }
    .drop-item.current { color: var(--copper); background: rgba(224,123,57,0.08); border-left: 2px solid var(--copper); }

    /* MOBILE ACCORDION */
    .mob-drop-section { width: 100%; text-align: center; }
    .mob-drop-toggle { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--cream); transition: color 0.3s; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; margin: 0 auto; }
    .mob-drop-toggle:hover { color: var(--copper); }
    .mob-sub { display: none; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; max-height: 50vh; overflow-y: auto; padding-bottom: 0.5rem; }
    .mob-sub.open { display: flex; }
    .mob-sub a { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: rgba(245,240,232,0.6); transition: color 0.2s; text-decoration: none; }
    .mob-sub a:hover, .mob-sub a.current { color: var(--copper); }
    .mob-sub-head { font-family: 'Inter', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); margin-top: 0.75rem; }

    /* BUTTONS */
    .btn-copper { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.875rem 2.25rem; background: var(--copper); color: #0a0a0a; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; transition: background 0.3s, box-shadow 0.3s, transform 0.2s; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); }
    .btn-copper:hover { background: var(--copper-light); box-shadow: 0 0 40px rgba(224,123,57,0.4); transform: translateY(-2px); }
    .btn-outline { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.875rem 2.25rem; background: transparent; color: var(--copper); font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--copper); cursor: pointer; text-decoration: none; transition: background 0.3s, color 0.3s, transform 0.2s; }
    .btn-outline:hover { background: var(--copper); color: #0a0a0a; transform: translateY(-2px); }

    /* PAGE HERO */
    .page-hero { background-image: linear-gradient(135deg, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.72) 60%, rgba(10,9,8,0.9) 100%), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; padding: 150px 0 80px; position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(224,123,57,0.02) 0px, rgba(224,123,57,0.02) 1px, transparent 1px, transparent 80px); pointer-events: none; }

    /* SIDEBAR */
    .sidebar-nav { border: 1px solid rgba(224,123,57,0.12); background: var(--ink-card); }
    .sidebar-nav-title { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(224,123,57,0.1); }
    .sidebar-link { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(245,240,232,0.6); border-bottom: 1px solid rgba(224,123,57,0.06); text-decoration: none; transition: color 0.2s, background 0.2s, padding-left 0.2s; }
    .sidebar-link:last-child { border-bottom: none; }
    .sidebar-link:hover { color: var(--copper); background: rgba(224,123,57,0.04); padding-left: 1.75rem; }
    .sidebar-link.active { color: var(--copper); background: rgba(224,123,57,0.08); border-left: 2px solid var(--copper); font-weight: 600; }

    /* CONTENT */
    .content-body p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; line-height: 1.85; color: rgba(245,240,232,0.72); margin-bottom: 1.5rem; }
    .content-body h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; margin-top: 2.5rem; }

    /* SERVICE LIST */
    .service-list-item { display: flex; align-items: flex-start; gap: 1.1rem; padding: 1.1rem 1.5rem; border-bottom: 1px solid rgba(224,123,57,0.07); }
    .service-list-item:last-child { border-bottom: none; }
    .sli-icon { width: 36px; height: 36px; flex-shrink: 0; border: 1px solid rgba(224,123,57,0.3); display: flex; align-items: center; justify-content: center; color: var(--copper); margin-top: 2px; }

    /* STATS */
    .stat-pill { padding: 1.5rem 1.75rem; text-align: center; position: relative; overflow: hidden; transition: transform 0.3s; border-right: 1px solid rgba(224,123,57,0.08); }
    .stat-pill:last-child { border-right: none; }
    .stat-pill::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--copper), transparent); transition: width 0.4s; }
    .stat-pill:hover { transform: translateY(-3px); }
    .stat-pill:hover::before { width: 100%; }

    /* BENEFIT CARDS */
    .benefit-card { background: rgba(20,16,12,0.8); border: 1px solid rgba(224,123,57,0.1); padding: 1.5rem; transition: border-color 0.3s, transform 0.3s; }
    .benefit-card:hover { border-color: rgba(224,123,57,0.3); transform: translateY(-3px); }

    /* COURT LIST */
    .court-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(224,123,57,0.07); font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: rgba(245,240,232,0.7); }
    .court-item:last-child { border-bottom: none; }
    .court-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }

    /* CONTACT CARD */
    .contact-card { background: linear-gradient(135deg, rgba(224,123,57,0.08), rgba(10,9,8,0.95)); border: 1px solid rgba(224,123,57,0.2); padding: 2.5rem; }
    .form-input { width: 100%; background: rgba(10,9,8,0.7); border: 1px solid rgba(224,123,57,0.15); color: var(--cream); padding: 0.8rem 1rem; font-family: 'Cormorant Garamond', serif; font-size: 1rem; outline: none; transition: border-color 0.3s; margin-bottom: 1rem; }
    .form-input:focus { border-color: rgba(224,123,57,0.5); }
    .form-input::placeholder { color: rgba(245,240,232,0.25); }
    textarea.form-input { resize: vertical; min-height: 110px; }

    /* RELATED */
    .related-card { background: var(--ink-card); border: 1px solid rgba(224,123,57,0.1); padding: 1.75rem; text-decoration: none; transition: border-color 0.3s, transform 0.3s; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)); display: block; }
    .related-card:hover { border-color: rgba(224,123,57,0.3); transform: translateY(-4px); }

    /* FOOTER */
    .flink { color: rgba(245,240,232,0.45); font-family: 'Inter', sans-serif; font-size: 0.78rem; transition: color 0.3s; text-decoration: none; }
    .flink:hover { color: var(--copper); }

    /* UTILS */
    .slabel { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); }
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }