﻿/* ============================================================
   GR SoluÃ§Ãµes Financeiras â€” Design System
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  /* Colors */
  --bg:          #080C18;
  --surface:     #0C1120;
  --surface-2:   #121828;
  --surface-3:   #1A2236;
  --gold:        #C9952A;
  --gold-bright: #E8B84B;
  --gold-dim:    rgba(201,149,42,0.18);
  --gold-border: rgba(201,149,42,0.16);
  --cream:       #F2EDE4;
  --cream-muted: rgba(242,237,228,0.60);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing (8px base) */
  --s-xs:  8px;
  --s-sm:  16px;
  --s-md:  24px;
  --s-lg:  40px;
  --s-xl:  64px;
  --s-2xl: 100px;
  --s-3xl: 140px;

  /* Layout */
  --nav-h:    76px;
  --max-w:    1280px;
  --gutter:   64px;

  /* Transitions */
  --t-fast:   .2s ease;
  --t-mid:    .35s ease;
  --t-slow:   .6s ease;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* === BASE === */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: linear-gradient(168deg,
    #0B0F1F 0%,
    #0F1729 18%,
    #111B30 40%,
    #0E1628 65%,
    #0B1020 85%,
    #090D1B 100%);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  animation: pageIn .5s ease both;
}

/* === STARFIELD CANVAS === */
#starfield {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: .7;
}

/* === LAYOUT WRAPPER === */
main { position: relative; z-index: 1; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* === TYPOGRAPHY SCALE === */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.02em;
}
.label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(11,15,31,.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,149,42,.1);
  transition: height var(--t-mid), background var(--t-mid);
}
nav.scrolled {
  height: 60px;
  background: rgba(11,15,31,.95);
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 54px; width: auto;
  object-fit: contain; display: block;
  transition: opacity var(--t-fast);
}
.nav-logo:hover .nav-logo-img { opacity: .85; }
nav ul {
  list-style: none;
  display: flex; gap: 32px;
}
nav ul a {
  font-size: 12.5px; font-weight: 400; letter-spacing: .05em;
  color: var(--cream-muted);
  position: relative; padding-bottom: 3px;
  transition: color var(--t-fast);
}
nav ul a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-mid);
}
nav ul a:hover       { color: var(--cream); }
nav ul a.active      { color: var(--gold); }
nav ul a.active::after { width: 100%; }
.nav-cta {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer; border: none;
  transition: all var(--t-mid);
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  padding: 15px 36px;
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,149,42,.28);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  padding: 14px 36px;
  border: 1px solid rgba(242,237,228,.18);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* === PAGE TRANSITION === */
@keyframes pageIn  { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
@keyframes pageOut { from { opacity:1; }                             to { opacity:0; } }
body.is-leaving { animation: pageOut .3s ease forwards; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  HOME â€” HERO                                               */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: calc(var(--nav-h) + 60px) var(--gutter) 100px;
  position: relative; z-index: 1;
  border-bottom: 1px solid var(--gold-border);

  /* Foto de fundo â€” Lady Justice */
  background-image: url('../logo/imagem_fundo.jpg');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
}

/* Overlay â€” mais escuro Ã  esquerda (texto), revela a estÃ¡tua Ã  direita */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(
      to right,
      rgba(3,4,7,.97) 0%,
      rgba(3,4,7,.92) 35%,
      rgba(3,4,7,.72) 60%,
      rgba(3,4,7,.45) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(3,4,7,.5) 0%,
      transparent 30%,
      transparent 70%,
      rgba(3,4,7,.85) 100%
    );
}

.hero-left  { position: relative; z-index: 1; }
.hero-right { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; animation: fadeIn 1.2s .5s both; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  animation: fadeUp .8s .1s both;
}
.hero-eyebrow span {
  width: 40px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 28px;
  animation: fadeUp .8s .25s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 15px; color: var(--cream-muted);
  max-width: 480px; line-height: 1.8;
  margin-bottom: 20px;
  animation: fadeUp .8s .4s both;
}
.hero-highlights {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-bottom: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,149,42,.2);
  animation: fadeUp .8s .5s both;
}
.hero-highlights span {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream-muted);
  display: flex; align-items: center; gap: 8px;
}
.hero-highlights span::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .8s .62s both;
}

/* Hero logo â€” PNG transparente */
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center; justify-content: center;
}
.hero-logo-glow {
  position: absolute; inset: -140px;
  background: radial-gradient(circle at 50% 42%, rgba(201,149,42,.22) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
.hero-logo-img {
  width: clamp(360px, 44vw, 560px);
  height: auto; object-fit: contain;
  position: relative; z-index: 1;
  filter: drop-shadow(0 8px 48px rgba(201,149,42,.5));
}
.hero-logo-tagline {
  position: absolute;
  bottom: 17%;
  left: 50%; transform: translateX(-50%);
  white-space: nowrap;
  font-size: 15px; letter-spacing: .36em;
  text-transform: uppercase; color: var(--gold);
  z-index: 2; opacity: .95;
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 1s 1.1s both; z-index: 1;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 9px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--cream-muted);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  STATS BAR                                                 */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-bar {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--surface);
  border-bottom: 1px solid var(--gold-border);
}
.stat-item {
  padding: 48px 32px;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--gold-border);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cream-muted);
  margin-top: 10px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  PAGE HEADER (inner pages)                                 */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-header {
  position: relative; z-index: 1;
  padding: calc(var(--nav-h) + 72px) var(--gutter) 72px;
  border-bottom: 1px solid var(--gold-border);
  background: var(--surface);
}
.page-header .label { margin-bottom: 20px; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.03em;
  max-width: 700px;
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header p {
  margin-top: 22px;
  font-size: 15.5px; color: var(--cream-muted);
  max-width: 520px; line-height: 1.75;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  SERVICES PAGE                                             */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-section {
  position: relative; z-index: 1;
  padding: calc(var(--nav-h) + 64px) var(--gutter) var(--s-3xl);
}
.svc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.svc-header .label { margin-bottom: 18px; }
.svc-header h1 {
  font-family: var(--font-display);
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: 600; line-height: .88;
  letter-spacing: -.035em;
}
.svc-header h1 em { font-style: italic; color: var(--gold); }
.svc-header-desc {
  flex-shrink: 0; max-width: 360px;
  font-size: 15px; color: rgba(242,237,228,.65);
  line-height: 1.75; padding-bottom: 4px;
}
.svc-body {
  display: grid;
  grid-template-columns: 268px 1fr;
  border: 1px solid rgba(201,149,42,.32);
}
.svc-master {
  background: rgba(255,255,255,.025);
  border-right: 1px solid rgba(201,149,42,.12);
  display: flex; flex-direction: column;
}
.svc-list-item {
  display: flex; align-items: center; gap: 16px;
  width: 100%; padding: 21px 26px;
  background: transparent; border: none;
  border-bottom: 1px solid rgba(201,149,42,.07);
  cursor: pointer; text-align: left;
  color: rgba(242,237,228,.52);
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  transition: background var(--t-fast), color var(--t-fast);
  position: relative;
}
.svc-list-item:last-child { border-bottom: none; }
.svc-list-item:hover { background: rgba(201,149,42,.05); color: rgba(242,237,228,.85); }
.svc-list-item.is-active { background: rgba(201,149,42,.08); color: var(--cream); }
.svc-list-item.is-active::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, #E8B84B, #C9952A);
}
.svc-list-icon {
  flex-shrink: 0; width: 34px; height: 34px;
  border: 1px solid rgba(201,149,42,.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,149,42,.55);
  transition: all var(--t-fast);
}
.svc-list-icon svg { width: 15px; height: 15px; }
.svc-list-item.is-active .svc-list-icon,
.svc-list-item:hover .svc-list-icon {
  background: rgba(201,149,42,.12);
  border-color: rgba(201,149,42,.45);
  color: var(--gold);
}
.svc-list-name { flex: 1; font-weight: 500; letter-spacing: .01em; }
.svc-list-chevron {
  color: var(--gold-bright); font-size: 16px; line-height: 1;
  opacity: 0; transform: translateX(-5px);
  transition: all var(--t-fast);
}
.svc-list-item.is-active .svc-list-chevron,
.svc-list-item:hover .svc-list-chevron { opacity: 1; transform: translateX(0); }
.svc-list-item--cta {
  margin-top: auto;
  border-top: 1px solid rgba(201,149,42,.15);
  background: rgba(201,149,42,.04);
}
.svc-list-item--cta .svc-list-name { color: var(--gold); }
.svc-list-item--cta:hover,
.svc-list-item--cta.is-active { background: rgba(201,149,42,.12); }
.svc-detail-panel {
  background: transparent;
  position: relative; overflow: hidden;
}
.svc-detail {
  display: none; padding: 64px 72px;
  position: relative; z-index: 1;
  animation: detailIn .25s ease;
}
.svc-detail.is-active { display: block; }
@keyframes detailIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.svc-detail-icon {
  width: 58px; height: 58px;
  border: 1px solid rgba(201,149,42,.28);
  background: rgba(201,149,42,.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 38px;
}
.svc-detail-icon svg { width: 25px; height: 25px; }
.svc-detail-tag {
  display: block; font-size: 10.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.svc-detail h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.8vw, 60px);
  font-weight: 600; line-height: 1.02; margin-bottom: 22px;
}
.svc-detail p {
  font-size: 15.5px; line-height: 1.82;
  color: rgba(242,237,228,.7);
  max-width: 540px; margin-bottom: 46px;
}
.svc-detail--cta h2 { color: var(--gold); }
@media (max-width: 960px) {
  .svc-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .svc-header-desc { max-width: 100%; }
  .svc-body { grid-template-columns: 1fr; }
  .svc-master { border-right: 1px solid rgba(201,149,42,.16); border-bottom: none; }
  .svc-detail { padding: 44px 32px; }
}

/*  ABOUT PAGE                                                */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-section {
  position: relative; z-index: 1;
  padding: var(--s-xl) var(--gutter) var(--s-3xl);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  margin-bottom: 100px;
}
.about-text .section-tag { margin-bottom: 20px; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -.025em; margin-bottom: 28px;
}
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-text p {
  color: var(--cream-muted); line-height: 1.85;
  margin-bottom: 20px; font-size: 15px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-visual {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 20px;
}
.about-visual::before {
  content: '';
  position: absolute; inset: -120px;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(201,149,42,.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-logo-img {
  width: clamp(360px, 46vw, 560px);
  height: auto; object-fit: contain;
  position: relative; z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 44%, black 38%, transparent 72%);
  mask-image: radial-gradient(ellipse 62% 58% at 50% 44%, black 38%, transparent 72%);
  filter: drop-shadow(0 0 32px rgba(201,149,42,.28));
}

/* Values grid */
.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--gold-border);
}
.value-card {
  background: var(--surface);
  padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: background var(--t-mid), border-color var(--t-mid);
}
.value-card:hover { background: var(--surface-2); border-color: var(--gold); }
.value-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 400;
  color: rgba(201,149,42,.3);
  line-height: 1; margin-bottom: 16px; display: block;
}
.value-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--cream-muted); line-height: 1.65; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  TEAM PAGE                                                 */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.team-section {
  position: relative; z-index: 1;
  padding: var(--s-xl) var(--gutter) var(--s-3xl);
}
.team-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 24px;
  max-width: 960px; margin: var(--s-xl) auto 0;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: border-color var(--t-mid);
}
.team-card:hover { border-color: rgba(201,149,42,.38); }
.team-card::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 64px; height: 64px;
  background: linear-gradient(225deg, rgba(201,149,42,.1) 0%, transparent 60%);
  transition: width var(--t-mid), height var(--t-mid);
}
.team-card:hover::after { width: 96px; height: 96px; }
.team-card-initials {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 400; color: var(--gold);
  display: block; margin-bottom: 20px;
}
.team-card h3 {
  font-size: 21px; font-weight: 500;
  letter-spacing: -.01em; margin-bottom: 6px;
}
.team-card .role {
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 24px;
}
.team-card p { font-size: 14px; color: var(--cream-muted); line-height: 1.78; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  CONTACT PAGE                                              */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-section {
  position: relative; z-index: 1;
  padding: var(--s-xl) var(--gutter) var(--s-3xl);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -.02em; margin-bottom: 20px;
}
.contact-info > p {
  color: var(--cream-muted); font-size: 15px;
  line-height: 1.8; margin-bottom: 44px;
}
.contact-item {
  display: flex; align-items: flex-start;
  gap: 16px; margin-bottom: 28px;
}
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item-label {
  font-size: 9.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 4px;
}
.contact-item-value {
  font-size: 14px; color: var(--cream); line-height: 1.5;
}
.whatsapp-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 36px;
  background: #22C55E; color: #fff;
  padding: 14px 26px;
  font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  transition: opacity var(--t-fast);
}
.whatsapp-link:hover { opacity: .88; }
.whatsapp-link svg { width: 18px; height: 18px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 9.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.form-input {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  color: var(--cream);
  padding: 14px 18px; font-size: 14px;
  font-family: var(--font-body); font-weight: 300;
  outline: none; width: 100%;
  border-radius: 0; -webkit-appearance: none;
  transition: border-color var(--t-fast);
}
.form-input:focus { border-color: rgba(201,149,42,.55); }
.form-input::placeholder { color: var(--cream-muted); }
textarea.form-input { resize: vertical; min-height: 130px; }
select.form-input option { background: var(--surface-2); }
.form-submit { margin-top: 4px; }
.form-input.is-error { border-color: #e05252; }
.form-error-msg { font-size: 11px; color: #e05252; margin-top: -4px; display: none; }
.form-error-msg.visible { display: block; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  CTA STRIP                                                 */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-strip {
  position: relative; z-index: 1;
  padding: var(--s-2xl) var(--gutter);
  text-align: center;
  background: transparent;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,149,42,.1) 0%, transparent 68%);
  pointer-events: none;
}
.cta-strip h2 {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600; line-height: .95;
  letter-spacing: -.03em; margin-bottom: 20px;
}
.cta-strip h2 em { font-style: italic; color: var(--gold); }
.cta-strip p {
  position: relative; z-index: 1;
  color: var(--cream-muted); font-size: 16px;
  max-width: 480px; margin: 0 auto 40px; line-height: 1.7;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  FOOTER                                                    */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(201,149,42,.1);
  background: transparent;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 48px;
  padding: 64px var(--gutter) 48px;
  align-items: start;
}
.footer-brand {}
.footer-logo {
  display: inline-flex; align-items: center;
  margin-bottom: 20px;
}
.footer-logo-img {
  height: 44px; width: auto;
  object-fit: contain; display: block;
  filter: drop-shadow(0 2px 12px rgba(201,149,42,.2));
  transition: opacity var(--t-fast);
}
.footer-logo:hover .footer-logo-img { opacity: .85; }
.footer-tagline {
  font-size: 12.5px; line-height: 1.7;
  color: var(--cream-muted);
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-col ul li a {
  font-size: 13px; color: var(--cream-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-contact-item {
  font-size: 13px; color: var(--cream-muted);
  line-height: 1.6; margin-bottom: 16px;
}
.footer-contact-item a {
  color: var(--cream-muted); text-decoration: none;
  transition: color var(--t-fast);
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,149,42,.08);
  padding: 20px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 11.5px; color: var(--cream-muted);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--cream); }
.footer-bottom-links { display: flex; gap: 24px; }
@media (max-width: 860px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-main { grid-template-columns: 1fr; }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  ANIMATIONS & KEYFRAMES                                    */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeIn    { from { opacity:0; }                               to { opacity:1; } }
@keyframes fadeUp    { from { opacity:0; transform:translateY(28px); }   to { opacity:1; transform:translateY(0); } }
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.3;transform:scaleY(.6)} }

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .26s; }
.reveal-d4 { transition-delay: .34s; }
.reveal-d5 { transition-delay: .42s; }
.reveal-d6 { transition-delay: .5s; }

/* ── HAMBURGER BUTTON ───────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all var(--t-mid);
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── RESPONSIVE: TABLET (≤ 768px) ───────────────────────── */
@media (max-width: 768px) {
  :root { --gutter: 20px; }

  /* Nav mobile */
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  nav ul {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(8,12,24,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--gold-border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-mid), opacity var(--t-mid);
  }
  nav ul.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  nav ul li { border-bottom: 1px solid rgba(201,149,42,.07); }
  nav ul li:last-child { border-bottom: none; }
  nav ul a {
    display: block;
    padding: 18px 24px;
    font-size: 14px;
    letter-spacing: .08em;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: calc(var(--nav-h) + 40px) var(--gutter) 60px;
    background-attachment: scroll;
    min-height: auto;
  }
  .hero-right { display: none; }
  .hero h1 { font-size: clamp(40px, 11vw, 62px); }
  .hero-sub { font-size: 14px; }
  .hero-highlights { gap: 14px; }
  .hero-scroll { display: none; }

  /* Stats */
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 32px 16px; }
  .stat-item:nth-child(3)::before { display: none; }

  /* Services */
  .services-section { padding: calc(var(--nav-h) + 40px) var(--gutter) 80px; }
  .svc-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .svc-header-desc { max-width: 100%; }
  .svc-body { grid-template-columns: 1fr; }
  .svc-master { border-right: none; border-bottom: 1px solid rgba(201,149,42,.16); }
  .svc-detail { padding: 36px 24px; }

  /* About */
  .about-section { padding: 60px var(--gutter) 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .about-visual { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 28px 24px; }

  /* Contact */
  .contact-section { padding: 60px var(--gutter) 80px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .whatsapp-link { width: 100%; justify-content: center; }

  /* Page header */
  .page-header { padding: calc(var(--nav-h) + 40px) var(--gutter) 40px; }

  /* CTA strip */
  .cta-strip { padding: 60px var(--gutter); }

  /* Footer */
  .footer-main { padding: 48px var(--gutter) 36px; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px var(--gutter);
  }
  .footer-bottom-links { justify-content: center; }
}

/* ── RESPONSIVE: PHONE (≤ 480px) ────────────────────────── */
@media (max-width: 480px) {
  :root { --gutter: 16px; }

  .stats-bar { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 28px 16px; }

  .hero-highlights { flex-direction: column; gap: 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }

  .svc-detail { padding: 28px 16px; }
  .svc-detail h2 { font-size: clamp(28px, 8vw, 44px); }

  .page-header h1 { font-size: clamp(36px, 9vw, 56px); }

  .contact-info h2 { font-size: clamp(26px, 8vw, 38px); }
  .btn-gold { width: 100%; justify-content: center; }

  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
}
