/* ============================================================
   ADVOKAT JELENA DAVIDOV – style.css
   ============================================================ */

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

:root {
  --navy:       #1a2744;
  --navy-dark:  #0f1829;
  --navy-light: #243461;
  --gold:       #b8975a;
  --gold-light: #d4b97a;
  --off-white:  #f8f7f4;
  --gray-50:    #f5f4f1;
  --gray-100:   #eeede9;
  --gray-200:   #d6d4ce;
  --gray-400:   #9b9890;
  --gray-600:   #5c5a55;
  --gray-800:   #2e2c28;
  --white:      #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius:     0.875rem;
  --radius-full: 9999px;
  --shadow-sm:  0 2px 12px rgba(26,39,68,.06);
  --shadow-md:  0 8px 32px rgba(26,39,68,.10);
  --shadow-lg:  0 16px 56px rgba(26,39,68,.14);
  --transition: 0.28s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--off-white); color: var(--navy); -webkit-font-smoothing: antialiased; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
section[id] { scroll-margin-top: 80px; }

.hidden { display: none !important; }

/* ── Utility ────────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-white-muted { color: rgba(255,255,255,.55); }
.bg-white    { background: var(--white); }
.bg-off-white{ background: var(--off-white); }
.bg-navy     { background: var(--navy); }
.bg-navy-dark{ background: var(--navy-dark); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.section { padding: 7rem 0; }

/* ── Eyebrow ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.eyebrow-line { display: inline-block; width: 2rem; height: 1px; background: var(--gold); }
.eyebrow-center { display: flex; justify-content: center; }

/* ── Section header ─────────────────────────────────────────── */
.section-header { max-width: 38rem; }
.section-header.center { text-align: center; max-width: 38rem; margin: 0 auto 4rem; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title.text-white { color: var(--white); }
.section-sub {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.7;
}
.section-sub.text-white-muted { color: rgba(255,255,255,.55); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold   { background: var(--gold); color: var(--white); box-shadow: 0 4px 20px rgba(184,151,90,.35); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 6px 28px rgba(184,151,90,.45); transform: translateY(-1px); }
.btn-navy   { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,.3); color: var(--white); }
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); }
.btn-outline-navy { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); padding: 1rem; }

/* ── Spinner ────────────────────────────────────────────────── */
.spinner {
  width: 1rem; height: 1rem;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ──────────────────────────────────────────────────────────────
   NAVBAR
   ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(26,39,68,.08);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  height: 5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 3rem; } }

.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: background var(--transition);
}
.nav-logo:hover .nav-logo-icon { background: var(--navy-light); }
.nav-logo-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.nav-logo-name {
  display: block; font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 600; color: var(--white); letter-spacing: .02em; line-height: 1.2;
  transition: color var(--transition);
}
.nav-logo-title { display: block; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  font-size: .85rem; letter-spacing: .03em; color: rgba(255,255,255,.8);
  position: relative; padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

.lang-switch { display: none; align-items: center; gap: .35rem; font-size: .78rem; letter-spacing: .03em; }
@media (min-width: 768px) { .lang-switch { display: flex; } }
.lang-switch-item { color: rgba(255,255,255,.55); transition: color var(--transition); padding: .25rem .15rem; }
.lang-switch-item:hover { color: var(--white); }
.lang-switch-item.is-active { color: var(--gold); font-weight: 600; pointer-events: none; }
.lang-switch-sep { color: rgba(255,255,255,.25); }
.navbar.scrolled .lang-switch-item { color: rgba(26,39,68,.5); }
.navbar.scrolled .lang-switch-item:hover { color: var(--navy); }
.navbar.scrolled .lang-switch-item.is-active { color: var(--gold); }
.navbar.scrolled .lang-switch-sep { color: rgba(26,39,68,.25); }

.drawer-lang-switch {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .85rem 0; margin-top: .25rem; border-bottom: 1px solid var(--gray-100);
  font-size: .85rem;
}
.drawer-lang-switch .lang-switch-item { color: var(--gray-600); padding: .2rem .5rem; }
.drawer-lang-switch .lang-switch-item.is-active { color: var(--gold); }
.drawer-lang-switch .lang-switch-sep { color: var(--gray-200); }

.nav-burger {
  display: flex; flex-direction: column; gap: 5px; padding: .5rem;
  color: var(--white);
  transition: color var(--transition);
}

.navbar.scrolled .nav-logo-name { color: var(--navy); }
.navbar.scrolled .nav-link { color: rgba(26,39,68,.7); }
.navbar.scrolled .nav-link:hover { color: var(--navy); }
.navbar.scrolled .nav-burger { color: var(--navy); }
@media (min-width: 768px) { .nav-burger { display: none; } }
.nav-burger span {
  display: block; width: 1.5rem; height: 1.5px;
  background: currentColor; border-radius: 2px;
  transition: all .25s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid var(--gray-100);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.nav-drawer.open { display: flex; }
.drawer-link {
  font-size: 1rem; color: var(--navy); padding: .7rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.drawer-link:last-of-type { border-bottom: none; }
.drawer-link:hover { color: var(--gold); }
.drawer-cta { margin-top: .75rem; text-align: center; }

/* ──────────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--navy-dark); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,24,41,.97) 0%, rgba(15,24,41,.82) 55%, rgba(15,24,41,.4) 100%);
}
.hero-gold-line {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); display: none;
}
@media (min-width: 1024px) { .hero-gold-line { display: block; } }

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: stretch; gap: 2.5rem;
  padding-top: 8rem; padding-bottom: 6rem;
}
@media (min-width: 1024px) {
  .hero-inner { flex-direction: row; align-items: center; gap: 4rem; }
}
.hero-content { flex: 1; max-width: 42rem; }

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; color: var(--white);
  line-height: 1.05; letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(2rem);
  animation: heroIn .9s ease .1s forwards;
}
@keyframes heroIn { to { opacity: 1; transform: none; } }

.hero-sub {
  font-family: var(--font-sans); font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 2.5rem; max-width: 36rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }

.hero-trust {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 480px) { .hero-trust { grid-template-columns: repeat(4, 1fr); } }
.trust-number {
  display: block; font-family: var(--font-serif);
  font-size: 1.9rem; font-weight: 600; color: var(--gold); line-height: 1.1;
}
.trust-label {
  display: block; font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .2rem;
}

.hero-card { display: block; order: -1; width: 100%; max-width: 22rem; margin: 0 auto; }
@media (min-width: 1024px) { .hero-card { order: 0; width: 22rem; max-width: 22rem; flex-shrink: 0; margin: 0; } }
.hero-photo-wrap {
  position: relative; border-radius: 1.25rem;
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.1);
}
.hero-photo {
  width: 100%; height: 24rem; object-fit: cover;
  transform: scale(1.22); transform-origin: 50% 4%;
}
@media (min-width: 1024px) { .hero-photo { height: 32.5rem; transform-origin: 50% 32%; } }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,24,41,.8) 0%, transparent 60%);
}
.hero-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
}
.photo-name {
  display: block; font-family: var(--font-serif); font-style: italic;
  font-size: 1.3rem; color: var(--white); margin-bottom: .2rem;
}
.photo-title { display: block; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.3); animation: bounce 2s ease infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ──────────────────────────────────────────────────────────────
   PRACTICE AREAS
   ────────────────────────────────────────────────────────────── */
.section-header { margin-bottom: 4rem; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }

.area-card {
  display: block;
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.area-card:hover {
  border-color: rgba(184,151,90,.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.area-icon {
  width: 2.75rem; height: 2.75rem; border-radius: .75rem;
  background: rgba(26,39,68,.05); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--navy);
  transition: background var(--transition), color var(--transition);
}
.area-card:hover .area-icon { background: rgba(184,151,90,.12); color: var(--gold); }
.area-title {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500;
  color: var(--navy); margin-bottom: .5rem;
}
.area-desc { font-size: .87rem; font-weight: 300; color: var(--gray-600); line-height: 1.65; }
.area-more {
  display: block; margin-top: 1.25rem; font-size: .75rem; font-weight: 500;
  letter-spacing: .05em; color: var(--gold);
  opacity: 0; transition: opacity var(--transition);
}
.area-card:hover .area-more { opacity: 1; }

/* ──────────────────────────────────────────────────────────────
   PRACTICE AREA — DETAIL PAGE
   ────────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy-dark);
  padding: 10rem 0 4.5rem;
  text-align: center;
}
.breadcrumb {
  display: flex; justify-content: center; align-items: center;
  gap: .5rem; margin-bottom: 2rem;
  font-size: .8rem; color: rgba(255,255,255,.45);
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }

.page-hero-icon {
  width: 4rem; height: 4rem; margin: 0 auto 1.5rem;
  border-radius: 50%; background: rgba(184,151,90,.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.page-hero-icon svg { width: 1.75rem; height: 1.75rem; }

.page-hero-title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem;
}
.page-hero-lead {
  max-width: 42rem; margin: 0 auto;
  font-size: 1rem; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.6);
}

.page-content { max-width: 42rem; margin: 0 auto; }
.page-content p { font-size: .95rem; font-weight: 300; color: var(--gray-600); line-height: 1.75; margin-bottom: 1.5rem; }
@media (min-width: 640px) {
  .page-content p { text-align: justify; }
}

.page-list { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0 2.5rem; }
.page-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .92rem; color: color-mix(in oklch, var(--navy) 85%, transparent);
}

/* ──────────────────────────────────────────────────────────────
   ABOUT
   ────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid; gap: 4rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-image-side { position: relative; }
.about-img-wrap { position: relative; border-radius: 1.25rem; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img { width: 100%; height: 31.25rem; object-fit: cover; }
@media (min-width: 1024px) { .about-img { height: 37.5rem; } }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,.3) 0%, transparent 60%);
}
.about-stat-card {
  display: none;
  position: absolute; bottom: -2rem; right: -2.5rem;
  background: var(--white); border-radius: 1.25rem;
  box-shadow: var(--shadow-lg); padding: 1.5rem;
  border: 1px solid var(--gray-100);
}
@media (min-width: 640px) { .about-stat-card { display: block; } }
.stat-big {
  display: block; font-family: var(--font-serif);
  font-size: 2.5rem; font-weight: 300; color: var(--navy); line-height: 1.1;
}
.stat-small {
  display: block; font-size: .82rem; font-weight: 300;
  color: var(--gray-600); line-height: 1.5; margin-top: .25rem;
}
.about-gold-bar {
  display: none;
  position: absolute; left: -1rem; top: 3rem; bottom: 3rem;
  width: 3px; background: var(--gold); border-radius: 2px;
}
@media (min-width: 1024px) { .about-gold-bar { display: block; } }

.about-content .eyebrow { margin-bottom: 1.25rem; }
.about-text { margin-bottom: 2rem; }
.about-text p {
  font-size: .95rem; font-weight: 300; color: var(--gray-600);
  line-height: 1.75; margin-bottom: 1rem;
}
.about-highlights { margin-bottom: 2rem; }
.about-highlights li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .9rem; font-weight: 300; color: var(--gray-800);
  padding: .4rem 0;
}
.check-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ──────────────────────────────────────────────────────────────
   WHY US
   ────────────────────────────────────────────────────────────── */
.why-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  position: relative; background: rgba(255,255,255,.05); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid rgba(255,255,255,.1);
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.1); border-color: rgba(184,151,90,.3); }
.why-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-serif); font-size: 3.5rem; font-weight: 300;
  color: rgba(255,255,255,.08); line-height: 1; user-select: none;
}
.why-icon {
  width: 2.75rem; height: 2.75rem; border-radius: .75rem;
  background: rgba(184,151,90,.15); display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.why-card:hover .why-icon { background: rgba(184,151,90,.25); }
.why-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--white); margin-bottom: .5rem; }
.why-desc { font-size: .85rem; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ──────────────────────────────────────────────────────────────
   STATS
   ────────────────────────────────────────────────────────────── */
.stats-section {
  position: relative; padding: 5rem 0;
  background: var(--navy-dark); overflow: hidden;
}
.stats-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: rgba(184,151,90,.2);
}
.stats-line-top { top: 0; }
.stats-line-bottom { bottom: 0; }

.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300; color: var(--white); line-height: 1; margin-bottom: .5rem;
}
.stat-label {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500;
  color: var(--white); margin-bottom: .25rem;
}
.stat-sub { font-size: .75rem; font-weight: 300; color: rgba(255,255,255,.4); }

/* ──────────────────────────────────────────────────────────────
   PROCESS
   ────────────────────────────────────────────────────────────── */
.process-grid {
  position: relative;
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-connector {
  display: none;
  position: absolute; top: 3rem; left: 12.5%; right: 12.5%; height: 1px;
  background: var(--gray-200); z-index: 0;
}
@media (min-width: 1024px) { .process-connector { display: block; } }

.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 1;
}
.process-circle {
  width: 6rem; height: 6rem; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray-200);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}
.process-step:hover .process-circle { border-color: var(--gold); }
.process-num { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); font-weight: 300; }
.process-divider { display: block; width: 2rem; height: 1px; background: var(--gray-200); margin: .25rem 0; }
.process-korak { font-size: .7rem; letter-spacing: .1em; color: rgba(26,39,68,.4); }
.process-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--navy); margin-bottom: .75rem; }
.process-desc { font-size: .87rem; font-weight: 300; color: var(--gray-600); line-height: 1.65; }
.process-cta { text-align: center; margin-top: 4rem; }

/* ──────────────────────────────────────────────────────────────
   TEAM / NAŠ TIM
   ────────────────────────────────────────────────────────────── */
.section-dark {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background: var(--navy-dark);
}
.section-dark .container { position: relative; z-index: 1; }

.bg-jd-watermark {
  position: absolute; top: 50%; right: 1rem;
  transform: translateY(-50%);
  font-family: 'Parisienne', cursive; font-weight: 400;
  font-size: 13rem; line-height: 1;
  color: rgba(255,255,255,.1);
  pointer-events: none; user-select: none; z-index: 0;
}

.label-line { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem; }
.line-accent { display: inline-block; width: 2rem; height: 1px; background: var(--gold); }
.label-text { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }

h2.light {
  font-family: var(--font-serif); font-weight: 300; color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15;
}
h2.light em { font-style: italic; color: var(--gold); }
.max-2col { max-width: 38rem; }

.team-grid {
  display: grid; grid-template-columns: 1fr; align-items: center;
  gap: 2.5rem; margin-top: 3.5rem;
}
@media (min-width: 900px) { .team-grid { grid-template-columns: 1fr 1.3fr; gap: 3.5rem; } }

.team-img-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.team-img-frame img { width: 100%; height: 26rem; object-fit: cover; display: block; }
@media (min-width: 900px) { .team-img-frame img { height: 32rem; } }
.team-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,24,41,.85) 0%, transparent 55%);
}
.team-name-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; }
.team-name-overlay h3 {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 1.3rem; color: var(--white); margin-bottom: .2rem;
}
.team-name-overlay span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

.team-info-col p { font-size: .92rem; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 1.25rem; }

.team-credentials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin: 2rem 0; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.tc-label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.tc-value { font-size: .87rem; font-weight: 300; color: rgba(255,255,255,.75); line-height: 1.4; }

.team-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.team-link {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,.15); border-radius: var(--radius-full);
  font-size: .85rem; font-weight: 300; color: var(--white);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.team-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,151,90,.08); }

.reveal-up { opacity: 0; transform: translateY(2rem); transition: opacity .7s ease, transform .7s ease; }
.reveal-up.revealed { opacity: 1; transform: none; }

/* ──────────────────────────────────────────────────────────────
   TESTIMONIALS
   ────────────────────────────────────────────────────────────── */
.testimonials-header {
  display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 4rem;
}
@media (min-width: 640px) {
  .testimonials-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.testimonials-nav { display: flex; gap: .75rem; }
.testi-btn {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}
.testi-btn:hover { border-color: var(--gold); color: var(--gold); }

.testimonials-cards {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-cards { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  background: rgba(255,255,255,.05); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid rgba(255,255,255,.1);
  transition: border-color var(--transition);
}
.testi-card:hover { border-color: rgba(184,151,90,.3); }
.testi-quote { color: rgba(184,151,90,.3); margin-bottom: 1rem; }
.testi-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testi-stars svg { color: var(--gold); fill: var(--gold); }
.testi-text {
  font-size: .87rem; font-weight: 300; color: rgba(255,255,255,.65);
  line-height: 1.75; margin-bottom: 1.5rem;
}
.testi-author {
  display: flex; align-items: center; gap: .75rem;
  padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1);
}
.testi-avatar {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(184,151,90,.2); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1rem; color: var(--gold); flex-shrink: 0;
}
.testi-name { font-family: var(--font-serif); font-size: 1rem; color: var(--white); line-height: 1.2; }
.testi-role { font-size: .75rem; color: rgba(255,255,255,.4); }

.testi-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2.5rem; }
.testi-dot {
  height: 6px; border-radius: var(--radius-full);
  background: rgba(255,255,255,.2);
  transition: all var(--transition); border: none; cursor: pointer;
  width: 6px;
}
.testi-dot.active { width: 2rem; background: var(--gold); }

/* ──────────────────────────────────────────────────────────────
   FAQ
   ────────────────────────────────────────────────────────────── */
.faq-grid {
  display: grid; gap: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 2fr 3fr; align-items: start; } }

.faq-left .section-sub { margin-bottom: 2rem; }

.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden; margin-bottom: .75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.active { border-color: rgba(184,151,90,.4); box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; text-align: left;
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500; color: var(--navy);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--navy); }
.faq-icon {
  flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 50%;
  background: var(--gray-100); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.faq-item.active .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }

.faq-a {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  font-size: .88rem; font-weight: 300; color: var(--gray-600); line-height: 1.75;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.active .faq-a { max-height: 20rem; padding-bottom: 1.25rem; }

/* ──────────────────────────────────────────────────────────────
   ARTICLES
   ────────────────────────────────────────────────────────────── */
.articles-header {
  display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .articles-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.articles-all {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .87rem; letter-spacing: .03em; color: var(--navy);
  border-bottom: 1px solid rgba(26,39,68,.2); padding-bottom: 2px;
  transition: color var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.articles-all:hover { color: var(--gold); border-color: var(--gold); }

.articles-header-actions { display: flex; align-items: center; gap: 1.5rem; }
.articles-nav { display: flex; gap: .75rem; }
.article-btn {
  width: 2.75rem; height: 2.75rem; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--gray-200); color: var(--navy); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}
.article-btn:hover { border-color: var(--gold); color: var(--gold); }
.article-btn:disabled { opacity: .35; pointer-events: none; }

.articles-grid {
  display: flex; gap: 1.75rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
  margin: 0 -1.5rem; padding: 0 1.5rem .5rem;
}
.articles-grid::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .articles-grid { margin: 0; padding: 0 0 .5rem; } }

.article-card {
  display: block; flex: 0 0 85%; scroll-snap-align: start;
  background: var(--off-white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 640px) { .article-card { flex-basis: calc((100% - 1.75rem) / 2); } }
@media (min-width: 1024px) { .article-card { flex-basis: calc((100% - 2 * 1.75rem) / 3); } }
.article-card:hover { border-color: rgba(184,151,90,.3); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-img-wrap { position: relative; height: 13rem; overflow: hidden; }
.article-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .article-img { transform: scale(1.05); }
.article-cat {
  position: absolute; top: 1rem; left: 1rem;
  padding: .3rem .85rem; background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px); color: var(--navy);
  border-radius: var(--radius-full); font-size: .73rem; letter-spacing: .03em;
}
.article-body { padding: 1.5rem; }
.article-meta { font-size: .75rem; color: var(--gray-400); margin-bottom: .75rem; }
.article-title {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500;
  color: var(--navy); line-height: 1.35; margin-bottom: .75rem;
  transition: color var(--transition);
}
.article-card:hover .article-title { color: var(--navy-light); }
.article-excerpt { font-size: .85rem; font-weight: 300; color: var(--gray-600); line-height: 1.65; margin-bottom: 1rem; }
.article-read {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .77rem; font-weight: 500; letter-spacing: .04em; color: var(--gold);
  transition: gap var(--transition);
}
.article-card:hover .article-read { gap: .65rem; }

/* ──────────────────────────────────────────────────────────────
   BLOG ARTICLE
   ────────────────────────────────────────────────────────────── */
.blog-hero { position: relative; background: var(--navy-dark); padding-top: 5.5rem; overflow: hidden; }
.blog-hero-media { position: relative; height: 20rem; }
@media (min-width: 768px) { .blog-hero-media { height: 25rem; } }
.blog-hero-img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.blog-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-dark) 0%, rgba(15,24,41,.6) 55%, rgba(15,24,41,.8) 100%);
}
.blog-hero-inner { position: relative; z-index: 1; margin-top: -8rem; padding-bottom: 3rem; }
.blog-breadcrumb { justify-content: flex-start; margin-bottom: 1.5rem; }
.blog-cat {
  display: inline-block; padding: .3rem .9rem; border-radius: var(--radius-full);
  background: rgba(184,151,90,.15); border: 1px solid rgba(184,151,90,.35);
  color: var(--gold); font-size: .73rem; letter-spacing: .05em; text-transform: uppercase;
}
.blog-hero-title {
  font-family: var(--font-serif); font-weight: 400; line-height: 1.2;
  font-size: clamp(1.85rem, 4vw, 2.75rem); color: var(--white);
  max-width: 46rem; margin: 1.1rem 0 1.35rem;
}
.blog-meta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem;
  font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.55);
}
.blog-meta-row .dot { color: rgba(255,255,255,.3); }

.blog-body-wrap { padding: 4.5rem 0; }
.blog-back {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 500; letter-spacing: .03em; color: var(--gold);
  margin-bottom: 2.5rem; transition: gap var(--transition);
}
.blog-back:hover { gap: .7rem; }
.blog-content { max-width: 42rem; margin: 0 auto; }
.blog-content > p { font-size: .95rem; font-weight: 300; color: var(--gray-600); line-height: 1.8; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .blog-content > p { text-align: justify; } }
.blog-content h2 {
  font-family: var(--font-serif); font-weight: 500; font-size: 1.5rem;
  color: var(--navy); margin: 2.75rem 0 1.1rem; line-height: 1.3;
}
.blog-content h2:first-child { margin-top: 0; }
.blog-content ul { display: flex; flex-direction: column; gap: .7rem; margin: 1rem 0 1.75rem; }
.blog-content ul li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .92rem; font-weight: 300; color: var(--gray-600); line-height: 1.65;
}
.blog-content ul li::before {
  content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); margin-top: .65rem;
}
.blog-callout {
  background: var(--off-white); border-left: 3px solid var(--gold);
  border-radius: .5rem; padding: 1.75rem 2rem; margin: 2.75rem 0 1rem;
}
.blog-callout h2, .blog-callout h3 { margin-top: 0 !important; }
.blog-callout p { font-size: .92rem; font-weight: 300; color: var(--gray-600); line-height: 1.75; margin: 0; }

/* ──────────────────────────────────────────────────────────────
   CONTACT
   ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 2.75rem; height: 2.75rem; flex-shrink: 0;
  border-radius: .75rem; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon-whatsapp { background: #25D366; color: #fff; border-color: transparent; }
.contact-icon-viber { background: #7360F2; color: #fff; border-color: transparent; }
.contact-label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .25rem; }
.contact-value { font-size: .87rem; font-weight: 300; color: var(--white); transition: color var(--transition); }
a.contact-value:hover { color: var(--gold); }
.contact-secondary { font-size: .77rem; font-weight: 300; color: rgba(255,255,255,.5); margin-top: .2rem; }

.contact-map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1); height: 13rem; margin-top: .5rem;
}

/* Form */
.contact-form-wrap { position: relative; }
.contact-form {
  background: rgba(255,255,255,.05); border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.1); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.form-row { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: .75rem; padding: .75rem 1rem;
  color: var(--white); font-family: var(--font-sans); font-size: .88rem; font-weight: 300;
  outline: none; transition: border-color var(--transition); width: 100%;
  appearance: none; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(184,151,90,.6); }
.form-group select option { background: var(--navy); }
.form-group textarea { resize: none; }

.form-note { font-size: .75rem; color: rgba(255,255,255,.3); text-align: center; }

.form-success {
  background: rgba(255,255,255,.05); border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.1); padding: 4rem 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1rem;
}
.success-icon {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: rgba(184,151,90,.2); color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: .5rem;
}
.form-success h3 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; color: var(--white); }
.form-success p { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.55); }

/* ──────────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.05);
}
.site-footer .container { padding-top: 4rem; padding-bottom: 2.5rem; }

.footer-grid {
  display: grid; gap: 2.5rem; margin-bottom: 3.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-logo-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.footer-logo-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 500; color: var(--white); }
.footer-logo-title { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.footer-brand-desc { font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.65; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social-btn {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center;
  transition: color var(--transition), border-color var(--transition);
}
.footer-social-btn:hover { color: var(--gold); border-color: rgba(184,151,90,.4); }

.footer-col-title { font-size: .84rem; font-weight: 500; color: var(--white); letter-spacing: .03em; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.footer-links li { font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.5; }
.footer-links a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.05);
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .75rem; color: rgba(255,255,255,.25); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ──────────────────────────────────────────────────────────────
   SCROLL-REVEAL  (JS adds .revealed)
   ────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(2rem);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }


/* =========================================================
   ABOUT
   ========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 3.5rem;
}

.about-media {
  position: relative;
  min-width: 0;
}

.about-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  display: none;
  position: absolute;
  bottom: -1.75rem;
  right: -1.25rem;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 24px 48px -12px rgba(15, 24, 41, 0.28), 0 4px 12px rgba(15, 24, 41, 0.06);
}

.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
  color: var(--navy);
}

.about-badge-label {
  margin-top: 0.35rem;
  max-width: 9rem;
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--gray-600);
}

.about-title {
  margin-top: 1rem;
  font-size: 1.875rem;
}

.about-body p {
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .about-body p { text-align: justify; }
}

.about-body p + p {
  margin-top: 1rem;
}

.about-points {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: color-mix(in oklch, var(--foreground) 85%, transparent);
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(26,39,68,.25);
}

.check svg {
  width: 0.8rem;
  height: 0.8rem;
  stroke-width: 3;
}

.about-btn {
  margin-top: 2.25rem;
}

@media (min-width: 640px) {
  .about-badge {
    display: block;
  }

  .about-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 5rem;
  }

  .about-badge {
    right: -2.5rem;
  }
}
/* ============================================================
   TEAM SECTION / NAŠ TIM
============================================================ */

.section-dark {
  position: relative;
}

.bg-jd-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 20rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(253, 250, 245, 0.02);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.team-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

.team-img-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.team-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 15, 34, 0.8) 0%,
    rgba(6, 15, 34, 0.1) 50%,
    transparent 100%
  );
}

.team-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.team-name-overlay h3 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
}

.team-name-overlay span {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 0.25rem;
}

.team-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.team-info-col p {
  color: rgba(253, 250, 245, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
}

.team-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid rgba(253, 250, 245, 0.1);
  padding-top: 2rem;
}

.tc-label {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.tc-value {
  color: rgba(253, 250, 245, 0.8);
  font-size: 0.875rem;
  line-height: 1.5;
}

.team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.team-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: rgba(253, 250, 245, 0.6);
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: border-color 0.3s, color 0.3s;
}

.team-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}