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

  :root {
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --gold-dim: #8a6a28;
    --black: #04040a;
    --deep: #07080f;
    --panel: #0b0d18;
    --white: #f2efe9;
    --white-dim: rgba(242,239,233,0.52);
    --glow-gold: 0 0 40px rgba(201,168,76,0.3);
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }
  body { background: var(--black); color: var(--white); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }



  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 30px 64px; display: flex; align-items: center; justify-content: space-between; transition: backdrop-filter 0.5s, background 0.5s, padding 0.4s; }
  nav.scrolled { backdrop-filter: blur(28px); background: rgba(4,4,10,0.9); padding: 18px 64px; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--white); }
  .nav-logo-icon { width: 34px; height: 34px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .nav-logo-text { font-family: 'Syne', sans-serif; font-size: 0.76rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 700; line-height: 1.35; }
  .nav-logo-text span { color: var(--gold); }
  .nav-links { display: flex; gap: 44px; list-style: none; }
  .nav-links a { font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white-dim); text-decoration: none; transition: color 0.3s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta { padding: 10px 26px; border: 1px solid var(--gold); color: var(--gold); font-family: 'Syne', sans-serif; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; position: relative; overflow: hidden; }
  .nav-cta::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; z-index: -1; }
  .nav-cta:hover { color: var(--black); }
  .nav-cta:hover::before { transform: scaleX(1); }

  /* HAMBURGER */
  .nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: 1px solid rgba(201,168,76,0.25); cursor: pointer; padding: 9px 10px; transition: border-color 0.3s; flex-shrink: 0; }
  .nav-hamburger:hover { border-color: var(--gold); }
  .nav-hamburger span { display: block; height: 1.5px; background: var(--white); border-radius: 2px; transition: transform 0.35s, opacity 0.35s, width 0.35s; transform-origin: center; }
  .nav-hamburger span:nth-child(3) { width: 65%; }
  .nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.active span:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }

  /* MOBILE DRAWER */
  .nav-drawer {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 190;
    background: rgba(4,4,10,0.97);
    backdrop-filter: blur(20px);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 0;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
    border-left: 1px solid rgba(201,168,76,0.1);
  }
  .nav-drawer.open { transform: translateX(0); }
  .nav-drawer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .drawer-links { list-style: none; text-align: center; width: 100%; }
  .drawer-links li { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .drawer-links a {
    display: block; padding: 22px 40px;
    font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300;
    color: var(--white-dim); text-decoration: none; letter-spacing: 1px;
    transition: color 0.3s, padding-left 0.3s;
  }
  .drawer-links a:hover { color: var(--gold); padding-left: 56px; }
  .drawer-cta {
    margin-top: 40px; padding: 16px 52px;
    border: 1px solid var(--gold); color: var(--gold);
    font-family: 'Syne', sans-serif; font-size: 0.78rem;
    letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
    transition: all 0.3s; position: relative; overflow: hidden;
  }
  .drawer-cta::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; z-index: -1; }
  .drawer-cta:hover { color: var(--black); }
  .drawer-cta:hover::before { transform: scaleX(1); }
  .drawer-socials { margin-top: 32px; display: flex; gap: 16px; }
  .drawer-social { font-family: 'Syne', sans-serif; font-size: 0.6rem; letter-spacing: 2px; color: var(--white-dim); text-decoration: none; transition: color 0.3s; text-transform: uppercase; }
  .drawer-social:hover { color: var(--gold); }

  /* HERO */
  .hero { position: relative; z-index: 1; height: 100vh; min-height: 720px; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; overflow: hidden; }

  /* Architectural lines — no orbs */
  .hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .hero-deco-v { position: absolute; top: 0; height: 100%; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.12), transparent); }
  .hero-deco-v:nth-child(1) { left: 14%; animation: vline 5s ease-in-out infinite; }
  .hero-deco-v:nth-child(2) { left: 28%; animation: vline 5s 1s ease-in-out infinite; }
  .hero-deco-v:nth-child(3) { right: 28%; animation: vline 5s 2s ease-in-out infinite; }
  .hero-deco-v:nth-child(4) { right: 14%; animation: vline 5s 3s ease-in-out infinite; }
  .hero-deco-h { position: absolute; height: 1px; left: 0; right: 0; background: linear-gradient(to right, transparent, rgba(201,168,76,0.08), transparent); }
  .hero-deco-h:nth-child(5) { top: 22%; }
  .hero-deco-h:nth-child(6) { bottom: 22%; }
  @keyframes vline { 0%,100%{opacity:.25} 50%{opacity:1} }

  /* Big faint scales SVG in sides */
  .hero-scales { position: absolute; pointer-events: none; opacity: 0.045; }
  .hero-scales-l { left: -60px; top: 50%; transform: translateY(-50%); width: 260px; }
  .hero-scales-r { right: -60px; top: 50%; transform: translateY(-50%) scaleX(-1); width: 260px; }

  .hero-badge { display: inline-flex; align-items: center; gap: 14px; padding: 7px 22px; border: 1px solid rgba(201,168,76,0.22); background: rgba(201,168,76,0.04); font-size: 0.66rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 46px; opacity: 0; animation: fadeUp 1s 0.3s forwards; }
  .hero-badge-line { width: 16px; height: 1px; background: var(--gold); }

  .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.8rem, 8vw, 9rem); font-weight: 300; line-height: 0.92; letter-spacing: -1px; color: var(--white); opacity: 0; animation: fadeUp 1.2s 0.5s forwards; }
  .hero-title em { font-style: italic; color: var(--gold); display: block; }
  .hero-title .thin { font-weight: 300; display: block; font-size: 0.4em; letter-spacing: 9px; color: rgba(242,239,233,0.2); font-family: 'Syne', sans-serif; font-style: normal; margin-top: 24px; text-transform: uppercase; }

  .hero-sub { margin-top: 36px; font-size: 1rem; line-height: 1.8; color: var(--white-dim); max-width: 500px; font-weight: 300; opacity: 0; animation: fadeUp 1s 0.8s forwards; }

  .hero-actions { margin-top: 56px; display: flex; gap: 18px; align-items: center; opacity: 0; animation: fadeUp 1s 1.1s forwards; }
  .btn-primary { padding: 16px 52px; background: var(--gold); color: var(--black); font-family: 'Syne', sans-serif; font-size: 0.75rem; letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none; font-weight: 700; transition: all 0.3s; position: relative; overflow: hidden; }
  .btn-primary::after { content: ''; position: absolute; inset: 0; background: var(--gold-light); transform: translateX(-100%); transition: transform 0.4s; }
  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-ghost { padding: 16px 40px; border: 1px solid rgba(242,239,233,0.2); color: var(--white-dim); font-family: 'Syne', sans-serif; font-size: 0.75rem; letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none; font-weight: 600; transition: all 0.3s; display: flex; align-items: center; gap: 12px; }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .btn-ghost svg { transition: transform 0.3s; }
  .btn-ghost:hover svg { transform: translateX(5px); }

  .hero-scroll { position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeUp 1s 1.5s forwards; }
  .scroll-line { width: 1px; height: 54px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); animation: sline 2.2s infinite; }
  @keyframes sline { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(0);transform-origin:bottom} }
  .scroll-lbl { font-size: 0.57rem; letter-spacing: 4px; text-transform: uppercase; color: var(--white-dim); }

  /* SECTION */
  section { position: relative; z-index: 1; }
  .section-label { font-family: 'Syne', sans-serif; font-size: 0.62rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 16px; }
  .section-label::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 4.5vw, 5rem); font-weight: 300; line-height: 1.06; letter-spacing: -0.5px; }

  /* MARQUEE */
  .marquee-wrap { border-top: 1px solid rgba(201,168,76,0.1); border-bottom: 1px solid rgba(201,168,76,0.1); overflow: hidden; padding: 16px 0; background: var(--deep); }
  .marquee-track { display: flex; animation: mscroll 30s linear infinite; white-space: nowrap; width: max-content; }
  .marquee-item { padding: 0 44px; font-family: 'Syne', sans-serif; font-size: 0.68rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--white-dim); display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
  .marquee-sep { color: var(--gold); opacity: 0.5; font-size: 0.9rem; }
  @keyframes mscroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

  /* PHILOSOPHY */
  .philosophy { padding: 140px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; max-width: 1380px; margin: 0 auto; align-items: center; }
  .phil-body { font-size: 1.08rem; line-height: 1.85; color: var(--white-dim); font-weight: 300; margin-top: 30px; }
  .phil-body strong { color: var(--white); font-weight: 400; }
  .phil-quote { margin-top: 44px; padding: 30px 34px; border-left: 2px solid var(--gold); background: rgba(201,168,76,0.03); }
  .phil-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.28rem; font-style: italic; color: var(--white); line-height: 1.6; font-weight: 300; }
  .phil-quote cite { display: block; margin-top: 14px; font-family: 'Syne', sans-serif; font-size: 0.63rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-style: normal; }
  .phil-card { background: linear-gradient(160deg, #0e1020, #060810); border: 1px solid rgba(201,168,76,0.18); padding: 52px; position: relative; overflow: hidden; box-shadow: 0 60px 120px rgba(0,0,0,0.7); }
  .phil-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
  .phil-card-glow { position: absolute; width: 280px; height: 280px; background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%); border-radius: 50%; top: -80px; right: -80px; pointer-events: none; }
  .phil-card-icon { margin-bottom: 34px; color: var(--gold); opacity: 0.75; }
  .phil-card-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 18px; }
  .phil-card-body { font-size: 0.88rem; color: var(--white-dim); line-height: 1.75; font-weight: 300; }
  .phil-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 44px; }
  .phil-stat { background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.1); padding: 20px 22px; }
  .phil-stat-val { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--white); line-height: 1; }
  .phil-stat-val sup { font-size: 1rem; color: var(--gold); font-style: italic; }
  .phil-stat-lbl { font-family: 'Syne', sans-serif; font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white-dim); margin-top: 6px; }

  /* AREAS */
  .areas { padding: 120px 64px; background: linear-gradient(180deg, var(--black) 0%, var(--deep) 50%, var(--black) 100%); position: relative; overflow: hidden; }
  .areas-bg-txt { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Cormorant Garamond', serif; font-size: 18vw; font-weight: 300; -webkit-text-stroke: 1px rgba(201,168,76,0.03); color: transparent; white-space: nowrap; pointer-events: none; user-select: none; }
  .areas-inner { max-width: 1380px; margin: 0 auto; position: relative; z-index: 1; }
  .areas-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 72px; align-items: end; }
  .areas-desc { font-size: 1rem; line-height: 1.8; color: var(--white-dim); font-weight: 300; }
  .areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .area-card { background: var(--panel); padding: 48px 40px; border: 1px solid rgba(255,255,255,0.04); position: relative; overflow: hidden; transition: all 0.4s; }
  .area-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); transform: scaleX(0); transition: transform 0.4s; }
  .area-card:hover { background: #0d1122; border-color: rgba(201,168,76,0.14); }
  .area-card:hover::after { transform: scaleX(1); }
  .area-num { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; color: var(--gold); font-style: italic; margin-bottom: 28px; display: block; }
  .area-icon { width: 50px; height: 50px; border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; color: var(--gold); transition: all 0.3s; }
  .area-card:hover .area-icon { background: rgba(201,168,76,0.06); box-shadow: var(--glow-gold); }
  .area-name { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
  .area-desc { font-size: 0.87rem; line-height: 1.72; color: var(--white-dim); font-weight: 300; }

  /* STATS */
  .stats-wrap { padding: 0 64px 110px; max-width: 1380px; margin: 0 auto; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; border: 1px solid rgba(201,168,76,0.1); background: rgba(201,168,76,0.05); }
  .stat-cell { background: var(--deep); padding: 52px 36px; position: relative; overflow: hidden; transition: background 0.4s; }
  .stat-cell::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent); opacity: 0; transition: opacity 0.4s; }
  .stat-cell:hover { background: var(--panel); }
  .stat-cell:hover::before { opacity: 1; }
  .stat-val { font-family: 'Cormorant Garamond', serif; font-size: 4.2rem; font-weight: 300; color: var(--white); line-height: 1; }
  .stat-val sup { font-size: 1.3rem; color: var(--gold); vertical-align: super; font-style: italic; }
  .stat-lbl { margin-top: 10px; font-size: 0.67rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white-dim); font-family: 'Syne', sans-serif; }

  /* TEAM */
  .team { padding: 120px 64px; max-width: 1380px; margin: 0 auto; }
  .team-header { text-align: center; margin-bottom: 72px; }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .member-card { background: var(--panel); border: 1px solid rgba(255,255,255,0.04); padding: 52px 40px 44px; position: relative; overflow: hidden; transition: all 0.4s; }
  .member-card:hover { border-color: rgba(201,168,76,0.18); background: #0d1120; }
  .member-avatar { width: 70px; height: 70px; border: 1px solid rgba(201,168,76,0.3); background: linear-gradient(135deg, #1a1206, #0c0e1a); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-style: italic; color: var(--gold); margin-bottom: 28px; }
  .member-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--white); margin-bottom: 6px; }
  .member-role { font-family: 'Syne', sans-serif; font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .member-bio { font-size: 0.86rem; line-height: 1.72; color: var(--white-dim); font-weight: 300; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
  .member-line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform 0.4s; }
  .member-card:hover .member-line { transform: scaleX(1); }

  /* TESTIMONIALS */
  .testimonials { padding: 120px 64px; background: var(--deep); border-top: 1px solid rgba(201,168,76,0.08); border-bottom: 1px solid rgba(201,168,76,0.08); }
  .testi-inner { max-width: 1380px; margin: 0 auto; }
  .testi-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .testi-card { background: var(--panel); padding: 48px 40px; border: 1px solid rgba(255,255,255,0.04); position: relative; transition: all 0.4s; }
  .testi-card:hover { border-color: rgba(201,168,76,0.14); background: #0e1120; }
  .testi-q { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; line-height: 0.8; color: var(--gold); opacity: 0.25; margin-bottom: 18px; display: block; }
  .testi-text { font-size: 0.97rem; line-height: 1.78; color: var(--white-dim); font-weight: 300; font-style: italic; }
  .testi-author { margin-top: 32px; display: flex; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
  .testi-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dim), #1a0e02); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); font-style: italic; }
  .testi-name { font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--white); }
  .testi-role { font-size: 0.7rem; color: var(--white-dim); margin-top: 2px; }
  .testi-stars { position: absolute; top: 28px; right: 28px; color: var(--gold); font-size: 0.65rem; letter-spacing: 2px; }

  /* CTA */
  .cta-section { padding: 160px 64px; text-align: center; position: relative; overflow: hidden; }
  .cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 68%); pointer-events: none; }
  .cta-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px); background-size: 70px 70px; pointer-events: none; mask-image: radial-gradient(ellipse at center, black 35%, transparent 72%); }
  .cta-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
  .cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem, 5.5vw, 6.5rem); font-weight: 300; line-height: 1; color: var(--white); margin-bottom: 24px; }
  .cta-title em { font-style: italic; color: var(--gold); }
  .cta-sub { font-size: 1rem; color: var(--white-dim); font-weight: 300; line-height: 1.75; margin-bottom: 56px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .cta-form { display: flex; max-width: 460px; margin: 0 auto; border: 1px solid rgba(201,168,76,0.25); }
  .cta-input { flex: 1; padding: 17px 22px; background: rgba(255,255,255,0.03); border: none; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; }
  .cta-input::placeholder { color: rgba(242,239,233,0.28); }
  .cta-btn { padding: 17px 26px; background: var(--gold); border: none; color: var(--black); font-family: 'Syne', sans-serif; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: background 0.3s; white-space: nowrap; }
  .cta-btn:hover { background: var(--gold-light); }
  .cta-note { margin-top: 18px; font-size: 0.72rem; color: rgba(242,239,233,0.22); }

  /* FOOTER */
  footer { border-top: 1px solid rgba(201,168,76,0.1); padding: 80px 64px 44px; position: relative; z-index: 1; }
  .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 64px; }
  .footer-brand { font-family: 'Syne', sans-serif; font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
  .footer-brand span { color: var(--gold); }
  .footer-tagline { font-size: 0.86rem; color: var(--white-dim); line-height: 1.75; font-weight: 300; max-width: 260px; margin-bottom: 28px; }
  .footer-oab { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border: 1px solid rgba(201,168,76,0.2); font-family: 'Syne', sans-serif; font-size: 0.6rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
  .footer-col-title { font-family: 'Syne', sans-serif; font-size: 0.62rem; letter-spacing: 4px; text-transform: uppercase; color: var(--white); margin-bottom: 22px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a { font-size: 0.86rem; color: var(--white-dim); text-decoration: none; transition: color 0.3s; font-weight: 300; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-size: 0.72rem; color: rgba(242,239,233,0.18); }
  .footer-legal { display: flex; gap: 28px; list-style: none; }
  .footer-legal a { font-size: 0.7rem; color: rgba(242,239,233,0.18); text-decoration: none; transition: color 0.3s; }
  .footer-legal a:hover { color: var(--gold); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

  /* ── TABLET ── */
  @media (max-width: 1100px) {
    nav { padding: 22px 32px; }
    nav.scrolled { padding: 16px 32px; }
    .nav-links { gap: 28px; }
    .philosophy { gap: 56px; padding: 100px 40px; }
    .areas { padding: 100px 40px; }
    .stats-wrap { padding: 0 40px 90px; }
    .team { padding: 100px 40px; }
    .testimonials { padding: 100px 40px; }
    .cta-section { padding: 120px 40px; }
    footer { padding: 72px 40px 40px; }
  }

  @media (max-width: 900px) {
    nav { padding: 18px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero */
    .hero { min-height: 100svh; padding: 0 24px; }
    .hero-badge { font-size: 0.58rem; letter-spacing: 2.5px; padding: 6px 16px; text-align: center; }
    .hero-title { font-size: clamp(3rem, 10vw, 6rem); letter-spacing: -0.5px; }
    .hero-title .thin { font-size: 0.38em; letter-spacing: 5px; }
    .hero-sub { font-size: 0.95rem; max-width: 380px; }
    .hero-actions { flex-direction: column; gap: 14px; width: 100%; max-width: 320px; }
    .btn-primary { text-align: center; padding: 15px 32px; width: 100%; }
    .btn-ghost { justify-content: center; padding: 14px 32px; width: 100%; }
    .hero-scales-l, .hero-scales-r { width: 160px; opacity: 0.03; }
    .hero-deco-v:nth-child(2), .hero-deco-v:nth-child(3) { display: none; }

    /* Philosophy */
    .philosophy { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
    .phil-card { padding: 36px 28px; }
    .phil-card-stats { grid-template-columns: 1fr 1fr; }

    /* Areas */
    .areas { padding: 80px 24px; }
    .areas-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
    .areas-grid { grid-template-columns: 1fr 1fr; }
    .area-card { padding: 36px 28px; }

    /* Stats */
    .stats-wrap { padding: 0 24px 72px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-cell { padding: 36px 28px; }
    .stat-val { font-size: 3.4rem; }

    /* Team */
    .team { padding: 80px 24px; }
    .team-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
    .member-card { padding: 36px 28px 32px; }

    /* Testimonials */
    .testimonials { padding: 80px 24px; }
    .testi-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
    .testi-grid { grid-template-columns: 1fr; gap: 2px; }
    .testi-card { padding: 36px 28px; }

    /* CTA */
    .cta-section { padding: 100px 24px; }
    .cta-form { flex-direction: column; border: none; gap: 0; }
    .cta-input { border: 1px solid rgba(201,168,76,0.25); padding: 15px 18px; }
    .cta-btn { padding: 15px; margin-top: 2px; }

    /* Footer */
    footer { padding: 60px 24px 36px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-legal { justify-content: center; gap: 20px; }
  }

  /* ── MOBILE ── */
  @media (max-width: 600px) {
    .hero-badge { flex-direction: column; gap: 8px; }
    .hero-badge-line { display: none; }
    .hero-title { font-size: clamp(2.8rem, 12vw, 4.2rem); }
    .hero-sub { font-size: 0.9rem; }
    .phil-card-stats { grid-template-columns: 1fr 1fr; }
    .phil-stat-val { font-size: 2.2rem; }
    .areas-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-tagline { max-width: 100%; }
    .section-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  }

  @media (max-width: 400px) {
    .hero-title { font-size: clamp(2.4rem, 13vw, 3.4rem); }
    .hero-actions { max-width: 100%; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-val { font-size: 2.8rem; }
    .phil-card { padding: 28px 20px; }
    .area-card, .member-card, .testi-card { padding: 28px 20px; }
  }

/* Botão flutuante */
  #chat-fab {
    position: fixed; bottom: 28px; right: 28px; z-index: 9000;
    width: 60px; height: 60px;
    background: var(--gold);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(201,168,76,0.45), 0 2px 8px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    outline: none;
  }
  #chat-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(201,168,76,0.6), 0 4px 12px rgba(0,0,0,0.4);
  }
  #chat-fab:active { transform: scale(0.96); }

  /* Ícone some quando aberto */
  #chat-fab .fab-icon-chat  { transition: opacity 0.25s, transform 0.25s; }
  #chat-fab.open .fab-icon-chat { opacity: 0; transform: scale(0.4) rotate(90deg); pointer-events: none; }

  /* FAB some completamente quando chat está aberto */
  #chat-fab.open {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
  }

  /* Pulse ring */
  #chat-fab::before {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(201,168,76,0.4);
    animation: fab-pulse 2.5s ease-out infinite;
  }
  @keyframes fab-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.55); opacity: 0; }
  }

  /* Tooltip */
  #chat-tooltip {
    position: fixed; bottom: 36px; right: 98px; z-index: 8999;
    background: var(--panel);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 10px 16px;
    font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
    color: var(--white); white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    opacity: 0; pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.3s, transform 0.3s;
  }
  #chat-tooltip::after {
    content: '';
    position: absolute; right: -6px; top: 50%;
    transform: translateY(-50%);
    width: 10px; height: 10px;
    background: var(--panel);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-right: 1px solid rgba(201,168,76,0.2);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  #chat-fab:hover ~ #chat-tooltip,
  #chat-tooltip:hover {
    opacity: 1; transform: translateX(0);
  }
  #chat-tooltip .tooltip-dot {
    display: inline-block; width: 7px; height: 7px;
    background: #22c55e; border-radius: 50;
    margin-right: 7px; animation: dot-blink 1.5s infinite;
    vertical-align: middle;
  }
  @keyframes dot-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

  /* Janela de chat (fallback se Chatwoot não estiver configurado) */
  #chat-window {
    position: fixed; bottom: 100px; right: 28px; z-index: 8998;
    width: 360px; max-height: 520px;
    background: var(--panel);
    border: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03);
    display: flex; flex-direction: column;
    transform: translateY(20px) scale(0.97);
    opacity: 0; pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34,1.3,0.64,1);
  }
  #chat-window.open {
    transform: translateY(0) scale(1);
    opacity: 1; pointer-events: all;
  }
  #chat-window::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .chat-header {
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 12px;
  }
  .chat-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), #0c0e1a);
    border: 1px solid rgba(201,168,76,0.35);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
    color: var(--gold); font-style: italic; flex-shrink: 0;
  }
  .chat-header-info { flex: 1; }
  .chat-header-name {
    font-family: 'Syne', sans-serif; font-size: 0.82rem;
    font-weight: 700; color: var(--white);
  }
  .chat-header-status {
    font-size: 0.68rem; color: #22c55e;
    display: flex; align-items: center; gap: 5px; margin-top: 2px;
  }
  .status-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: dot-blink 1.5s infinite; }
  .chat-messages {
    flex: 1; overflow-y: auto; padding: 20px 16px; display: flex;
    flex-direction: column; gap: 14px; min-height: 240px;
    scrollbar-width: thin; scrollbar-color: rgba(201,168,76,0.2) transparent;
  }
  .msg { max-width: 82%; display: flex; flex-direction: column; gap: 4px; }
  .msg.bot { align-self: flex-start; }
  .msg.user { align-self: flex-end; }
  .msg-bubble {
    padding: 10px 14px; font-size: 0.85rem; line-height: 1.55;
    font-family: 'DM Sans', sans-serif;
  }
  .msg.bot .msg-bubble {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    color: var(--white); border-radius: 2px 12px 12px 12px;
  }
  .msg.user .msg-bubble {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--white); border-radius: 12px 2px 12px 12px;
  }
  .msg-time { font-size: 0.62rem; color: var(--white-dim); padding: 0 4px; }
  .msg.user .msg-time { text-align: right; }

  /* Typing indicator */
  .typing { display: none; align-self: flex-start; }
  .typing.visible { display: flex; }
  .typing-bubble { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); padding: 10px 16px; border-radius: 2px 12px 12px 12px; display: flex; gap: 4px; align-items: center; }
  .typing-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; opacity: 0.4; animation: tdot 1.2s infinite; }
  .typing-dot:nth-child(2) { animation-delay: 0.2s; }
  .typing-dot:nth-child(3) { animation-delay: 0.4s; }
  @keyframes tdot { 0%,80%,100%{opacity:.3;transform:scale(1)} 40%{opacity:1;transform:scale(1.2)} }

  .chat-input-wrap {
    padding: 14px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; gap: 10px; align-items: flex-end;
  }
  #chat-input {
    flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 14px; color: var(--white); font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem; outline: none; resize: none; max-height: 90px;
    transition: border-color 0.3s; border-radius: 2px;
    scrollbar-width: thin;
  }
  #chat-input:focus { border-color: rgba(201,168,76,0.3); }
  #chat-input::placeholder { color: rgba(242,239,233,0.25); }
  #chat-send {
    width: 38px; height: 38px; flex-shrink: 0;
    background: var(--gold); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s; color: var(--black);
    border-radius: 2px;
  }
  #chat-send:hover { background: var(--gold-light); }

  /* X fechar — dentro do header, canto direito */
  #chat-close {
    width: 32px; height: 32px; flex-shrink: 0;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    transition: background 0.25s, transform 0.25s;
    padding: 0;
    border-radius: 2px;
  }
  #chat-close:hover { background: rgba(201,168,76,0.18); transform: rotate(90deg); }

  @media (max-width: 600px) {
    #chat-window { width: calc(100vw - 24px); right: 12px; bottom: 90px; }
    #chat-fab { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  }

