/* ============================================================
   STONEMAN ESTATES HOA — WEBSITE STYLESHEET
   style.css — shared by all pages and both languages
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@300;400;500;600;700&display=swap');

/* ------------------------------------------------------------
   CSS VARIABLES
   ------------------------------------------------------------ */
:root {
  --primary:        #1E3A5F;
  --primary-light:  #2D5175;
  --primary-dark:   #152A45;
  --accent:         #D4A853;
  --accent-dark:    #B8903E;
  --accent-light:   #F0D49A;
  --bg:             #FAF7F2;
  --white:          #FFFFFF;
  --text:           #2B2B2B;
  --text-light:     #6B6B6B;
  --text-muted:     #9B9B9B;
  --border:         #E5E0D8;
  --border-light:   #F0EDE8;
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.06);
  --shadow:         0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.14);
  --radius-sm:      6px;
  --radius:         10px;
  --radius-lg:      16px;
  --font-heading:   'DM Serif Display', Georgia, serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;
  --max-width:      960px;
  --transition:     0.2s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--primary);
}
h1 { font-size: 2.5rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.3rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }

strong { font-weight: 600; }

/* ------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 64px 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.section-intro {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-download {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn-download:hover {
  background: var(--accent-dark);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212,168,83,0.4);
}
.btn-sm { padding: 7px 14px; font-size: 0.82rem; }

/* ------------------------------------------------------------
   HEADER & NAVIGATION
   ------------------------------------------------------------ */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  padding-top: env(safe-area-inset-top, 0);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 10px 0;
  gap: 16px;
}

/* Logo */
.logo { display: flex; flex-direction: column; text-decoration: none; flex-shrink: 0; }
.logo-main { font-family: var(--font-heading); font-size: 1.2rem; color: white; line-height: 1.1; }
.logo-sub { font-size: 0.66rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; text-transform: uppercase; }

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link {
  padding: 8px 13px;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--accent); }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 20px;
  overflow: hidden;
  margin-left: 14px;
  flex-shrink: 0;
}
.lang-btn {
  padding: 4px 11px;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1.7;
}
.lang-btn:hover { color: white; background: rgba(255,255,255,0.1); }
.lang-btn.active { background: var(--accent); color: var(--primary-dark); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.35rem;
  cursor: pointer;
  padding: 7px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  line-height: 1;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }

/* ------------------------------------------------------------
   HERO (home page)
   ------------------------------------------------------------ */
.hero {
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: white;
  padding: 88px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Decorative rings */
.hero::before {
  content: '';
  position: absolute;
  top: -90px; right: -90px;
  width: 340px; height: 340px;
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -110px; left: -70px;
  width: 300px; height: 300px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }
.hero-icon { font-size: 2.6rem; color: var(--accent); margin-bottom: 18px; opacity: 0.9; }
.hero h1 {
  font-size: 3.1rem;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.hero-address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 52px;
  letter-spacing: 0.04em;
}

/* Quick action cards */
.hero-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.action-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: white;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.action-card:hover {
  background: rgba(255,255,255,0.17);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  color: white;
}
.action-card i { font-size: 1.55rem; color: var(--accent); margin-bottom: 2px; }
.action-card strong { font-size: 0.88rem; font-weight: 600; }
.action-card small { font-size: 0.74rem; color: rgba(255,255,255,0.6); text-align: center; line-height: 1.3; }
.action-card.action-emergency i { color: #ff9898; }

/* ------------------------------------------------------------
   PAGE HERO (interior pages)
   ------------------------------------------------------------ */
.page-hero {
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 50px 0 42px;
  text-align: center;
}
.page-hero i { font-size: 1.5rem; color: var(--accent); display: block; margin-bottom: 12px; }
.page-hero h1 { font-size: 2.3rem; color: white; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 0.97rem; margin: 0; }

/* ------------------------------------------------------------
   ANNOUNCEMENTS (home page)
   ------------------------------------------------------------ */
.announcements {
  background: white;
  border-bottom: 1px solid var(--border-light);
  padding: 48px 0;
}
.announcements-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.announcements-header h2 {
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.announcements-header h2 i { color: var(--accent); font-size: 1.15rem; }

.announcement-list { display: flex; flex-direction: column; gap: 14px; }
.announcement-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  background: var(--bg);
  transition: box-shadow var(--transition);
}
.announcement-item:hover { box-shadow: var(--shadow); }
.announcement-date {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.announcement-content h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.announcement-content p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ------------------------------------------------------------
   ABOUT SECTION (home page)
   ------------------------------------------------------------ */
.about-section { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 260px; gap: 48px; align-items: center; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--text-light); font-size: 1rem; }
.about-text a { color: var(--primary); font-weight: 600; border-bottom: 2px solid var(--accent-light); }
.about-text a:hover { color: var(--accent-dark); border-bottom-color: var(--accent); }

.about-stats { display: flex; flex-direction: column; gap: 14px; }
.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}
.stat-card i { font-size: 1.4rem; color: var(--accent); width: 30px; text-align: center; flex-shrink: 0; }
.stat-card-text strong { display: block; font-size: 1.25rem; color: var(--primary); line-height: 1.1; }
.stat-card-text span { font-size: 0.8rem; color: var(--text-light); }

/* ------------------------------------------------------------
   DOCUMENTS PAGE
   ------------------------------------------------------------ */
.docs-section { background: var(--bg); }
.docs-section + .docs-section { border-top: 1px solid var(--border-light); padding-top: 48px; }

/* Featured card (Resident Guide) */
.doc-featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-lg);
}
.doc-featured-icon { font-size: 2.8rem; color: var(--accent); flex-shrink: 0; width: 52px; text-align: center; }
.doc-featured-text { flex: 1; }
.doc-featured-text h3 { font-family: var(--font-heading); font-size: 1.55rem; color: white; margin-bottom: 6px; }
.doc-featured-text p { color: rgba(255,255,255,0.76); font-size: 0.93rem; margin: 0; }
.doc-featured .btn-download { flex-shrink: 0; padding: 12px 22px; font-size: 0.93rem; }

/* Section headers */
.docs-section-header { margin-bottom: 24px; }
.docs-section-header h2 { font-size: 1.45rem; margin-bottom: 4px; }

/* Document card grid */
.doc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.doc-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.doc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--accent-light);
}
.doc-card-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.doc-card-icon i { font-size: 1.05rem; color: var(--accent); }
.doc-card-body { flex: 1; min-width: 0; }
.doc-card-body h3 { font-family: var(--font-body); font-size: 0.93rem; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.doc-card-body p { font-size: 0.81rem; color: var(--text-light); margin: 0 0 12px; line-height: 1.4; }

/* ------------------------------------------------------------
   EMERGENCY BANNER (contacts page)
   ------------------------------------------------------------ */
.emergency-banner { background: linear-gradient(135deg, #7B1515 0%, #B52B2B 100%); padding: 26px 0; }
.emergency-inner { display: flex; gap: 32px; flex-wrap: wrap; }
.emergency-item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 200px; }
.emergency-item i { font-size: 1.7rem; color: rgba(255,255,255,0.88); flex-shrink: 0; width: 30px; text-align: center; }
.emergency-item strong { display: block; color: rgba(255,255,255,0.78); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.emergency-item .emerg-number { display: block; color: white; font-size: 1.15rem; font-weight: 700; }

/* ------------------------------------------------------------
   CONTACT CARDS (contacts page)
   ------------------------------------------------------------ */
.contacts-section { background: var(--bg); }
.contacts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 28px; }
.contacts-grid.single { grid-template-columns: 1fr; }
.contacts-grid.triple { grid-template-columns: repeat(3, 1fr); }

.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-light);
  display: flex; align-items: center; gap: 8px;
}
.contact-card h3 i { color: var(--accent); font-size: 0.95rem; }

.contact-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.contact-table tr + tr td { padding-top: 9px; }
.contact-table td { vertical-align: top; line-height: 1.5; }
.contact-table td:first-child { width: 20px; color: var(--accent-dark); padding-right: 12px; vertical-align: top; }
.contact-table a { color: var(--primary); font-weight: 500; }
.contact-table a:hover { color: var(--accent-dark); }

/* Request directory table */
.request-table {
  width: 100%; border-collapse: collapse; font-size: 0.88rem;
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.request-table th {
  background: var(--primary); color: white;
  padding: 12px 16px; text-align: left;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.request-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-light); vertical-align: top; line-height: 1.5; }
.request-table tr:last-child td { border-bottom: none; }
.request-table tr:hover td { background: var(--bg); }
.request-table td:first-child { font-weight: 600; color: var(--primary); }

/* ------------------------------------------------------------
   BOARD PAGE
   ------------------------------------------------------------ */
.board-section { background: var(--bg); }
.board-section + .board-section { border-top: 1px solid var(--border-light); padding-top: 48px; }

.board-members-table {
  width: 100%; border-collapse: collapse; font-size: 0.92rem;
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.board-members-table th {
  background: var(--primary); color: white;
  padding: 12px 18px; text-align: left;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.board-members-table td { padding: 14px 18px; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.board-members-table tr:last-child td { border-bottom: none; }
.board-members-table td:first-child { font-weight: 600; color: var(--primary); }

.role-badge {
  display: inline-block;
  background: rgba(30,58,95,0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(30,58,95,0.15);
}

.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
}
.info-card p { color: var(--text-light); font-size: 0.93rem; }
.info-card p + p { margin-top: 6px; }

.minutes-list { list-style: none; background: white; border-radius: var(--radius); border: 1px solid var(--border-light); overflow: hidden; box-shadow: var(--shadow-sm); }
.minutes-list li { padding: 13px 20px; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; font-size: 0.9rem; }
.minutes-list li:last-child { border-bottom: none; }
.minutes-empty { padding: 36px; text-align: center; color: var(--text-muted); font-style: italic; }

.info-box {
  background: rgba(30,58,95,0.04);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.92rem;
  color: var(--text-light);
}
.info-box a { color: var(--primary); font-weight: 600; }
.info-box a:hover { color: var(--accent-dark); }

/* ------------------------------------------------------------
   FAQ PAGE
   ------------------------------------------------------------ */
.faq-jump-nav {
  background: white;
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}
.faq-jump-nav .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.faq-jump-nav-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.faq-jump-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.faq-jump-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.80rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.faq-jump-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.faq-jump-btn i { font-size: 0.78rem; color: var(--accent); }
.faq-jump-btn:hover i { color: var(--accent-light); }

.faq-section { background: var(--bg); }
.faq-section + .faq-section { border-top: 1px solid var(--border-light); padding-top: 48px; }

.faq-section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent-light);
}
.faq-section-heading i {
  font-size: 1.2rem;
  color: var(--accent);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.faq-section-heading h2 {
  font-size: 1.35rem;
  margin: 0;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-q::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--accent-light);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  letter-spacing: 0;
}
.faq-a {
  padding: 0 20px 16px 52px;
  font-size: 0.91rem;
  color: var(--text-light);
  line-height: 1.65;
}
.faq-a a { color: var(--primary); font-weight: 600; }
.faq-a a:hover { color: var(--accent-dark); }

.faq-guide-note {
  background: linear-gradient(135deg, rgba(30,58,95,0.04) 0%, rgba(212,168,83,0.07) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 16px;
}
.faq-guide-note a { color: var(--primary); font-weight: 600; }

/* faq-jump-nav is already column-stacked, no extra mobile override needed */

/* ------------------------------------------------------------
   COMING SOON (Spanish placeholder)
   ------------------------------------------------------------ */
.coming-soon-section { background: var(--bg); padding: 100px 0; text-align: center; }
.coming-soon-icon { font-size: 3.2rem; color: var(--accent); margin-bottom: 22px; opacity: 0.8; }
.coming-soon-section h2 { margin-bottom: 14px; }
.coming-soon-section p { color: var(--text-light); font-size: 1.02rem; max-width: 460px; margin: 0 auto 28px; }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.72); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col a { display: block; color: rgba(255,255,255,0.7); font-size: 0.88rem; padding: 3px 0; transition: color var(--transition); }
.footer-col a:hover { color: white; }
.footer-col p { font-size: 0.86rem; line-height: 1.65; margin-bottom: 7px; }
.footer-col p i { color: var(--accent); width: 16px; margin-right: 6px; vertical-align: middle; }
.footer-col p a { display: inline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ------------------------------------------------------------
   RESPONSIVE — TABLET
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  section { padding: 48px 0; }

  /* Nav */
  .header-inner { min-height: 76px; gap: 12px; }
  .logo-main { font-size: 1.05rem; }
  .logo-sub { font-size: 0.6rem; }
  .hamburger { display: block; }
  .nav-menu {
    position: fixed; top: calc(76px + env(safe-area-inset-top, 0)); left: 0; right: 0;
    background: var(--primary-dark);
    flex-direction: column; align-items: stretch;
    padding: 12px 16px 20px; gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    z-index: 99;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.25s ease;
  }
  .nav-link { padding: 12px 16px; font-size: 1rem; }
  .lang-toggle { margin: 10px 0 4px 0; align-self: flex-start; }

  /* Hero */
  .hero { padding: 60px 0 52px; }
  .hero h1 { font-size: 2.3rem; }
  .hero-actions { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 420px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 130px; }

  /* Documents */
  .doc-featured { flex-direction: column; text-align: center; padding: 26px 22px; gap: 14px; }
  .doc-grid { grid-template-columns: 1fr; }

  /* Contacts */
  .contacts-grid, .contacts-grid.triple { grid-template-columns: 1fr; }
  .emergency-inner { flex-direction: column; gap: 20px; }

  /* Board */
  .board-members-table { font-size: 0.84rem; }
  .board-members-table th, .board-members-table td { padding: 10px 12px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Announcement */
  .announcement-item { grid-template-columns: 1fr; gap: 4px; }
  .announcement-date { font-size: 0.76rem; }
}

/* ------------------------------------------------------------
   RESPONSIVE — MOBILE
   ------------------------------------------------------------ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-actions { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .action-card { padding: 16px 10px; }
  .doc-featured { padding: 20px 16px; }
  .page-hero h1 { font-size: 1.75rem; }
  section { padding: 36px 0; }
  .request-table { font-size: 0.82rem; }
  .request-table th, .request-table td { padding: 10px 12px; }
}
