/* ============================================
   ALON LEV LAW FIRM - V5 PREMIUM STYLES
   Inspired by Meyers & Flowers
   Gold + Black + Cream | RTL Hebrew
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #ab8133;
  --gold-light: #c9a84c;
  --gold-gradient: linear-gradient(135deg, #dbab51, #ab8133);
  --gold-text-gradient: linear-gradient(135deg, #dbab51, #c9a84c, #ab8133);
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #111111;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d2;
  --white: #ffffff;
  --gray: #7c7c7c;
  --gray-light: #bbb;
  --gray-warm: #e2dbd3;

  --font-serif: 'Frank Ruhl Libre', 'Noto Serif Hebrew', Georgia, serif;
  --font-sans: 'Heebo', 'Segoe UI', Arial, sans-serif;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  direction: rtl;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---------- Grain Overlay ---------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-light);
}

.text-gold {
  color: var(--gold-light);
}

.text-gradient {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Decorative SVG Elements ---------- */
.decor-scales {
  display: inline-block;
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

.decor-line {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  display: inline-block;
  margin: 0 0.5rem;
  vertical-align: middle;
}

.decor-line-long {
  width: 120px;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--gold), transparent);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: clamp(4rem, 8vw, 8.75rem) 0;
}

.section-dark {
  background: var(--black);
}

.section-cream {
  background: var(--cream);
  color: var(--black);
}

.section-cream h1,
.section-cream h2,
.section-cream h3,
.section-cream h4 {
  color: var(--black);
}

.section-cream p {
  color: #444;
}

.section-cream .section-tag {
  color: var(--gold);
}

.grid-asymmetric {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

.grid-asymmetric-reverse {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: max(2.75em, 3.125rem);
  padding: 0 2.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--white);
  border: 2px solid transparent;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(171, 129, 51, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--gold-light);
  border: 2px solid var(--black);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease-smooth);
  padding: 0 2rem;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(171, 129, 51, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
}

.logo-text span {
  color: var(--gold-light);
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s var(--ease-smooth);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.4s var(--ease-spring);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold-light);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
  direction: ltr;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s var(--ease-spring);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-spring);
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  transition: color 0.3s;
  transform: translateY(20px);
  opacity: 0;
}

.nav-mobile.open a {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile a:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile a:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile a:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile a:nth-child(4) { transition-delay: 0.25s; }
.nav-mobile a:nth-child(5) { transition-delay: 0.3s; }
.nav-mobile a:nth-child(6) { transition-delay: 0.35s; }
.nav-mobile a:nth-child(7) { transition-delay: 0.4s; }
.nav-mobile a:nth-child(8) { transition-delay: 0.45s; }

.nav-mobile a:hover {
  color: var(--gold-light);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.75) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  width: 100%;
}

.hero-title {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--gray-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-subtitle .gold-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  margin: 0 0.5rem;
  vertical-align: middle;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(171, 129, 51, 0.2);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  padding-top: var(--header-height);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 10%, transparent 80%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  width: 100%;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.page-hero-breadcrumb a {
  color: var(--gold-light);
}

.page-hero-breadcrumb .sep {
  color: var(--gray);
}

/* ---------- Cards ---------- */
.card {
  background: var(--black-card);
  border: 1px solid rgba(171, 129, 51, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.5s var(--ease-spring);
}

.card:hover {
  border-color: rgba(171, 129, 51, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-cream {
  background: var(--white);
  border-color: var(--cream-dark);
}

.card-cream:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ---------- Practice Area Cards ---------- */
.practice-card {
  background: var(--black-card);
  border: 1px solid rgba(171, 129, 51, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-spring);
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-spring);
}

.practice-card:hover::before {
  transform: scaleX(1);
}

.practice-card:hover {
  border-color: rgba(171, 129, 51, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.practice-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
}

.practice-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.practice-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateX(50%);
}

.timeline-item {
  position: relative;
  width: 47%;
  padding: 2rem;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.timeline-item:nth-child(even) {
  margin-right: auto;
  margin-left: 0;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  top: 2.5rem;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--black);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-item:nth-child(odd) .timeline-dot {
  left: -7px;
  right: auto;
}

.timeline-item:nth-child(even) .timeline-dot {
  right: -7px;
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.timeline-card {
  background: var(--black-card);
  border: 1px solid rgba(171, 129, 51, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease-smooth);
}

.timeline-card:hover {
  border-color: rgba(171, 129, 51, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.timeline-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.timeline-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.timeline-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(171, 129, 51, 0.1);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}

/* ---------- Team Member ---------- */
.team-member {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.team-member:nth-child(even) {
  grid-template-columns: 1.3fr 1fr;
}

.team-member:nth-child(even) .team-photo-wrap {
  order: 2;
}

.team-photo-wrap {
  position: relative;
}

.team-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(171, 129, 51, 0.2);
  border-radius: var(--radius-lg);
  transform: rotate(-2deg);
  z-index: 0;
}

.team-photo-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.team-info {
  padding-top: 1rem;
}

.team-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(171, 129, 51, 0.12);
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}

.team-name {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.team-motto {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(171, 129, 51, 0.15);
}

.team-bio p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ---------- Reviews ---------- */
.review-card {
  background: var(--black-card);
  border: 1px solid rgba(171, 129, 51, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: all 0.5s var(--ease-spring);
}

.review-card:hover {
  border-color: rgba(171, 129, 51, 0.25);
  transform: translateY(-4px);
}

.review-card::before {
  content: '\201F';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: rgba(171, 129, 51, 0.15);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-light);
}

.review-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
}

.review-source {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ---------- Article Card ---------- */
.article-card {
  background: var(--black-card);
  border: 1px solid rgba(171, 129, 51, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease-spring);
}

.article-card:hover {
  border-color: rgba(171, 129, 51, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.article-card-body {
  padding: 2rem;
}

.article-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(171, 129, 51, 0.1);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.article-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.article-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray);
}

.article-year {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 1rem;
}

/* ---------- Contact Form ---------- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(171, 129, 51, 0.2);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s var(--ease-smooth);
  direction: rtl;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(171, 129, 51, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(171, 129, 51, 0.1);
  padding: clamp(3rem, 6vw, 6rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 320px;
}

.footer-links h4 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-light);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(171, 129, 51, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(171, 129, 51, 0.2);
  transition: all 0.3s var(--ease-smooth);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--gray-light);
  transition: fill 0.3s;
}

.footer-social a:hover svg {
  fill: var(--white);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-spring);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-spring);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-spring);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-spring);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Fancy text animation (Meyers & Flowers inspired) */
.fancy-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.fancy-reveal .word-inner {
  display: inline-block;
  transform: skewY(0deg) skewX(-4deg) rotate(-2deg) translateY(6rem);
  opacity: 0;
  transition: transform 1.2s var(--ease-spring), opacity 0.6s var(--ease-smooth);
}

.fancy-reveal.visible .word-inner {
  transform: skewY(0) skewX(0) rotate(0) translateY(0);
  opacity: 1;
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-spring);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(13) { transition-delay: 0.65s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(14) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(15) { transition-delay: 0.75s; opacity: 1; transform: translateY(0); }

/* Counter animation */
.counter[data-target] {
  font-variant-numeric: tabular-nums;
}

/* ---------- SVG Decorative Elements ---------- */
.scales-svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  opacity: 0.6;
}

.gavel-svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
  opacity: 0.3;
}

/* Gold decorative border */
.gold-border-top {
  position: relative;
}

.gold-border-top::before {
  content: '';
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--gold), transparent);
}

/* ---------- Map ---------- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(171, 129, 51, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(0.8) contrast(1.1);
  transition: filter 0.5s;
}

.map-container:hover iframe {
  filter: grayscale(0.3) contrast(1);
}

/* ---------- Google Rating Badge ---------- */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(171, 129, 51, 0.15);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
}

.google-badge-score {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-light);
}

.google-badge-stars {
  display: flex;
  gap: 2px;
}

.google-badge-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-light);
}

.google-badge-text {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .header-cta .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-asymmetric,
  .grid-asymmetric-reverse {
    grid-template-columns: 1fr;
  }

  .team-member,
  .team-member:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .team-member:nth-child(even) .team-photo-wrap {
    order: 0;
  }

  .team-photo-wrap img {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    right: 2rem;
  }

  .timeline-item {
    width: 100%;
    padding-right: 4rem;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    right: calc(2rem - 7px);
    left: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .hero-stat {
    min-width: 120px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .page-hero {
    min-height: 35vh;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }
}

/* ---------- Utility ---------- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.text-center { text-align: center; }
.text-right { text-align: right; }

.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Lottie Container ---------- */
.lottie-wrap {
  width: 56px;
  height: 56px;
}

.lottie-wrap lottie-player {
  width: 100%;
  height: 100%;
}
