/* ==========================================================================
   WESLEY BAPTISTA ADVOGADOS - FULLSCREEN LUXURY DESIGN SYSTEM
   Full-width edge-to-edge immersion, high authority, Dark Navy & Legal Gold
   ========================================================================== */

:root {
  --navy-darkest: #060b12;
  --navy-dark: #09121d;
  --navy-card: #0d1929;
  --navy-card-border: rgba(197, 160, 89, 0.22);
  --navy-card-hover: #122238;
  --navy-surface: #15263d;
  
  --gold-primary: #c5a059;
  --gold-light: #e6c587;
  --gold-dark: #9c7b39;
  --gold-glow: rgba(197, 160, 89, 0.28);
  --gold-badge-bg: rgba(197, 160, 89, 0.12);
  --gold-badge-border: rgba(197, 160, 89, 0.35);

  --text-pure: #ffffff;
  --text-primary: #f0f4f8;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-dark: #0f172a;
  --text-dark-secondary: #475569;
  --border-light: #e2e8f0;

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-pill: 9999px;
  
  --shadow-gold: 0 10px 30px -8px rgba(197, 160, 89, 0.35);
  --shadow-card: 0 25px 50px -15px rgba(0, 0, 0, 0.45);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--navy-darkest);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  display: block;
  max-width: 100%;
}

/* Fullscreen Wide Containers */
.container-wide {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */

.btn-gold-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #0b1420 !important;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-gold-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -6px rgba(197, 160, 89, 0.55);
  background: linear-gradient(135deg, #f3d79f 0%, #d4af5f 100%);
}

.btn-gold-pill.large {
  padding: 17px 36px;
  font-size: 15.5px;
}

.btn-gold-pill .arrow-up-right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(11, 20, 32, 0.15);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.25s ease;
}

.btn-gold-pill:hover .arrow-up-right {
  transform: translate(2px, -2px);
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.pill-label.dark-mode {
  color: var(--gold-light);
  background: rgba(197, 160, 89, 0.12);
  border-color: rgba(197, 160, 89, 0.3);
}

.gold-text {
  background: linear-gradient(135deg, #f5d89f 0%, #c5a059 50%, #e2be78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-accent {
  color: var(--gold-primary);
}

/* ==========================================================================
   HEADER / NAVIGATION (FULLSCREEN WIDE)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 11, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   HERO SECTION (FULLSCREEN VIEWPORT IMMERSION)
   ========================================================================== */

.hero-fullscreen {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 82px);
  background: radial-gradient(circle at 65% 25%, #15273d 0%, #0b1523 50%, #060b12 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(40px, 6vh, 80px) 0 clamp(24px, 4vh, 40px);
  overflow: hidden;
}

/* Watermark Scales of Justice */
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: clamp(650px, 55vw, 950px);
  height: clamp(650px, 55vw, 950px);
  pointer-events: none;
  color: #c5a059;
  opacity: 0.14;
  z-index: 1;
}

.hero-main-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  flex-grow: 1;
}

.hero-copy {
  max-width: 680px;
}

.badge-credential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 26px;
}

.hero-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-desc {
  font-size: clamp(16.5px, 1.3vw, 20px);
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 38px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Portrait Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.portrait-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: clamp(460px, 56vh, 620px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.portrait-glow {
  position: absolute;
  bottom: 80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.28) 0%, rgba(15, 28, 45, 0) 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
}

.portrait-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 82%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 82%, rgba(0,0,0,0) 100%);
}

/* Floating Review Card */
.hero-floating-card {
  position: absolute;
  top: 30px;
  right: -10px;
  z-index: 3;
  background: rgba(12, 22, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  max-width: 270px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  animation: floatSubtle 6s ease-in-out infinite alternate;
}

@keyframes floatSubtle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.stars-badge {
  color: #ffb800;
  font-size: 14px;
  letter-spacing: 2px;
}

.rating-score {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.rating-count {
  font-size: 11px;
  color: #94a3b8;
}

.floating-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.floating-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.floating-cta-link:hover {
  background: var(--gold-primary);
  color: #0b1420;
}

/* Stats Row */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  margin-top: clamp(30px, 4vh, 50px);
  padding-top: clamp(20px, 3vh, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold-light);
  line-height: 1;
}

.stat-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.45;
}

/* ==========================================================================
   ABOUT SECTION (FULL-WIDTH CONTRAST)
   ========================================================================== */

.about-section {
  width: 100%;
  background: var(--bg-white);
  color: var(--text-dark);
  padding: clamp(80px, 9vw, 140px) 0;
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: flex-start;
}

.about-left h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.about-left h2 b {
  color: var(--gold-dark);
  display: block;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.45;
  color: #1e293b;
  font-weight: 500;
}

.about-text {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-dark-secondary);
}

.about-action {
  margin-top: 12px;
}

/* ==========================================================================
   SERVICES SECTION (FULL-WIDTH DARK LUXURY)
   ========================================================================== */

.services-section-fullscreen {
  width: 100%;
  background: linear-gradient(180deg, #070e17 0%, #0a1523 50%, #060b12 100%);
  padding: clamp(80px, 9vw, 140px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.services-header-left h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.services-header-right {
  max-width: 500px;
  color: #94a3b8;
  font-size: 16.5px;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card-item {
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  text-decoration: none;
  min-height: 520px;
}

/* Light Card */
.service-card-item.is-light {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.service-card-item.is-light .card-category-badge {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
}

.service-card-item.is-light h3 {
  color: #0f172a;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  margin: 18px 0;
}

.service-card-item.is-light p {
  color: #475569;
  font-size: 14.5px;
  line-height: 1.65;
}

.service-card-item.is-light .card-arrow-circle {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

.service-card-item.is-light:hover .card-arrow-circle {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #0b1420;
}

/* Featured Dark Card */
.service-card-item.is-dark {
  background: #0d1a2a;
  color: #ffffff;
  border: 1px solid rgba(197, 160, 89, 0.45);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(197, 160, 89, 0.18);
}

.service-card-item.is-dark .card-category-badge {
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--gold-light);
}

.service-card-item.is-dark h3 {
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  margin: 18px 0;
}

.service-card-item.is-dark p {
  color: #94a3b8;
  font-size: 14.5px;
  line-height: 1.65;
}

.service-card-item.is-dark .card-arrow-circle {
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--gold-light);
}

.service-card-item.is-dark:hover .card-arrow-circle {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #0b1420;
}

.service-card-item:hover {
  transform: translateY(-8px);
}

.card-category-badge {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.service-card-img-box {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #09121d;
}

.service-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-item:hover .service-card-img-box img {
  transform: scale(1.05);
}

.service-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  gap: 14px;
}

.service-card-bottom p {
  margin-bottom: 0;
  flex-grow: 1;
}

.card-arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

/* ==========================================================================
   METHODOLOGY SECTION (FULL-WIDTH 3 ETAPAS)
   ========================================================================== */

.methodology-section {
  width: 100%;
  background: var(--bg-light);
  color: var(--text-dark);
  padding: clamp(80px, 9vw, 130px) 0;
  border-bottom: 1px solid var(--border-light);
}

.methodology-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.methodology-head h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.methodology-head p {
  color: var(--text-dark-secondary);
  font-size: 17px;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.method-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-primary);
}

.method-number {
  font-size: 44px;
  font-weight: 900;
  color: var(--gold-primary);
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 20px;
}

.method-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.method-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark-secondary);
}

/* ==========================================================================
   EDITORIAL WORKS / TABLE ("Some Of My Legal Works")
   ========================================================================== */

.works-section {
  width: 100%;
  background: var(--bg-white);
  color: var(--text-dark);
  padding: clamp(80px, 9vw, 130px) 0;
  border-bottom: 1px solid var(--border-light);
}

.works-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
}

.works-head-left h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.works-head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  max-width: 480px;
  text-align: right;
}

.works-head-right p {
  color: var(--text-dark-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* Table Format */
.works-table {
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.works-row-header {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 50px;
  gap: 24px;
  padding: 18px 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

.works-row-item {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 50px;
  gap: 24px;
  align-items: center;
  padding: 26px 10px;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.works-row-item:hover {
  background: #f8fafc;
  padding-left: 18px;
}

.work-title-cell {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.works-row-item:hover .work-title-cell {
  color: var(--gold-dark);
}

.work-cat-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.work-meta-cell {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.work-action-cell {
  display: flex;
  justify-content: flex-end;
}

.work-arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: var(--transition-smooth);
}

.works-row-item:hover .work-arrow-circle {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #0b1420;
  transform: translate(2px, -2px);
}

/* ==========================================================================
   HIGH-IMPACT CTA SECTION (FULL-WIDTH)
   ========================================================================== */

.cta-section-fullscreen {
  width: 100%;
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--navy-darkest);
}

.cta-box {
  background: radial-gradient(circle at 50% 20%, #172a42 0%, #0c1624 70%, #070d17 100%);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-lg);
  padding: clamp(60px, 8vw, 90px) clamp(24px, 5vw, 60px);
  text-align: center;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.7), 0 0 50px -10px rgba(197, 160, 89, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto 24px;
}

.cta-box p {
  font-size: clamp(16.5px, 1.3vw, 19px);
  color: #94a3b8;
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.cta-note {
  font-size: 12.5px;
  color: #64748b;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   FOOTER (FULL-WIDTH)
   ========================================================================== */

.site-footer {
  width: 100%;
  background: #04080e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(70px, 7vw, 100px) 0 35px;
  color: #94a3b8;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.footer-col-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #64748b;
  max-width: 340px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links-list a {
  font-size: 14.5px;
  color: #94a3b8;
}

.footer-links-list a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 14.5px;
}

.footer-contact-item span {
  font-size: 11.5px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 18px;
}

.oab-disclaimer {
  max-width: 720px;
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .hero-main-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 20px;
  }
  .hero-copy {
    max-width: 100%;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .methodology-grid {
    grid-template-columns: 1fr;
  }
  .works-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .works-head-right {
    align-items: flex-start;
    text-align: left;
  }
  .works-row-header, .works-row-item {
    grid-template-columns: 2fr 1fr 40px;
  }
  .works-row-header span:nth-child(3),
  .works-row-item .work-meta-cell {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-floating-card {
    position: static;
    margin: 20px auto 0;
    max-width: 100%;
  }
  .portrait-container {
    height: 380px;
  }
  .hero-stats-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Trust & Social Proof Badge in Hero Copy (Unobstructed View of Wesley) */
.hero-rating-badge {
  margin-top: 36px;
  background: rgba(12, 22, 36, 0.75);
  border: 1px solid rgba(197, 160, 89, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.rating-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars-badge {
  color: #ffb800;
  font-size: 14px;
  letter-spacing: 2px;
}

.rating-score {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.rating-count {
  font-size: 12px;
  color: var(--gold-light);
  font-weight: 600;
}

.rating-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-rating-badge {
    margin: 28px auto 0;
    text-align: left;
  }
}

