:root {
  --amg-primary: #001630;
  --amg-primary-soft: #0a2b4e;
  --amg-orange: #e8762e;
  --amg-gold: #c69c6d;
  --amg-green: #6a7a29;
  --amg-bg: #f9f9f9;
  --amg-white: #ffffff;
  --amg-text: #1a1c1c;
  --amg-muted: #5c6b7a;
  --amg-border: #e2e2e2;
  --amg-container: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--amg-bg);
  color: var(--amg-text);
  font-family: "Montserrat", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: var(--amg-primary);
  margin-top: 0;
}

a {
  text-decoration: none;
}

.amg-container {
  width: min(var(--amg-container), calc(100% - 96px));
  margin: 0 auto;
}

.amg-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--amg-border);
  box-shadow: 0 6px 24px rgba(0, 22, 48, 0.08);
}

.amg-header-inner {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.amg-logo img {
  height: 84px;
  width: auto;
  display: block;
}

.amg-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.amg-menu a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amg-muted);
  transition: .25s ease;
}

.amg-menu a:hover,
.amg-menu .current-menu-item a {
  color: var(--amg-primary);
}

.amg-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.amg-language-switcher {
  border: 0;
  background: transparent;
  color: var(--amg-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
}

.amg-donate-btn {
  background: var(--amg-orange);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: 0 8px 20px rgba(232, 118, 46, .22);
}

.amg-mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--amg-primary);
  cursor: pointer;
}

.amg-main {
  min-height: 60vh;
}

.amg-footer {
  background: var(--amg-primary);
  color: #fff;
  padding: 80px 0 0;
}

.amg-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amg-footer h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 24px;
}

.amg-footer p,
.amg-footer a,
.amg-footer li {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.7;
}

.amg-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amg-footer li {
  margin-bottom: 14px;
}

.amg-footer a:hover {
  color: var(--amg-orange);
}

.amg-newsletter-form {
  display: flex;
}

.amg-newsletter-form input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 14px;
  border-radius: 8px 0 0 8px;
}

.amg-newsletter-form button {
  background: var(--amg-orange);
  color: #fff;
  border: 0;
  padding: 0 22px;
  border-radius: 0 8px 8px 0;
  font-weight: 700;
  cursor: pointer;
}

.amg-footer-bottom {
  margin-top: 80px;
  padding: 28px 48px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: 12px;
  opacity: .55;
  text-transform: uppercase;
  letter-spacing: .1em;
}

@media (max-width: 1024px) {
  .amg-container {
    width: calc(100% - 32px);
  }

  .amg-nav {
    display: none;
  }

  .amg-language-switcher {
    display: none;
  }

  .amg-mobile-toggle {
    display: inline-flex;
  }

  .amg-logo img {
    height: 72px;
  }

  .amg-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .amg-header-inner {
    height: 88px;
  }

  .amg-donate-btn {
    padding: 12px 20px;
  }

  .amg-footer-grid {
    grid-template-columns: 1fr;
  }
}