/* ===========================
   HEADER / NAV
   =========================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: rgba(13,26,18,0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--border-gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.logo-text span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.2rem;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(200,169,110,0.07); }

.nav-join {
  padding: 0.5rem 1.2rem !important;
  border: 1px solid var(--border-gold) !important;
  color: var(--gold) !important;
}
.nav-join:hover {
  background: var(--gold) !important;
  color: var(--emerald) !important;
  border-color: var(--gold) !important;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 2px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  transition: all 0.2s;
  text-transform: uppercase;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--emerald);
}
.lang-btn:hover:not(.active) { color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,26,18,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ivory);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-lang {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* ===========================
   HERO
   =========================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(13,26,18,0.85) 0%, rgba(13,26,18,0.45) 55%, rgba(13,26,18,0.75) 100%),
    linear-gradient(to bottom, rgba(13,26,18,0.4)  0%, rgba(13,26,18,0.1) 40%, rgba(13,26,18,0.7) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z' fill='none' stroke='%23C8A96E' stroke-width='0.8'/%3E%3Cpath d='M40 10 L70 40 L40 70 L10 40 Z' fill='none' stroke='%23C8A96E' stroke-width='0.6'/%3E%3Ccircle cx='40' cy='40' r='8' fill='none' stroke='%23C8A96E' stroke-width='0.6'/%3E%3Cpath d='M40 0 L40 10 M80 40 L70 40 M40 80 L40 70 M0 40 L10 40' stroke='%23C8A96E' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: clamp(4rem, 8vh, 7rem);
}

.hero-inner {
  max-width: 760px;
}

.hero-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}
.hero-sub::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  white-space: pre-line;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-on-dark);
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--gold);
  color: var(--emerald);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245,240,232,0.35);
}
.btn-outline:hover {
  border-color: var(--ivory);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===========================
   STATS TICKER
   =========================== */
#stats {
  background: var(--gold);
  padding: 1.5rem 0;
  overflow: hidden;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(13,26,18,0.2);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--emerald);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13,26,18,0.65);
  margin-top: 0.4rem;
}

/* ===========================
   ABOUT
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text h2 { color: var(--emerald); }

.about-text p {
  color: rgba(13,26,18,0.72);
  margin-bottom: 1.2rem;
  font-size: 1.0125rem;
}

.about-quote {
  margin: 2.5rem 0;
  padding: 1.8rem 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(200,169,110,0.06);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.about-quote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--emerald) !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.5;
}
.about-quote cite {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark) !important;
  font-style: normal;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-image {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #1a2e20;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}
.about-image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1a2e20 0%, #0d1a12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

/* ===========================
   HERITAGE GALLERY
   =========================== */
.heritage-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.heritage-header .section-tag { justify-content: center; }
.heritage-header .section-tag::before { display: none; }
.heritage-header h2 { color: var(--ivory); }
.heritage-header p { color: var(--text-on-dark); margin-top: 1rem; }

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.heritage-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.heritage-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.heritage-card:hover .heritage-card-bg { transform: scale(1.08); }

.heritage-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13,26,18,0.97) 0%, rgba(13,26,18,0.35) 50%, rgba(13,26,18,0.15) 100%),
    linear-gradient(to bottom, rgba(13,26,18,0.4) 0%, transparent 30%);
  transition: opacity 0.4s ease;
}

.heritage-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
}
.heritage-card-region {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.heritage-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.heritage-card-desc {
  font-size: 13px;
  color: var(--text-on-dark);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.heritage-card:hover .heritage-card-desc {
  max-height: 100px;
  opacity: 1;
}

/* placeholder colors for cards */
.hc-1 { background: linear-gradient(145deg, #4a3a28, #2a1e10); }
.hc-2 { background: linear-gradient(145deg, #1d3a2e, #0d1a12); }
.hc-3 { background: linear-gradient(145deg, #3a2a18, #1e1208); }
.hc-4 { background: linear-gradient(145deg, #2a3a30, #121e14); }
.hc-5 { background: linear-gradient(145deg, #3a3020, #1e1a10); }
.hc-6 { background: linear-gradient(145deg, #1a2a3a, #0a141e); }

/* ===========================
   NEWS CARD IMAGE
   =========================== */
.news-card {
  background: var(--emerald-light);
  transition: background var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.news-card:hover { background: rgba(26,46,32,0.9); }

.news-card-img {
  width: 100%;
  height: 180px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.news-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,26,18,0.5) 100%);
}
.news-card-body {
  padding: 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ===========================
   EQUIPMENT CARD IMAGE
   =========================== */
.equipment-card {
  background: var(--emerald-light);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
}
.equipment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}
.equipment-card:hover { background: rgba(26,46,32,0.9); }
.equipment-card:hover::before { transform: scaleX(1); }

.equipment-card-img {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease;
}
.equipment-card:hover .equipment-card-img {
  filter: brightness(1.1);
}
.equipment-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,26,18,0.7) 100%);
}
.equipment-card-body {
  padding: 2rem 2.5rem 2.5rem;
  flex: 1;
}

@media (max-width: 768px) {
  .news-card-img { height: 140px; }
  .equipment-card-img { height: 160px; }
}
  margin-bottom: 3.5rem;
  max-width: 600px;
}
.equipment-header h2 { color: var(--ivory); }
.equipment-header p { color: var(--text-on-dark); margin-top: 1rem; }

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

.equipment-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200,169,110,0.15);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color var(--transition);
}
.equipment-card:hover .equipment-num { color: rgba(200,169,110,0.3); }

.equipment-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.equipment-card p { color: var(--text-on-dark); font-size: 0.9375rem; }

/* ===========================
   PARTNERS
   =========================== */
.partners-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.partners-header .section-tag { justify-content: center; }
.partners-header .section-tag::before { display: none; }
.partners-header h2 { color: var(--emerald); }

.partners-cats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.partner-cat-btn {
  background: none;
  border: 1px solid rgba(13,26,18,0.2);
  color: rgba(13,26,18,0.6);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
}
.partner-cat-btn.active {
  background: var(--emerald);
  color: var(--gold);
  border-color: var(--emerald);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
}

.partner-card {
  background: rgba(13,26,18,0.04);
  border: 1px solid rgba(13,26,18,0.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  min-height: 120px;
  transition: all 0.3s;
  cursor: default;
}
.partner-card:hover {
  background: rgba(13,26,18,0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13,26,18,0.08);
}
.partner-logo {
  width: 72px;
  height: 40px;
  background: rgba(13,26,18,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--emerald);
  letter-spacing: 0.04em;
}
.partner-name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(13,26,18,0.7);
  letter-spacing: 0.04em;
}

/* ===========================
   NEWS
   =========================== */
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
}
.news-header h2 { color: var(--ivory); }
.news-all {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 2px;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.news-all:hover { border-color: var(--gold); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

/* old .news-card block removed — see image card styles above */

.news-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  flex: 1;
}
.news-card p {
  font-size: 14px;
  color: var(--text-on-dark);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.news-read {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.news-card:hover .news-read { gap: 10px; }

/* ===========================
   JOIN / CTA SECTION
   =========================== */
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.join-left h2 {
  white-space: pre-line;
  color: var(--ivory);
  margin-bottom: 1.2rem;
}
.join-left p {
  color: var(--text-on-dark);
  margin-bottom: 2.5rem;
  font-size: 1.0125rem;
}

.join-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.join-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-on-dark);
}
.join-benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* FORM */
.join-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--ivory);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A96E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--emerald); color: var(--ivory); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--emerald);
  border: none;
  padding: 1rem 2rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #070e09;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-gold);
}

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

.footer-brand .logo { margin-bottom: 1.2rem; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--ivory); }

.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-col address a { color: var(--text-muted); transition: color 0.2s; }
.footer-col address a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(200,169,110,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===========================
   KEYFRAMES
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.3); }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 500px; }
  .heritage-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .join-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: 1fr; }
  .heritage-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .news-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .heritage-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}
