/* International Tax Consult — premium navy + gold */
:root {
  --bg: #ffffff;
  --bg-cream: #faf7f1;
  --bg-soft: #f4efe6;
  --navy: #0c2340;
  --navy-deep: #081a30;
  --navy-soft: #1a3a5c;
  --gold: #c9a050;
  --gold-bright: #d4b676;
  --gold-deep: #a8842f;
  --text: #1a1f2e;
  --text-muted: #5d6b7e;
  --border: #e8e4dc;
  --border-soft: #efece6;
  --max-width: 1280px;
  --radius: 6px;
  --shadow-sm: 0 1px 2px rgba(12, 35, 64, 0.04);
  --shadow-md: 0 4px 16px rgba(12, 35, 64, 0.06);
  --shadow-lg: 0 12px 40px rgba(12, 35, 64, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.serif {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ==================== HEADER ==================== */
.site-header {
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--navy);
}
.brand-mark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--navy);
  position: relative;
  padding-right: 14px;
}
.brand-mark::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--gold);
}
.brand-name {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}
nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
  position: relative;
  padding: 4px 0;
}
nav a:hover { color: var(--navy); }
nav a.active { color: var(--navy); }
nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
}
.lang-switcher {
  display: flex;
  gap: 2px;
  align-items: center;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}
.lang-switcher a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 9px;
  border-radius: 3px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: color 0.15s ease, background 0.15s ease;
}
.lang-switcher a:hover { color: var(--navy); }
.lang-switcher a.active {
  color: var(--navy);
  background: var(--bg-soft);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=2000&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 26, 48, 0.92) 0%, rgba(12, 35, 64, 0.82) 50%, rgba(8, 26, 48, 0.78) 100%);
  z-index: -1;
}
.hero .container { padding-top: 120px; padding-bottom: 120px; width: 100%; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 32px;
}
.hero .eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 920px;
  color: white;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.hero .lead {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin-bottom: 44px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Smaller hero for sub-pages */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 26, 48, 0.90) 0%, rgba(12, 35, 64, 0.78) 100%);
  z-index: -1;
}
.page-hero .container { padding-top: 80px; padding-bottom: 60px; width: 100%; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: white;
  max-width: 800px;
}
.page-hero .lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 700px;
  line-height: 1.6;
}
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 24px;
}
.page-hero .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-services::before { background-image: url('https://images.unsplash.com/photo-1568992687947-868a62a9f521?w=2000&q=80&auto=format&fit=crop'); }
.hero-about::before { background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=2000&q=80&auto=format&fit=crop'); }
.hero-charter::before { background-image: url('https://images.unsplash.com/photo-1589216532372-1c2a367900d9?w=2000&q=80&auto=format&fit=crop'); }
.hero-contact::before { background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=2000&q=80&auto=format&fit=crop'); }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--gold);
  cursor: pointer;
}
.btn:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: white;
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-soft);
  border-color: var(--navy-soft);
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 0.2s ease;
}
.text-link:hover { gap: 10px; }

/* ==================== SECTIONS ==================== */
section { padding: 96px 0; }
.section-cream { background: var(--bg-cream); }
.section-dark { background: var(--navy); color: white; }
.section-dark .section-eyebrow { color: var(--gold-bright); }
.section-dark .section-title { color: white; }
.section-dark .section-lead { color: rgba(255,255,255,0.78); }

.section-header { margin-bottom: 64px; max-width: 800px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--navy);
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.65;
}

/* ==================== STATS STRIP ==================== */
.stats-strip {
  background: var(--navy);
  color: white;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ==================== GRIDS ==================== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-2-asym { grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }

/* ==================== CARDS ==================== */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.card .card-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.card ul {
  list-style: none;
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
}
.card ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.card ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.card ul li:last-child { border-bottom: none; }

/* Image cards (services) */
.image-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.image-card .img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}
.image-card .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 35, 64, 0.0) 60%, rgba(12, 35, 64, 0.4) 100%);
  pointer-events: none;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.image-card:hover img { transform: scale(1.04); }
.image-card .card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.image-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.image-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.image-card .card-num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: white;
  background: rgba(12, 35, 64, 0.85);
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
  letter-spacing: 0.04em;
}

/* ==================== FEATURE BLOCK (image + text) ==================== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-block .feature-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}
.feature-block .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-block .feature-image::before {
  content: "";
  position: absolute;
  inset: -16px -16px auto auto;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.feature-block .feature-content { padding: 20px 0; }
.feature-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.feature-block h2 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.feature-block p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ==================== PROSE ==================== */
.prose { max-width: 760px; }
.prose p {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}
.prose p.muted { color: var(--text-muted); font-style: italic; }
.prose p.lead-paragraph {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 36px;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}
.prose ol.charter-list {
  list-style: none;
  counter-reset: charter;
  margin-bottom: 24px;
}
.prose ol.charter-list li {
  counter-increment: charter;
  padding: 24px 0 24px 80px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.65;
  position: relative;
}
.prose ol.charter-list li::before {
  content: counter(charter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  font-weight: 500;
}
.prose ol.charter-list li:last-child { border-bottom: none; }

/* ==================== CTA BANNER ==================== */
.cta-banner {
  position: relative;
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 72px 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80&auto=format&fit=crop') center/cover;
  opacity: 0.18;
  z-index: -1;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  max-width: 640px;
  color: white;
}
.cta-banner h2 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}

/* ==================== VIDEO CARD ==================== */
.video-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.video-card .video-thumb {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}
.video-card .video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1551836022-deb4988cc6c0?w=1200&q=80&auto=format&fit=crop') center/cover;
  opacity: 0.35;
}
.video-card .play-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(201, 160, 80, 0.25);
}
.video-card a:hover .play-circle {
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(201, 160, 80, 0.18);
}
.video-card .video-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.video-card p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.video-card a.video-link {
  text-decoration: none;
  color: inherit;
  display: contents;
}

/* ==================== CONTACT ==================== */
.country-section { margin-bottom: 56px; }
.country-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.country-heading .flag { font-size: 28px; line-height: 1; }
.country-heading .country-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.country-heading .country-tag {
  margin-left: auto;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-weight: 500;
}
.office-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.office-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.office-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.office-card .branch-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  margin-bottom: 20px;
  font-weight: 600;
}
.office-card .addr {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
  white-space: pre-line;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.office-card .meta {
  font-size: 14px;
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
}
.office-card .meta-row {
  padding: 6px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}
.office-card .meta-label {
  color: var(--text-muted);
  min-width: 90px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.office-card .meta-value { word-break: break-word; flex: 1; min-width: 0; }
.office-card a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.office-card a:hover { border-bottom-color: var(--gold); }

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  margin-top: 0;
  font-size: 14px;
}
.site-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  margin-bottom: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand-mark {
  color: white;
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.footer-brand .brand-mark::after { display: none; }
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.65;
  max-width: 360px;
}
.footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 160, 80, 0.4);
}
.footer-bottom a:hover { color: white; border-bottom-color: var(--gold); }

/* ==================== MOBILE ==================== */
@media (max-width: 900px) {
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .feature-block .feature-image { aspect-ratio: 4/3; }
  .grid-2-asym { grid-template-columns: 1fr; gap: 32px; }
  .video-card { grid-template-columns: 1fr; }
  .video-card .video-thumb { min-height: 200px; }
  .video-card .video-body { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .site-header .container {
    flex-direction: column;
    gap: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .header-right { flex-direction: column; gap: 14px; }
  nav ul { gap: 18px; flex-wrap: wrap; justify-content: center; }
  nav a { font-size: 13px; }
  .lang-switcher { padding-left: 0; border-left: none; }
  .hero { min-height: 70vh; }
  .hero .container { padding-top: 80px; padding-bottom: 80px; }
  section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .cta-banner { padding: 48px 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .country-heading { flex-wrap: wrap; }
  .country-heading .country-tag { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
