@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --burgundy:   #4A1212;
  --terracotta: #C1604A;
  --gold:       #B8960C;
  --gold-light: #D4A843;
  --blush:      #F5E8E0;
  --off-white:  #FAF7F4;
  --dark:       #150808;
  --mid:        #6B2020;
  --white:      #FFFFFF;
  --text:       #2C1010;
  --text-light: #8A6060;
  --nav-h:      104px;
  --max-w:      1200px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Montserrat', sans-serif; background: var(--off-white); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 0.95rem; line-height: 1.85; color: var(--text-light); font-weight: 300; }
.label { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.display { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 300; font-style: italic; line-height: 1.6; }

/* ── Navigation ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
nav.scrolled {
  background: rgba(250, 247, 244, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(74, 18, 18, 0.08);
}
.nav-logo {
  display: flex; flex-direction: column; gap: 2px;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem; font-weight: 600; letter-spacing: 0.18em;
  color: var(--white); transition: color 0.4s;
}
nav.scrolled .nav-logo-name { color: var(--burgundy); }
.nav-logo-rule {
  width: 100%; height: 1px; background: var(--gold); opacity: 0.8;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
nav.scrolled .nav-links a { color: var(--text-light); }
nav.scrolled .nav-links a:hover { color: var(--burgundy); }
.nav-cta {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.4); color: var(--white);
  transition: all 0.3s; background: transparent;
}
.nav-cta:hover { background: var(--white); color: var(--burgundy); }
nav.scrolled .nav-cta { border-color: var(--burgundy); color: var(--burgundy); }
nav.scrolled .nav-cta:hover { background: var(--burgundy); color: var(--white); }

/* Language switcher — flags below logo */
.lang-switcher { position: absolute; left: 5%; bottom: 14px; display: flex; gap: 7px; align-items: center; }
.lang-switcher a { font-size: 1.28rem; text-decoration: none; opacity: 0.45; transition: opacity 0.2s, transform 0.2s; line-height: 1; }
.lang-switcher a:hover { opacity: 1; transform: scale(1.15); }
.lang-switcher a.active { opacity: 1; }

/* Spanish nav — tighter spacing so longer words don't crowd the logo */
html[lang="es"] .nav-links { gap: 1.4rem; }
html[lang="es"] .nav-links a { letter-spacing: 0.06em; font-size: 0.72rem; }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; display: block; }
nav.scrolled .nav-toggle span { background: var(--burgundy); }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #150808 0%, #2A0808 40%, #1A0F0F 100%);
}
.hero-accent-tl {
  position: absolute; top: -80px; left: -80px; width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,96,74,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-accent-br {
  position: absolute; bottom: -60px; right: -60px; width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-line {
  position: absolute; top: 0; left: 5%; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(184,150,12,0.3), transparent);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 5%;
  padding-top: var(--nav-h);
}
.hero-label { color: var(--gold); margin-bottom: 2rem; }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 300;
  color: rgba(255,255,255,0.5); letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}
.hero-desc {
  max-width: 520px; margin-bottom: 3rem;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--burgundy);
  color: var(--white); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--burgundy); transition: all 0.3s;
}
.btn-primary:hover { background: var(--terracotta); border-color: var(--terracotta); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost .arrow { transition: transform 0.3s; }
.btn-ghost:hover .arrow { transform: translateX(6px); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(184,150,12,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Page Hero (inner pages) ─────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 5% 80px;
  background: var(--dark); position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #150808 0%, #2A0808 60%, #1A0F0F 100%);
}
.page-hero-accent {
  position: absolute; top: -60px; left: -60px; width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,96,74,0.15) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; }
.page-hero-content .label { margin-bottom: 1.5rem; }
.page-hero-content h1 { color: var(--white); margin-bottom: 1.2rem; }
.page-hero-content .display { color: rgba(255,255,255,0.55); max-width: 620px; }

/* ── Section Base ────────────────────────────────────────────────── */
section { padding: 100px 5%; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-header { margin-bottom: 60px; }
.section-header .label { margin-bottom: 1rem; display: block; }
.section-header h2 { margin-bottom: 1rem; color: var(--burgundy); }
.section-header p { max-width: 580px; }
.gold-rule { width: 40px; height: 1px; background: var(--gold); margin: 1.5rem 0; }
.gold-rule.center { margin: 1.5rem auto; }

/* ── What We Do — Practice Cards ─────────────────────────────────── */
.practices { background: var(--white); }
.practices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.practice-card {
  position: relative; overflow: hidden; min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer;
}
.practice-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s var(--ease);
}
.practice-card:hover .practice-card-bg { transform: scale(1.05); }
.practice-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,8,8,0.92) 0%, rgba(21,8,8,0.3) 60%, transparent 100%);
  transition: background 0.4s;
}
.practice-card:hover .practice-card-overlay {
  background: linear-gradient(to top, rgba(74,18,18,0.95) 0%, rgba(74,18,18,0.5) 60%, rgba(74,18,18,0.1) 100%);
}
.practice-card-content { position: relative; z-index: 2; padding: 40px; }
.practice-num { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1rem; display: block; }
.practice-card h3 { color: var(--white); margin-bottom: 0.8rem; font-size: 1.6rem; }
.practice-card p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.practice-link { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.practice-card:hover .practice-link { gap: 14px; }

/* ── Conviction / Quote ──────────────────────────────────────────── */
.conviction { background: var(--burgundy); }
.conviction h2 { color: var(--white); }
.conviction .gold-rule { background: var(--gold); }
.conviction-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.conviction-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.4;
}
.conviction-quote em { color: var(--gold-light); font-style: normal; }
.conviction-points { display: flex; flex-direction: column; gap: 28px; }
.conviction-point {}
.conviction-point h4 { color: var(--gold-light); margin-bottom: 6px; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.conviction-point p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ── Numbers ─────────────────────────────────────────────────────── */
.numbers { background: var(--off-white); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.number-item { text-align: center; padding: 40px 20px; border: 1px solid rgba(184,150,12,0.2); position: relative; }
.number-item::before { content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 2px; background: var(--gold); }
.number-value { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--burgundy); line-height: 1; margin-bottom: 8px; }
.number-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); }

/* ── Story Teasers ───────────────────────────────────────────────── */
.work-preview { background: var(--white); }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.work-card { position: relative; overflow: hidden; min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; }
.work-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s var(--ease); }
.work-card:hover .work-card-bg { transform: scale(1.04); }
.work-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(21,8,8,0.88) 0%, rgba(21,8,8,0.2) 70%, transparent 100%); }
.work-card-content { position: relative; z-index: 2; padding: 36px; }
.work-tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.work-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.work-card p { color: rgba(255,255,255,0.6); font-size: 0.82rem; line-height: 1.6; margin-bottom: 1rem; }
.work-card .work-link { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.work-card:hover .work-link { gap: 14px; }

/* ── CTA Band ────────────────────────────────────────────────────── */
.cta-band {
  background: var(--blush); padding: 80px 5%;
  display: flex; align-items: center; justify-content: center;
}
.cta-band-inner { max-width: 700px; text-align: center; }
.cta-band h2 { color: var(--burgundy); margin-bottom: 1rem; }
.cta-band p { margin-bottom: 2.5rem; }
.btn-dark { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; background: var(--burgundy); color: var(--white); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--burgundy); transition: all 0.3s; }
.btn-dark:hover { background: transparent; color: var(--burgundy); }

/* ── Offerings page ──────────────────────────────────────────────── */
.offering-block { padding: 100px 5%; }
.offering-block:nth-child(even) { background: var(--white); }
.offering-block:nth-child(odd) { background: var(--off-white); }
.offering-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.offering-inner.reverse { direction: rtl; }
.offering-inner.reverse > * { direction: ltr; }
.offering-meta {}
.offering-meta .label { margin-bottom: 1rem; display: block; }
.offering-meta h2 { color: var(--burgundy); margin-bottom: 1rem; }
.offering-meta .gold-rule { margin: 1.5rem 0; }
.offering-meta .display { color: var(--text-light); margin-bottom: 2rem; }
.offering-services { display: flex; flex-direction: column; gap: 0; }
.offering-service { padding: 20px 0; border-bottom: 1px solid rgba(184,150,12,0.15); display: flex; gap: 16px; align-items: flex-start; }
.offering-service-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
.offering-service h4 { color: var(--burgundy); margin-bottom: 4px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; }
.offering-service p { font-size: 0.82rem; }
.offering-image { position: relative; }
.offering-image img { width: 100%; height: 500px; object-fit: cover; }
.offering-image-accent { position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px; border: 1px solid var(--gold); opacity: 0.3; }

/* ── How We Work ─────────────────────────────────────────────────── */
.process { background: var(--burgundy); padding: 100px 5%; }
.process .container { max-width: var(--max-w); margin: 0 auto; }
.process .section-header h2 { color: var(--white); }
.process .section-header p { color: rgba(255,255,255,0.55); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 60px; }
.process-step { position: relative; }
.process-step::after { content: '→'; position: absolute; right: -20px; top: 20px; color: var(--gold); opacity: 0.4; font-size: 1.2rem; }
.process-step:last-child::after { display: none; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 1rem; }
.process-step h4 { color: var(--gold-light); margin-bottom: 10px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; }
.process-step p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ── Stories ─────────────────────────────────────────────────────── */
.stories-list { background: var(--white); padding: 100px 5%; }
.story-item { max-width: var(--max-w); margin: 0 auto 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-bottom: 80px; border-bottom: 1px solid rgba(184,150,12,0.15); }
.story-item:last-child { border-bottom: none; margin-bottom: 0; }
.story-item.reverse { direction: rtl; }
.story-item.reverse > * { direction: ltr; }
.story-image { position: relative; }
.story-image img { width: 100%; height: 380px; object-fit: cover; }
.story-image-label { position: absolute; bottom: -1px; left: 0; background: var(--burgundy); padding: 12px 20px; }
.story-image-label span { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.story-meta {}
.story-meta .label { margin-bottom: 1rem; display: block; }
.story-meta h2 { color: var(--burgundy); font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 1rem; }
.story-meta .gold-rule { margin: 1.2rem 0; }
.story-context { margin-bottom: 1.5rem; }
.story-context h4 { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; }
.story-context p { font-size: 0.88rem; }
.story-results { display: flex; gap: 30px; margin-top: 1.5rem; flex-wrap: wrap; }
.result-item { text-align: center; }
.result-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--burgundy); font-weight: 400; line-height: 1; }
.result-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }

/* ── Contact ─────────────────────────────────────────────────────── */
.contact-section { background: var(--white); padding: 100px 5%; }
.contact-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-info {}
.contact-info .label { margin-bottom: 1rem; display: block; }
.contact-info h2 { color: var(--burgundy); margin-bottom: 1rem; }
.contact-info .gold-rule { margin: 1.5rem 0; }
.contact-info .display { margin-bottom: 2.5rem; }
.contact-locations { display: flex; flex-direction: column; gap: 28px; }
.contact-location {}
.contact-location h4 { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; }
.contact-location p { font-size: 0.88rem; }
.contact-email { margin-top: 2rem; }
.contact-email a { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--burgundy); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color 0.3s; }
.contact-email a:hover { color: var(--terracotta); }
.contact-form-wrap { background: var(--off-white); padding: 50px; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--terracotta); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--white); border: 1px solid rgba(184,150,12,0.2);
  padding: 14px 16px; font-family: 'Montserrat', sans-serif; font-size: 0.88rem;
  color: var(--text); outline: none; transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { padding: 16px 40px; background: var(--burgundy); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.3s; width: 100%; }
.btn-submit:hover { background: var(--terracotta); }

/* ── Footer ──────────────────────────────────────────────────────── */
footer { background: var(--dark); padding: 60px 5% 30px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand {}
.footer-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; letter-spacing: 0.15em; color: var(--white); margin-bottom: 4px; }
.footer-rule { width: 100%; height: 1px; background: var(--gold); opacity: 0.5; margin-bottom: 1.2rem; }
.footer-tagline { font-style: italic; color: rgba(255,255,255,0.4); font-family: 'Cormorant Garamond', serif; font-size: 1rem; margin-bottom: 1rem; }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.7; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-linkedin { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
.footer-linkedin:hover { color: var(--gold); }

/* ── Animations ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.24s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.36s; }
.hero-anim { opacity: 0; transform: translateY(20px); animation: heroIn 1s var(--ease) forwards; }
.hero-anim:nth-child(1) { animation-delay: 0.2s; }
.hero-anim:nth-child(2) { animation-delay: 0.4s; }
.hero-anim:nth-child(3) { animation-delay: 0.6s; }
.hero-anim:nth-child(4) { animation-delay: 0.8s; }
.hero-anim:nth-child(5) { animation-delay: 1.0s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* ── Mobile ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .practices-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: 320px; }
  .conviction-grid { grid-template-columns: 1fr; gap: 40px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .offering-inner { grid-template-columns: 1fr; gap: 40px; }
  .offering-inner.reverse { direction: ltr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .story-item { grid-template-columns: 1fr; gap: 40px; }
  .story-item.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  nav.mobile-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; inset: var(--nav-h) 0 0;
    background: var(--dark); padding: 40px 5%;
    z-index: 99;
  }
  nav.mobile-open .nav-links a { font-size: 1.1rem; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: var(--white); }
  nav.mobile-open .nav-cta { display: none; }
  .lang-switcher { display: none; }
}
@media (max-width: 600px) {
  section { padding: 70px 5%; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .story-results { gap: 20px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
