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

  :root {
    --black: #0a0a0a;
    --charcoal: #111110;
    --graphite: #1a1a18;
    --lead: #2c2c2a;
    --mid: #5c5c58;
    --muted: #8a8a84;
    --light: #c4c4bc;
    --offwhite: #f0ede6;
    --cream: #f8f5ee;
    --gold: #b8965a;
    --gold-light: #d4b07a;
    --gold-pale: #e8d5b0;
    --champagne: #f0e6cc;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--offwhite);
    font-family: var(--sans);
    font-weight: 300;
    cursor: none;
    overflow-x: hidden;
  }

  /* Custom cursor */
  #cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, background .25s;
  }
  #cursor-ring {
    position: fixed;
    width: 32px; height: 32px;
    border: 1px solid rgba(184,150,90,.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all .12s ease-out;
  }
  body:has(a:hover) #cursor,
  body:has(button:hover) #cursor { width: 14px; height: 14px; background: var(--gold-light); }
  body:has(a:hover) #cursor-ring,
  body:has(button:hover) #cursor-ring { width: 44px; height: 44px; border-color: rgba(184,150,90,.7); }

  /* Header */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 28px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background .4s, backdrop-filter .4s, padding .3s;
  }
  header.scrolled {
    background: rgba(10,10,10,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 60px;
    border-bottom: 1px solid rgba(184,150,90,.12);
  }
  .logo {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: .06em;
    color: var(--offwhite);
    text-decoration: none;
  }
  .logo span { color: var(--gold); }
  nav { display: flex; gap: 40px; align-items: center; }
  nav a {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
    font-weight: 400;
  }
  nav a:hover { color: var(--offwhite); }
  .nav-cta {
    border: 1px solid rgba(184,150,90,.5);
    padding: 10px 24px;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold) !important;
    text-decoration: none;
    transition: background .2s, border-color .2s !important;
  }
  .nav-cta:hover { background: rgba(184,150,90,.08); border-color: var(--gold) !important; }

  /* Hero */
  #hero {
    min-height: 100vh;
    position: relative;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 60px 80px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: 
      linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.6) 60%, rgba(0,0,0,.92) 100%),
      linear-gradient(105deg, #0a0a0a 0%, #1a1210 40%, #0e0d0b 100%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(184,150,90,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(184,150,90,.04) 1px, transparent 1px);
    background-size: 80px 80px;
  }
  .hero-accent {
    position: absolute;
    top: 15%; right: 8%;
    width: 380px; height: 520px;
    background: linear-gradient(135deg, rgba(184,150,90,.06) 0%, transparent 60%);
    border: 1px solid rgba(184,150,90,.08);
    transform: rotate(12deg);
    pointer-events: none;
  }
  .hero-accent-2 {
    position: absolute;
    bottom: 20%; left: 5%;
    width: 200px; height: 280px;
    background: rgba(184,150,90,.03);
    border: 1px solid rgba(184,150,90,.05);
    transform: rotate(-5deg);
    pointer-events: none;
  }
  .hero-tag {
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    position: relative;
    display: flex; align-items: center; gap: 16px;
  }
  .hero-tag::before {
    content: '';
    display: block; width: 48px; height: 1px; background: var(--gold);
  }
  .hero-headline {
    font-family: var(--serif);
    font-size: clamp(52px, 7vw, 100px);
    font-weight: 300;
    line-height: .95;
    letter-spacing: -.01em;
    color: var(--cream);
    max-width: 820px;
    position: relative;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
  }
  .hero-sub {
    font-size: 15px;
    color: var(--muted);
    max-width: 440px;
    line-height: 1.7;
    margin-top: 32px;
    font-weight: 300;
    position: relative;
  }
  .hero-ctas {
    display: flex; gap: 20px; margin-top: 48px; align-items: center;
    position: relative;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 16px 40px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: background .2s, transform .15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-ghost {
    border: 1px solid rgba(184,150,90,.35);
    color: var(--light);
    padding: 16px 40px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: border-color .2s, color .2s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll {
    position: absolute; bottom: 80px; right: 60px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--mid); writing-mode: vertical-rl;
  }
  .hero-scroll::after {
    content: '';
    display: block; width: 1px; height: 60px;
    background: linear-gradient(var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%, 100% { opacity: .3; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  }
  .hero-stats {
    position: absolute; right: 60px; bottom: 200px;
    display: flex; flex-direction: column; gap: 32px;
    border-left: 1px solid rgba(184,150,90,.15);
    padding-left: 28px;
  }
  .hero-stat-num {
    font-family: var(--serif);
    font-size: 36px; font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted); margin-top: 4px;
  }

  /* Sections */
  section { padding: 120px 60px; }
  .section-label {
    font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
    display: flex; align-items: center; gap: 14px;
  }
  .section-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }

  /* Authority */
  #authority { background: var(--charcoal); }
  .authority-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }
  .authority-title {
    font-family: var(--serif); font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 300; line-height: 1.05; color: var(--cream);
    letter-spacing: -.01em;
  }
  .authority-title em { font-style: italic; color: var(--gold-light); }
  .authority-text { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 300; margin-top: 28px; }
  .stats-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px;
  }
  .stat-item { border-top: 1px solid rgba(184,150,90,.2); padding-top: 24px; }
  .stat-big {
    font-family: var(--serif); font-size: 56px; font-weight: 300;
    color: var(--offwhite); line-height: 1;
    counter-reset: none;
  }
  .stat-big span { font-size: 28px; color: var(--gold); vertical-align: super; }
  .stat-desc { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
  .authority-right { padding-top: 20px; }
  .expertise-list { display: flex; flex-direction: column; gap: 0; }
  .expertise-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    display: flex; justify-content: space-between; align-items: center;
    transition: padding-left .2s;
    cursor: default;
  }
  .expertise-item:hover { padding-left: 12px; }
  .expertise-item:hover .exp-num { color: var(--gold); }
  .exp-num { font-family: var(--serif); font-size: 13px; color: var(--lead); font-weight: 400; }
  .exp-name { font-size: 16px; color: var(--offwhite); font-weight: 300; letter-spacing: .02em; }
  .exp-arrow { font-size: 14px; color: var(--muted); transition: transform .2s, color .2s; }
  .expertise-item:hover .exp-arrow { transform: translateX(6px); color: var(--gold); }

  /* Practice Areas */
  #areas { background: var(--black); }
  .areas-title {
    font-family: var(--serif); font-size: clamp(36px, 4vw, 58px);
    font-weight: 300; color: var(--cream); max-width: 600px;
    line-height: 1.1; margin-bottom: 70px;
  }
  .areas-title em { font-style: italic; color: var(--gold-light); }
  .areas-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(184,150,90,.1);
  }
  .area-card {
    background: var(--black);
    padding: 50px 40px;
    transition: background .3s;
    cursor: default; position: relative; overflow: hidden;
  }
  .area-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
  }
  .area-card:hover { background: var(--graphite); }
  .area-card:hover::before { transform: scaleX(1); }
  .area-num {
    font-family: var(--serif); font-size: 48px; font-weight: 300;
    color: rgba(184,150,90,.15); line-height: 1;
    margin-bottom: 24px; transition: color .3s;
  }
  .area-card:hover .area-num { color: rgba(184,150,90,.3); }
  .area-name {
    font-size: 18px; color: var(--offwhite); font-weight: 300;
    letter-spacing: .01em; margin-bottom: 14px; transition: color .3s;
  }
  .area-card:hover .area-name { color: var(--cream); }
  .area-desc { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

  /* About */
  #about { background: var(--graphite); }
  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
  }
  .about-visual {
    aspect-ratio: 3/4; background: var(--lead);
    position: relative; overflow: hidden;
  }
  .about-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(184,150,90,.06), transparent 60%);
  }
  .about-visual-inner {
    position: absolute; inset: 20px;
    border: 1px solid rgba(184,150,90,.15);
  }
  .about-visual-text {
    position: absolute; bottom: 40px; left: 40px; right: 40px;
  }
  .about-visual-quote {
    font-family: var(--serif); font-size: 28px; font-weight: 300;
    font-style: italic; color: var(--offwhite); line-height: 1.3;
  }
  .about-visual-attribution {
    font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--gold); margin-top: 16px;
  }
  .about-label { margin-bottom: 32px; }
  .about-heading {
    font-family: var(--serif); font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 28px;
  }
  .about-heading em { font-style: italic; color: var(--gold-light); display: block; }
  .about-body { font-size: 15px; color: var(--muted); line-height: 1.85; font-weight: 300; }
  .about-body p + p { margin-top: 18px; }
  .about-signature {
    margin-top: 48px; padding-top: 40px;
    border-top: 1px solid rgba(184,150,90,.15);
    display: flex; align-items: center; gap: 24px;
  }
  .sig-line { font-family: var(--serif); font-size: 26px; font-weight: 400; font-style: italic; color: var(--gold-light); }
  .sig-title { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

  /* Differentials */
  #diferenciais { background: var(--black); }
  .dif-header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px;
  }
  .dif-title {
    font-family: var(--serif); font-size: clamp(36px, 4vw, 58px);
    font-weight: 300; color: var(--cream); line-height: 1.08;
  }
  .dif-title em { font-style: italic; color: var(--gold-light); }
  .dif-intro { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 300; padding-top: 20px; }
  .dif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .dif-item {
    padding: 40px; border: 1px solid rgba(184,150,90,.08);
    transition: border-color .3s, background .3s;
  }
  .dif-item:hover { border-color: rgba(184,150,90,.25); background: rgba(184,150,90,.02); }
  .dif-icon {
    width: 40px; height: 40px; margin-bottom: 28px;
    display: flex; align-items: center; justify-content: center;
  }
  .dif-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.2; }
  .dif-name {
    font-size: 16px; color: var(--offwhite); font-weight: 400;
    letter-spacing: .02em; margin-bottom: 12px;
  }
  .dif-desc { font-size: 13px; color: var(--muted); line-height: 1.75; font-weight: 300; }

  /* Testimonials */
  #depoimentos { background: var(--charcoal); overflow: hidden; }
  .test-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; }
  .test-title {
    font-family: var(--serif); font-size: clamp(36px, 4vw, 54px);
    font-weight: 300; color: var(--cream); line-height: 1.1;
  }
  .test-title em { font-style: italic; color: var(--gold-light); }
  .test-note { font-size: 15px; color: var(--muted); line-height: 1.75; font-weight: 300; align-self: end; }
  .test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(184,150,90,.08); }
  .test-card {
    background: var(--charcoal); padding: 50px 40px;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .test-quote-mark {
    font-family: var(--serif); font-size: 80px; font-weight: 300;
    color: rgba(184,150,90,.2); line-height: .8; margin-bottom: 20px;
  }
  .test-text {
    font-family: var(--serif); font-size: 19px; font-weight: 300;
    color: var(--offwhite); line-height: 1.55; font-style: italic; flex: 1;
  }
  .test-author { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(184,150,90,.12); }
  .test-name { font-size: 13px; color: var(--light); font-weight: 400; letter-spacing: .08em; }
  .test-role { font-size: 11px; color: var(--muted); letter-spacing: .1em; margin-top: 4px; text-transform: uppercase; }

  /* CTA Final */
  #cta-final {
    background: var(--graphite);
    text-align: center;
    padding: 160px 60px;
    position: relative; overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 800px 500px at 50% 50%, rgba(184,150,90,.06), transparent 70%);
  }
  .cta-grid-lines {
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(184,150,90,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(184,150,90,.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .cta-tag {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 40px; position: relative;
  }
  .cta-headline {
    font-family: var(--serif); font-size: clamp(42px, 5.5vw, 80px);
    font-weight: 300; color: var(--cream); line-height: 1.05;
    max-width: 800px; margin: 0 auto 24px; position: relative;
  }
  .cta-headline em { font-style: italic; color: var(--gold-light); display: block; }
  .cta-sub {
    font-size: 16px; color: var(--muted); max-width: 500px;
    margin: 0 auto 56px; line-height: 1.75; font-weight: 300; position: relative;
  }
  .cta-buttons { display: flex; gap: 20px; justify-content: center; position: relative; }
  .cta-line {
    width: 1px; height: 80px;
    background: linear-gradient(transparent, var(--gold), transparent);
    margin: 0 auto 48px; position: relative;
  }

  /* Footer */
  footer {
    background: var(--black);
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(184,150,90,.1);
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    margin-bottom: 40px;
  }
  .footer-logo {
    font-family: var(--serif); font-size: 22px; font-weight: 400;
    color: var(--offwhite); margin-bottom: 20px;
  }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; }
  .footer-col-title { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-links { display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    font-size: 13px; color: var(--muted); text-decoration: none;
    transition: color .2s; font-weight: 300;
  }
  .footer-links a:hover { color: var(--offwhite); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy { font-size: 11px; color: rgba(138,138,132,.5); letter-spacing: .06em; }
  .footer-oab { font-size: 11px; color: rgba(138,138,132,.4); }

  /* Reveal animations */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }

  /* Gold divider */
  .gold-rule {
    width: 48px; height: 1px; background: var(--gold); margin: 32px 0;
  }

  /* Scroll progress */
  #progress {
    position: fixed; top: 0; left: 0; height: 2px;
    background: var(--gold); z-index: 10000;
    transform-origin: left; transform: scaleX(0);
    transition: transform .1s;
  }

  @media (max-width: 900px) {
    header { padding: 20px 24px; }
    header.scrolled { padding: 14px 24px; }
    nav { display: none; }
    section { padding: 80px 24px; }
    #hero { padding: 0 24px 60px; }
    .hero-stats { display: none; }
    .hero-scroll { display: none; }
    .authority-grid, .about-inner, .dif-header, .test-header { grid-template-columns: 1fr; gap: 40px; }
    .stats-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .areas-grid, .dif-grid, .test-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-accent, .hero-accent-2 { display: none; }
    .about-visual { display: none; }
  }