/* ═══════════════════════════════════════
   TOKENS
════════════════════════════════════════ */
:root {
  --ink:     #1A1816;
  --bg:      #F7F4EF;
  --dark:    #1A1816;
  --gold:    #A8894E;
  --gold-lt: #C9A966;
  --mid:     #6B6460;
  --rule:    #DED9D0;
  --card:    #F0EDE6;
}

/* ═══════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0.5rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(26, 24, 22, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.2rem 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo { height: 100px; display: block; }
.nav-links {
  /*position: absolute; left: 50%; transform: translateX(-50%);*/
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-lt);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-toggle {
  display: flex; gap: 2px;
  background: rgba(255,255,255,0.08); border-radius: 3px; padding: 3px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  padding: 3px 10px; border-radius: 2px; transition: all 0.2s;
}
.lang-btn.active { background: var(--gold); color: #fff; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; border: none; background: none; padding: 10px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.7); transition: all 0.3s;
}

/* ═══════════════════════════════════════
   MOBILE MENU
════════════════════════════════════════ */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(26,24,22,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  overflow-y: auto; padding: 250px 1rem 3rem;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 500;
  color: rgba(255,255,255,0.8); text-decoration: none;
  transition: color 0.2s; letter-spacing: 0.01em;
}
.mobile-menu a:hover { color: var(--gold-lt); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
[data-reveal] { opacity: 0; transition: opacity 0.85s ease, transform 0.85s ease; }
[data-reveal="up"]    { transform: translateY(36px); }
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal].visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  background: var(--dark); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-tex {
  position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 38px,
      rgba(255,255,255,0.013) 38px, rgba(255,255,255,0.013) 39px),
    radial-gradient(ellipse 80% 60% at 72% 28%, rgba(168,137,78,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 55% 40% at 18% 82%, rgba(168,137,78,0.07) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
  max-width: 780px; width: 100%;
}
.hero-logo { height: 150px; margin-bottom: 3.5rem; opacity: 0.92; }
.hero-eyebrow {
  font-size: 0.66rem; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7.5vw, 5.8rem);
  font-weight: 500; color: #fff;
  line-height: 1.04; letter-spacing: -0.015em;
  margin-bottom: 1.75rem;
}
.hero-rule {
  width: 46px; height: 1px; background: var(--gold);
  margin: 0 auto 1.75rem;
}
.hero-tagline {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.5); line-height: 1.85;
  max-width: 420px; margin: 0 auto 2.75rem;
  text-wrap: pretty;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.95rem 2.5rem;
  background: var(--gold); color: #fff; text-decoration: none;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
}
.hero-cta:hover { background: var(--gold-lt); transform: translateY(-2px); }
.hero-cta svg { transition: transform 0.25s; }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-scroll {
  position: absolute; bottom: 2.25rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.22); font-size: 0.58rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  animation: floatDown 2.8s ease-in-out infinite;
}
@keyframes floatDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════
   SHARED LABELS & TITLES
════════════════════════════════════════ */
.lbl {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.9rem; display: block;
}
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 500; line-height: 1.08; letter-spacing: -0.012em;
}

/* ═══════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-outer { padding: 9rem 3.5rem; }
.about-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center;
}
.about-text {
  font-size: 1.025rem; font-weight: 300;
  color: var(--mid); line-height: 1.9; margin-top: 1.5rem; text-wrap: pretty;
}
.about-vis {
  display: flex; align-items: center; justify-content: center;
}
.about-img {
  width: 100%; height: auto; display: block;
}

/* ═══════════════════════════════════════
   LAWYERS
════════════════════════════════════════ */
.lawyers-outer { background: var(--dark); padding: 8rem 3.5rem; }
.lawyers-hd { text-align: center; margin-bottom: 5rem; }
.lawyers-hd .h2 { color: #fff; }
.lawyers-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  max-width: 960px; margin: 0 auto;
}
.lawyer-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.lawyer-card:hover {
  border-color: rgba(168,137,78,0.35);
  transform: translateY(-6px);
}
.photo-slot {
  width: 100%; aspect-ratio: 3 / 4; display: block; margin-bottom: 2.25rem;
  object-fit: cover; object-position: top center;
}
.lawyer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 500; color: #fff; margin-bottom: 0.2rem;
}
.lawyer-name sup { font-size: 0.58em; vertical-align: super; }
.lawyer-rule { width: 34px; height: 1px; background: var(--gold); margin: 0.85rem 0; }
.lawyer-role {
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1.25rem;
}
.lawyer-specs { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.75rem; }
.lawyer-specs li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.5);
}
.lawyer-specs li::before {
  content: ''; display: block; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
}
.lawyer-bio {
  font-size: 0.875rem; font-weight: 300; color: rgba(255,255,255,0.45);
  line-height: 1.8; margin-bottom: 1.25rem; text-wrap: pretty;
}
.lawyer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.lawyer-email {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; color: var(--gold-lt); text-decoration: none;
  opacity: 0.7; transition: opacity 0.2s;
}
.lawyer-email:hover { opacity: 1; }

/* ═══════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services-outer { padding: 8rem 3.5rem; }
.services-hd { max-width: 1160px; margin: 0 auto 3.5rem; }
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1160px; margin: 0 auto;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.svc {
  padding: 3rem; border-bottom: 1px solid var(--rule); border-right: 1px solid var(--rule);
  position: relative; overflow: hidden; transition: background 0.3s;
}
.svc::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 0; background: var(--gold); transition: height 0.45s ease;
}
.svc:hover::before { height: 100%; }
.svc:hover { background: rgba(168,137,78,0.025); }
.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 400; color: var(--rule); line-height: 1; margin-bottom: 0.6rem;
}
.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 500; margin-bottom: 0.3rem;
}
.svc-en {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.85rem;
}
.svc-desc { font-size: 0.875rem; font-weight: 300; color: var(--mid); line-height: 1.8; text-wrap: pretty; }

/* ═══════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-outer { background: var(--dark); padding: 8rem 3.5rem; }
.contact-grid {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start;
}
.contact-grid .h2 { color: #fff; }
.contact-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.4); line-height: 1.85; margin-top: 1rem; text-wrap: pretty;
}
.contact-list { display: flex; flex-direction: column; gap: 2.25rem; }
.contact-row { display: flex; gap: 1.3rem; align-items: flex-start; }
.ci {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(168,137,78,0.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); margin-top: 1px;
}
.c-lbl {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.c-val {
  font-size: 0.925rem; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.7;
}
.c-val a { color: inherit; text-decoration: none; transition: color 0.2s; }
.c-val a:hover { color: var(--gold-lt); }
.c-map {
  display: inline-block; margin-top: 0.55rem;
  font-size: 0.7rem; color: var(--gold-lt);
  text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s;
}
.c-map:hover { color: #fff; }

/* ═══════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #0E0D0C;
  padding: 2.25rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { height: 36px; opacity: 0.32; }
.footer-copy { font-size: 0.68rem; font-weight: 300; color: rgba(255,255,255,0.2); }
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a { font-size: 0.68rem; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 860px) {
  html { scroll-padding-top: 80px; }
  .nav { padding: 0.5rem 1.5rem;}
  .nav.scrolled { padding: 0.1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .lang-toggle { display: none; }

  .hero-logo { height: 80px; margin-bottom: 2.5rem; }
  .hero-cta { padding: 0.85rem 1.8rem; }

  .about-outer { padding: 5.5rem 1.5rem; overflow: hidden;}
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-vis { display: none; }

  .lawyers-outer { padding: 5.5rem 1.5rem; overflow: hidden;}
  .lawyers-grid { grid-template-columns: 1fr; gap: 2rem; }

  .services-outer { padding: 5.5rem 1.5rem; overflow: hidden;}
  .services-grid { grid-template-columns: 1fr; }

  .contact-outer { padding: 5.5rem 1.5rem; overflow: hidden;}
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }

  .footer { padding: 2rem 1.5rem; flex-direction: column; gap: 1.25rem; text-align: center; }
  .footer-nav { justify-content: center; }
}
