/* ============================================================
   RODRIGO SANTANA ADVOCACIA — stylesheet
   Cores: bg #0B243A | accent #cb8b5b
   ============================================================ */

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

:root {
  --bg:           #0B243A;
  --gold:         #cb8b5b;
  --gold-dim:     rgba(203,139,91,0.75);
  --gold-ghost:   rgba(203,139,91,0.12);
  --gold-border:  rgba(203,139,91,0.25);
  --white:        #ffffff;
  --text-muted:   rgba(203,139,91,0.55);

  --font-main:    'Inter', system-ui, sans-serif;
  --header-h:     80px;
  --transition:   0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-out:     cubic-bezier(0.16,1,0.3,1);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); font-size: 16px; }

body {
  background: var(--bg);
  color: var(--gold);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── Preloader ────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }

.preloader-logo-wrapper { position: relative; line-height: 1; user-select: none; }

.preloader-logo-ghost,
.preloader-logo-fill {
  font-family: var(--font-main);
  font-size: clamp(6rem,14vw,11rem);
  letter-spacing: 0.08em;
  display: block;
}
.preloader-logo-ghost { color: var(--gold-ghost); border: 2px solid var(--gold-border); }
.preloader-logo-fill  { position: absolute; inset: 0; color: var(--gold); clip-path: inset(100% 0 0 0); will-change: clip-path; }

.preloader-bar-wrapper { width: 200px; height: 2px; background: var(--gold-border); border-radius: 2px; overflow: hidden; }
.preloader-bar         { height: 100%; width: 0%; background: var(--gold); border-radius: 2px; transition: width 0.08s linear; }
.preloader-percent     { font-size: 0.875rem; font-weight: 300; letter-spacing: 0.2em; color: var(--gold-dim); }

/* ── Header ───────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled {
  background: #0B243A;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gold-border);
}
.header-inner {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 48px; height: 100%; padding: 0 5%; max-width: 1920px; margin: 0 auto;
}
.nav-links  { display: flex; align-items: center; gap: 40px; }
.nav-link   {
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase;
  position: relative; padding-bottom: 3px; transition: color 0.3s ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width var(--transition);
}
.nav-link:hover::after, .nav-link:focus-visible::after { width: 100%; }
.nav-link:hover { color: var(--white); }

.header-logo { display: flex; align-items: center; transition: opacity 0.3s ease, transform 0.3s ease; }
.header-logo:hover { opacity: 0.75; transform: scale(0.97); }
.header-logo img { width: 48px; height: 40px; object-fit: contain; }

.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-right: auto; order: -1;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  background: var(--bg); overflow: hidden;
  display: flex; align-items: flex-end;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 150% 15%; display: block;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11,36,58,0.97) 0%, rgba(11,36,58,0.78) 42%, rgba(11,36,58,0.3) 68%, rgba(11,36,58,0.05) 100%),
    linear-gradient(to top, rgba(11,36,58,0.96) 0%, rgba(11,36,58,0.45) 28%, transparent 56%);
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 700px;
  padding: calc(var(--header-h) + 40px) 6% 64px;
  display: flex; flex-direction: column; min-height: 100vh; justify-content: flex-end;
}

.hero-text-block { margin-bottom: 48px; }

.hero-name { line-height: 0.88; margin-bottom: 24px; width: fit-content; }
.hero-name-first {
  display: block;
  font-size: clamp(2.8rem, 5.5vw, 10rem);
  font-weight: 800; color:var(--gold);
  letter-spacing: 0.03em; font-style: normal;
}
.hero-name-last {
  display: block;
  font-size: clamp(4rem, 8.5vw, 10rem);
  font-weight: 800; color: var(--gold);
  letter-spacing: -0.02em; line-height: 0.82;
  margin-top: -0.10em;
}
.hero-name-sub {
  display: flex; justify-content: space-between; align-items: baseline;
  width: 100%;
  font-size: clamp(0.7rem, 0.9vw, 3.0rem);
  font-weight: 300; color: #ffffff;
  letter-spacing: 0.38em; text-transform: uppercase;
  margin-top: 14px; opacity: 0.9;
}
.hero-oab {
  font-size: inherit;
  letter-spacing: 0.38em; color: #ffffff;
  font-weight: 300; white-space: nowrap;
}

.hero-tagline {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  color: rgba(255,255,255,0.62); line-height: 1.85; margin-bottom: 36px;
}
.hero-tagline strong { color: var(--gold); font-weight: 600; }

.hero-whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border: 1px solid var(--gold-border); border-radius: 3px;
  color: var(--gold); font-size: 0.875rem; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; background: transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.hero-whatsapp-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-whatsapp-btn:hover { background: #25d366; border-color: #25d366; color: #fff; transform: translateY(-2px); }

.hero-firm { padding-top: 28px; }
.hero-firm-divider { width: 48px; height: 1px; background: var(--gold-border); margin-bottom: 14px; }
.hero-firm-name {
  font-size: clamp(0.9rem, 1.4vw, 1.2rem);
  color: var(--gold); letter-spacing: 0.28em;
  text-transform: uppercase; font-weight: 300; line-height: 1.3;
}
.hero-firm-sub {
  font-size: 0.72rem; color: var(--gold-dim);
  letter-spacing: 0.38em; text-transform: uppercase;
  font-weight: 300; margin-top: 4px;
}

.hero-deco {
  position: absolute; bottom: 0; left: 0;
  width: 340px; height: 340px;
  pointer-events: none; z-index: 1;
}
.hero-deco svg { width: 100%; height: 100%; }

/* ── Sobre ────────────────────────────────────────────────── */
.about {
  background: var(--bg); position: relative;
  padding: 120px 0; overflow: hidden;
}
.about::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}
.about::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}
.about-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/icons/justiça-ka.png');
  background-size: cover; background-position: center; opacity: 0.04; pointer-events: none;
}
.about-container {
  max-width: 1920px; margin: 0 auto; padding: 0 4% 0 6%;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  grid-template-rows: auto auto;
  column-gap: 64px; row-gap: 36px;
}
.about-text-side {
  display: flex; flex-direction: column; justify-content: flex-start;
  grid-column: 1; grid-row: 2;
  padding: 0;
}

/* Heading "Quem sou?" */
.about-heading-block { grid-column: 1 / -1; grid-row: 1; margin-bottom: 0; }
.about-title {
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 300; color: var(--white);
  line-height: 0.88; font-style: italic;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.about-question-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.4rem);
  color: var(--gold-dim); font-weight: 300; letter-spacing: 0.02em;
}
.about-question-sub strong { color: var(--gold); font-weight: 600; }

.about-text p {
  font-size: clamp(1.05rem,1.35vw,1.2rem); line-height: 2;
  color: #cb8b5b; margin-bottom: 1.4em;
  text-align: justify; text-justify: inter-word;
  hyphens: auto;
}
.about-text p:last-child { margin-bottom: 0; }

/* Carrossel sticky */
.about-carousel-side {
  display: flex; flex-direction: column; align-items: center;
  grid-column: 2; grid-row: 2;
  align-self: center; justify-content: center;
}
.about-carousel {
  overflow: hidden; border-radius: 4px;
  box-shadow: 0 0 0 1px var(--gold-border), 0 40px 80px rgba(0,0,0,0.6);
  width: 100%;
}
.about-carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.about-slide { flex: 0 0 100%; min-width: 0; }
.about-slide img {
  width: 100%; display: block;
  aspect-ratio: 3 / 4; object-fit: cover; object-position: top center;
}
.about-carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.ac-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-border); border: none; cursor: pointer; padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}
.ac-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── Scroll Story (frame molde interativo) ────────────────── */
.scroll-story {
  background: var(--bg); position: relative;
  padding: 100px 0; overflow: hidden;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

/* Marquee */
.marquee-container { overflow: hidden; white-space: nowrap; margin-bottom: 80px; }
.marquee-track     { display: block; }
.marquee-content   {
  display: inline-flex; align-items: center; gap: 48px;
  animation: marqueeRun 22s linear infinite;
  will-change: transform;
}
.marquee-content span {
  font-family: var(--font-main); font-size: clamp(1.8rem,3.5vw,3rem);
  font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-border); user-select: none;
  transition: color 0.3s ease;
}
.marquee-content span.msep { color: var(--gold); font-size: 0.7em; letter-spacing: 0; }
.marquee-container:hover .marquee-content { animation-play-state: paused; }
.marquee-container:hover .marquee-content span:not(.msep) { color: rgba(203,139,91,0.45); }

@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Stats */
.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 40px;
  max-width: 960px; margin: 0 auto; padding: 0 5%; text-align: center;
}
.stat-item { position: relative; }
.stat-item::after {
  content: ''; position: absolute; right: 0; top: 10%; bottom: 10%;
  width: 1px; background: var(--gold-border);
}
.stat-item:last-child::after { display: none; }

.stat-value {
  display: flex; align-items: flex-start; justify-content: center; gap: 4px; line-height: 1;
}
.stat-count {
  font-family: var(--font-main); font-size: clamp(3rem,6vw,6rem);
  font-weight: 300; color: var(--gold); letter-spacing: -0.02em;
}
.stat-suffix {
  font-size: clamp(1.5rem,3vw,3rem); font-weight: 300;
  color: var(--gold-dim); margin-top: 0.1em;
}
.stat-label {
  font-size: 0.78rem; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 14px;
}

.scroll-quote {
  text-align: center; max-width: 700px; margin: 72px auto 0; padding: 0 5%;
}
.scroll-quote blockquote {
  font-family: Georgia, serif; font-style: italic;
  font-size: clamp(1.4rem,2.2vw,1.9rem); line-height: 1.8;
  color: var(--text-muted); letter-spacing: 0.03em;
  position: relative; padding: 0 40px;
}
.scroll-quote blockquote::before,
.scroll-quote blockquote::after {
  content: '"'; font-family: Georgia, serif; font-size: 4rem;
  color: var(--gold-border); position: absolute; line-height: 0.8;
}
.scroll-quote blockquote::before { left: 0; top: 0.2em; }
.scroll-quote blockquote::after  { right: 0; bottom: -0.2em; content: '"'; }

/* ── Serviços ─────────────────────────────────────────────── */
.services {
  position: relative; padding: 120px 0 140px; overflow: hidden;
}

/* Video background */
.services-video-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../assets/images/Create_video_with_images_202606051338.mp4') center / cover no-repeat;
}
.services-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.services-anim-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 10% 90%, rgba(203,139,91,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 90% 10%, #0B243A 0%, transparent 65%);
  animation: bgPulse 8s ease-in-out infinite;
}
.services-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, #0B243A 0%, #0B243A 50%, #0B243A 100%);
}
@keyframes bgPulse { 0%,100% { opacity: 0.8; } 50% { opacity: 1; } }

.services-container {
  max-width: 1680px; margin: 0 auto; padding: 0 3%; position: relative; z-index: 1;
}

.services-title {
  font-size: clamp(3rem,7vw,7.5rem); font-weight: 400; letter-spacing: 0.06em;
  color: var(--gold); text-transform: uppercase; text-align: center; line-height: 1; margin-bottom: 60px;
  position: relative;
}
.services-title::after {
  content: ''; display: block; height: 1px; margin-top: 24px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

/* Tabs */
.services-tabs {
  display: flex; gap: 0; margin-bottom: 56px;
  border: 1px solid var(--gold-border); border-radius: 4px; overflow: hidden;
}
.service-tab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 40px 24px; background: transparent; border: none;
  border-right: 1px solid var(--gold-border);
  color: var(--gold-dim); font-family: var(--font-main);
  font-size: clamp(1rem,1.5vw,1.3rem); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s ease, color 0.3s ease, letter-spacing 0.3s ease;
}
.service-tab:last-child { border-right: none; }
.tab-icon-svg {
  width: 52px; height: 52px;
  color: var(--gold); opacity: 0.6; flex-shrink: 0;
  background: none; border: none; box-shadow: none; border-radius: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-tab.active {
  background: rgba(203,139,91,0.14); color: var(--gold);
  border-bottom: 3px solid var(--gold);
  letter-spacing: 0.22em;
  text-shadow: 0 0 24px rgba(203,139,91,0.35);
}
.service-tab.active .tab-icon-svg { opacity: 1; transform: scale(1.06); }
.service-tab:hover:not(.active) { background: rgba(203,139,91,0.07); color: var(--gold); }
.service-tab:hover .tab-icon-svg { opacity: 0.85; }

/* Panels */
.service-panel { display: none; }
.service-panel.active {
  display: block; animation: panelIn 0.45s var(--ease-out);
  border: 1px solid var(--gold-border); border-radius: 8px;
  padding: 72px 72px 68px; background: rgba(11,36,58,0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(203,139,91,0.12);
}
@keyframes panelIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.panel-content {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto;
  gap: 40px 72px; align-items: start;
}
.panel-title {
  grid-column: 1 / -1;
  font-size: clamp(2.2rem,3.5vw,3.8rem); font-weight: 300; color: var(--gold);
  letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.1;
  text-align: center;
  padding-bottom: 36px; border-bottom: 1px solid var(--gold-border);
  margin-bottom: 4px;
}
.panel-texts p {
  font-size: clamp(1.2rem,1.6vw,1.45rem); line-height: 2;
  color: #cb8b5b; margin-bottom: 1.4em;
  text-align: justify; text-justify: inter-word;
  hyphens: auto;
}
.panel-texts p:last-child { margin-bottom: 0; }

.panel-list {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr; gap: 8px 48px;
  margin-bottom: 44px; align-items: stretch;
}
.panel-list li {
  font-size: clamp(1.15rem,1.45vw,1.35rem); font-weight: 400;
  color: #cb8b5b; letter-spacing: 0.025em;
  padding: 0.6em 0 0.6em 22px; position: relative;
  display: flex; align-items: center; min-height: 4.4rem;
  border-bottom: 1px solid rgba(203,139,91,0.1);
}
.panel-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  opacity: 0.9;
}

.panel-list-block { display: flex; flex-direction: column; }

.panel-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: fit-content; margin: 0 auto;
  padding: 14px 36px; border: 1px solid var(--gold-border); border-radius: 3px;
  color: var(--gold); font-size: 0.875rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; background: transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.panel-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.panel-cta:hover { background: #25d366; border-color: #25d366; color: #fff; transform: translateY(-2px); }

/* ── Depoimentos ──────────────────────────────────────────── */
.testimonials {
  background: var(--bg); position: relative;
  padding: 120px 0; overflow: hidden;
}
.testimonials::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}
.testimonials::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.testimonials-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-title {
  font-size: clamp(2.5rem,5vw,5rem); font-weight: 300; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase; line-height: 1; margin-bottom: 12px;
}
.testimonials-subtitle {
  font-size: 0.8rem; font-weight: 300; color: var(--text-muted); letter-spacing: 0.22em; text-transform: uppercase;
}

.testimonials-slider-wrapper { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.testimonial-card { flex: 0 0 100%; padding: 20px 80px 40px; }

.quote-mark {
  font-family: Georgia, serif; font-size: 7rem; line-height: 0.75;
  color: var(--gold-border); margin-bottom: 20px; user-select: none;
}
.testimonial-text {
  font-size: clamp(1rem,1.4vw,1.15rem); line-height: 1.9; color: var(--gold-dim);
  font-style: italic; margin-bottom: 40px;
}
.testimonial-footer { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: rgba(203,139,91,0.08); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 400; color: var(--gold); letter-spacing: 0.05em;
}
.testimonial-info { flex: 1; }
.testimonial-info strong { display: block; font-size: 1rem; font-weight: 400; color: var(--gold); letter-spacing: 0.05em; }
.testimonial-info span  { font-size: 0.78rem; font-weight: 300; color: var(--text-muted); letter-spacing: 0.08em; }
.testimonial-tag {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dim); border: 1px solid var(--gold-border); padding: 6px 14px; border-radius: 2px; white-space: nowrap;
}

/* Arrows */
.testimonial-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #0B243A; border: 1px solid var(--gold-border);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.testimonial-arrow svg { width: 20px; height: 20px; }
.t-prev { left: 8px; }
.t-next { right: 8px; }
.testimonial-arrow:hover { background: rgba(203,139,91,0.15); border-color: var(--gold-dim); transform: translateY(-50%) scale(1.08); }

/* Dots */
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold-border);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}
.t-dot.active { background: var(--gold); transform: scale(1.35); width: 24px; border-radius: 4px; }

/* ── Escritório ───────────────────────────────────────────── */
.office {
  background: var(--bg); padding: 120px 0 0; position: relative;
}
.office::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}
.office-container {
  max-width: 1440px; margin: 0 auto; padding: 0 5% 0;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
.office-title {
  font-size: clamp(2.2rem,4.5vw,4.5rem); color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 1; margin-bottom: 12px;
}
.office-subtitle { font-size: 0.9rem; font-weight: 300; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 40px; text-transform: uppercase; }

.office-address { font-style: normal; display: flex; flex-direction: column; gap: 4px; margin-bottom: 36px; }
.office-address strong { font-size: 1.1rem; color: var(--gold); letter-spacing: 0.05em; font-weight: 400; }
.office-address span   { font-size: 0.9rem; font-weight: 300; color: var(--gold-dim); letter-spacing: 0.08em; }

.office-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.office-meta-item { display: flex; align-items: center; gap: 12px; }
.meta-icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.office-meta-item span,
.office-phone,
.office-website { font-size: 0.875rem; font-weight: 300; color: var(--gold-dim); letter-spacing: 0.06em; }
.office-phone:hover, .office-website:hover { color: var(--gold); }

.office-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 3px; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--gold-border);
  color: var(--gold); background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease; cursor: pointer;
}
.btn-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); transform: translateY(-2px); }
.btn-whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }
.btn-instagram:hover { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); border-color: transparent; color: #fff; }

.office-map-block { position: relative; }
.map-wrapper { height: 520px; border-radius: 4px 4px 0 0; overflow: hidden; border: 1px solid var(--gold-border); border-bottom: none; position: relative; }
.map-wrapper::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; box-shadow: inset 0 0 0 1px var(--gold-border); border-radius: 4px 4px 0 0; }
.map-wrapper iframe { display: block; width: 100%; height: 100%; filter: invert(90%) hue-rotate(180deg) saturate(0.6) brightness(0.95); }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: #0B243A; border-top: 1px solid var(--gold-border); padding: 40px 5%; }
.footer-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo  { width: 36px; height: 30px; object-fit: contain; opacity: 0.85; }
.footer-name  { font-size: 1rem; color: var(--gold-dim); letter-spacing: 0.05em; }
.footer-nav   { display: flex; gap: 28px; margin-left: auto; }
.footer-nav a { font-size: 0.8rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy  { width: 100%; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.08em; }

/* ── WhatsApp Float ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 90;
  width: 66px; height: 66px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, opacity 0.35s ease;
  opacity: 1; transform: scale(1);
}
.whatsapp-float svg { width: 33px; height: 33px; color: #fff; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ── Scroll Reveal ────────────────────────────────────────── */
[data-reveal] { opacity: 0; will-change: opacity, transform; transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
[data-reveal="fade-up"]    { transform: translateY(48px); }
[data-reveal="fade-left"]  { transform: translateX(-60px); }
[data-reveal="fade-right"] { transform: translateX(60px); }
[data-reveal].revealed { opacity: 1; transform: translate(0); }

/* ── Responsive 1024–1439 ─────────────────────────────────── */
@media (min-width: 1024px) and (max-width: 1439px) {
  .hero-name-first { font-size: clamp(2.5rem,4.5vw,5rem); }
  .hero-name-last  { font-size: clamp(3.5rem,7vw,8rem); }
  .about-container { column-gap: 48px; row-gap: 32px; }
  .panel-content   { gap: 40px 56px; }
  .panel-texts p   { font-size: clamp(1.1rem,1.45vw,1.3rem); }
  .panel-list li   { font-size: clamp(1.05rem,1.3vw,1.2rem); min-height: 4rem; }
  .service-tab     { padding: 34px 22px; }
  .tab-icon-svg    { width: 44px; height: 44px; }
  .office-container{ gap: 56px; }
}

/* ── Responsive Tablet 768–1023 ───────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  :root { --header-h: 70px; }

  .hero-name-first { font-size: clamp(2rem,4vw,4rem); }
  .hero-name-last  { font-size: clamp(3rem,6.5vw,6rem); }

  .about-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 0; row-gap: 40px;
    padding: 0 6%;
  }
  .about-heading-block { grid-column: 1; grid-row: 1; }
  .about-text-side     { grid-column: 1; grid-row: 2; }
  .about-carousel-side { grid-column: 1; grid-row: 3; align-self: auto; }
  .about-text p  { font-size: 1.05rem; line-height: 1.85; }
  .about-slide img { aspect-ratio: 16/9; }

  .scroll-quote blockquote { font-size: clamp(1.2rem,2.5vw,1.5rem); }

  .stats-grid { grid-template-columns: repeat(3,1fr); gap: 24px; }

  .services-tabs { flex-direction: column; }
  .service-tab   {
    border-right: none; border-bottom: 1px solid var(--gold-border);
    font-size: clamp(0.95rem,1.8vw,1.1rem); padding: 22px 20px;
  }
  .service-tab:last-child { border-bottom: none; }
  .tab-icon-svg { width: 38px; height: 38px; }
  .panel-content { grid-template-columns: 1fr; gap: 32px; }
  .panel-texts p { font-size: 1.1rem; }
  .panel-list    { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 4px 0; }
  .panel-list li { font-size: 1.05rem; min-height: 3.6rem; }

  .office-container { grid-template-columns: 1fr; gap: 56px; }
  .map-wrapper      { height: 380px; }
  .footer-nav       { margin-left: 0; }
}

/* ── Responsive Mobile ≤767 ───────────────────────────────── */
@media (max-width: 767px) {
  :root { --header-h: 64px; }

  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: #0B243A; backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center; gap: 40px;
    transform: translateX(100%); transition: transform 0.45s var(--ease-out);
    z-index: 99; border-top: 1px solid var(--gold-border);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.2rem; letter-spacing: 0.2em; }

  .hero { min-height: 100svh; }
  .hero-content { padding: calc(var(--header-h) + 20px) 6% 56px; max-width: 100%; }
  .hero-name-first { font-size: clamp(1.8rem,6vw,3rem); }
  .hero-name-last  { font-size: clamp(2.8rem,9vw,5rem); }
  .hero-name-sub   { font-size: clamp(0.72rem,3vw,0.95rem); letter-spacing: 0.22em; }
  .hero-oab        { font-size: clamp(0.58rem,2.4vw,0.78rem); letter-spacing: 0.1em; }
  .hero-tagline    { font-size: 0.82rem; }
  .hero-deco       { width: 200px; height: 200px; }

  .about { padding: 80px 0; }
  .about-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 0; row-gap: 32px;
    padding: 0 6%;
  }
  .about-heading-block { grid-column: 1; grid-row: 1; }
  .about-text-side     { grid-column: 1; grid-row: 2; }
  .about-carousel-side { grid-column: 1; grid-row: 3; align-self: auto; }
  .about-text p { font-size: 0.95rem; line-height: 1.8; }
  .about-slide img { aspect-ratio: 4/3; }

  .scroll-story { padding: 72px 0; }
  .marquee-container { margin-bottom: 56px; }
  .stats-grid { grid-template-columns: 1fr; gap: 36px; max-width: 280px; }
  .stat-item::after { display: none; }

  .services { padding: 80px 0 100px; }
  .services-title { font-size: clamp(2.5rem,9vw,3.5rem); margin-bottom: 40px; }
  .services-tabs  { flex-direction: column; }
  .service-tab    {
    border-right: none; border-bottom: 1px solid var(--gold-border);
    justify-content: flex-start; padding: 16px 20px;
    font-size: clamp(0.9rem,3.5vw,1.05rem); letter-spacing: 0.12em;
  }
  .service-tab:last-child { border-bottom: none; }
  .tab-icon-svg { width: 30px; height: 30px; }
  .service-panel.active { padding: 28px 20px; }
  .panel-title { font-size: clamp(1.5rem,6vw,2rem); padding-bottom: 20px; }
  .panel-texts p { font-size: 1rem; text-align: left; hyphens: none; }
  .panel-list { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 4px 0; }
  .panel-list li { font-size: 1rem; min-height: 3.4rem; }
  .panel-content  { grid-template-columns: 1fr; gap: 28px; }

  .scroll-quote blockquote { font-size: clamp(1rem,4vw,1.25rem); }

  .testimonials { padding: 80px 0; }
  .testimonials-title { font-size: clamp(2rem,8vw,3rem); }
  .testimonial-card { padding: 16px 24px 32px; }
  .quote-mark   { font-size: 5rem; }
  .testimonial-text { font-size: 0.95rem; }
  .testimonial-footer { flex-wrap: wrap; }
  .testimonial-tag { margin-top: 8px; }
  .t-prev { left: 0; }
  .t-next { right: 0; }

  .office { padding: 80px 0 0; }
  .office-container { grid-template-columns: 1fr; gap: 48px; padding: 0 6%; }
  .office-title { font-size: clamp(1.8rem,7vw,3rem); }
  .office-cta   { flex-direction: column; }
  .btn-cta      { justify-content: center; padding: 15px 24px; }
  .map-wrapper  { height: 300px; }

  .whatsapp-float { bottom: 24px; right: 24px; width: 58px; height: 58px; }
  .whatsapp-float svg { width: 29px; height: 29px; }

  .footer { padding: 32px 5%; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-nav   { margin-left: 0; gap: 20px; flex-wrap: wrap; }
}

@media (max-width: 390px) {
  .hero-name    { font-size: 1.4rem; }
  .hero-subtitle{ font-size: 0.85rem; }
}
