/* ============================================================
   AmericanInFrance.fr — Gershon Consulting
   Brand: Navy Blue (#0A1F5C) + Gold (#C9A84C) + White + Light Grey
   ============================================================ */

:root {
  --navy:       #0A1F5C;
  --navy-light: #122878;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --white:      #FFFFFF;
  --off-white:  #F7F8FC;
  --light-grey: #EEF0F5;
  --mid-grey:   #8A93A6;
  --dark:       #1C1C2E;
  --success:    #2ECC71;
  --red:        #E74C3C;
  --font-main:  'Inter', 'Segoe UI', Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --shadow-sm:  0 2px 8px rgba(10,31,92,0.08);
  --shadow-md:  0 6px 24px rgba(10,31,92,0.13);
  --shadow-lg:  0 16px 48px rgba(10,31,92,0.18);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: 0.25s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-mid { color: var(--mid-grey); }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-lg { padding: 16px 42px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,31,92,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}
.nav-logo .logo-main span { color: var(--gold); }
.nav-logo .logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 60%, #0d2d5e 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.hero-flags {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-flag-stripe {
  position: absolute;
  width: 100%;
  opacity: 0.04;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.hero-stat .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.hero-visual {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: 0.07;
  pointer-events: none;
  font-size: 280px;
  line-height: 1;
}

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 600px;
  margin: 0 auto;
}
.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-body { padding: 28px; }

/* ---- CATEGORY GRID ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--light-grey);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.cat-card:hover::before { transform: scaleY(1); }
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}
.cat-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(10,31,92,0.08), rgba(201,168,76,0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.cat-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.cat-card p { font-size: 0.88rem; color: var(--mid-grey); margin: 0; }
.cat-count {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--light-grey);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ---- RESOURCE LINKS ---- */
.resource-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--light-grey);
  transition: all var(--transition);
  margin-bottom: 10px;
}
.resource-link:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.resource-link .rl-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.resource-link .rl-body h4 { font-size: 0.92rem; font-family: var(--font-main); color: var(--navy); margin-bottom: 3px; }
.resource-link .rl-body p { font-size: 0.8rem; color: var(--mid-grey); margin: 0; }
.resource-link .rl-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--light-grey);
  color: var(--navy);
  white-space: nowrap;
  align-self: center;
}
.resource-link .rl-badge.essential { background: rgba(201,168,76,0.15); color: #8B6914; }
.resource-link .rl-badge.official { background: rgba(10,31,92,0.08); color: var(--navy); }
.resource-link .rl-badge.community { background: rgba(46,204,113,0.1); color: #1a7a49; }
.resource-link .rl-badge.business { background: rgba(52,152,219,0.1); color: #1a5f8a; }

/* ---- NEWSLETTER BANNER ---- */
.newsletter-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-band::before {
  content: '✉';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  opacity: 0.05;
  line-height: 1;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.15);
}

/* ---- FORMS ---- */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  color: var(--dark);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-control::placeholder { color: var(--mid-grey); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--dark);
  padding: 6px 0;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}
.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.interest-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--light-grey);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all var(--transition);
}
.interest-tag:hover, .interest-tag.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
  color: var(--navy);
}
.interest-tag input { display: none; }

/* ---- PARTNER / CONSULTANT CTA ---- */
.partner-band {
  background: linear-gradient(135deg, #0A1F5C 0%, #0d3068 50%, #0A1F5C 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.partner-band::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
}
.partner-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.partner-step {
  text-align: center;
  padding: 28px 20px;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 16px;
}
.partner-step h4 { color: var(--white); margin-bottom: 8px; }
.partner-step p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ---- ABOUT GERSHON BAND ---- */
.gershon-band {
  background: var(--white);
  border-top: 4px solid var(--gold);
  padding: 64px 0;
}
.gershon-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gershon-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.services-list { margin-top: 20px; }
.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-grey);
  font-size: 0.92rem;
}
.service-item:last-child { border-bottom: none; }
.service-item .check {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
}

/* ---- TABS ---- */
.tab-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  background: var(--light-grey);
  padding: 6px;
  border-radius: 12px;
  margin-bottom: 36px;
}
.tab-btn {
  flex: 1;
  min-width: 120px;
  padding: 10px 20px;
  background: none;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--mid-grey);
  font-family: var(--font-main);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.tab-btn.active { color: var(--navy); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ---- SEARCH BAR ---- */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--light-grey);
  border-radius: 50px;
  padding: 10px 20px;
  gap: 12px;
  transition: border-color var(--transition);
  max-width: 560px;
  margin: 0 auto 40px;
}
.search-bar:focus-within { border-color: var(--gold); }
.search-bar input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.95rem;
  font-family: var(--font-main);
  background: transparent;
  color: var(--dark);
}
.search-bar i { color: var(--mid-grey); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 110px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 16px auto 0; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main { color: var(--white); font-family: var(--font-serif); font-size: 1.3rem; }
.footer-brand .logo-main span { color: var(--gold); }
.footer-brand p { font-size: 0.875rem; margin-top: 12px; line-height: 1.7; max-width: 280px; }
.footer h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 16px; font-family: var(--font-main); text-transform: uppercase; letter-spacing: 1px; }
.footer ul li { margin-bottom: 9px; }
.footer ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold); }
.footer-legal { display: flex; gap: 20px; }

/* ---- TOAST NOTIFICATION ---- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 10px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 340px;
}
.toast.show { transform: translateX(0); }
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--red); }

/* ---- BADGES & TAGS ---- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.tag-gold { background: rgba(201,168,76,0.15); color: #8B6914; }
.tag-navy { background: rgba(10,31,92,0.1); color: var(--navy); }
.tag-green { background: rgba(46,204,113,0.12); color: #1a7a49; }
.tag-blue { background: rgba(52,152,219,0.12); color: #1a5f8a; }

/* ---- ALERT ---- */
.alert {
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-info { background: rgba(52,152,219,0.08); border: 1px solid rgba(52,152,219,0.2); color: #1a5f8a; }
.alert-gold { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: #8B6914; }

/* ---- BACK TO TOP ---- */
#back-to-top {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--gold); color: var(--navy); }

/* ---- FEED ROW (homepage widget) ---- */
.feed-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-grey);
  transition: background var(--transition);
}
.feed-row:last-child { border-bottom: none; }
.feed-row:hover { background: rgba(201,168,76,0.03); }
.feed-row-icon {
  font-size: 1.1rem;
  width: 32px; height: 32px; min-width: 32px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feed-row-content { flex: 1; }
.feed-row-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
  transition: color var(--transition);
}
.feed-row-title:hover { color: var(--gold); }
.feed-row-meta {
  font-size: 0.75rem;
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  gap: 4px;
}
.feed-row-dot { color: var(--light-grey); }

/* ---- SKELETON ---- */
.skel {
  background: linear-gradient(90deg, var(--light-grey) 25%, #e8eaf0 50%, var(--light-grey) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
  margin-bottom: 10px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skel-meta { height: 22px; width: 55%; }
.skel-title { height: 18px; width: 100%; }
.skel-title.short { width: 75%; }
.skel-desc { height: 14px; width: 100%; }
.skel-desc.short { width: 65%; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gershon-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .nav-toggle { display: flex; }
  .hero { text-align: left; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; }
  .section { padding: 56px 0; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .newsletter-form { flex-direction: column; }
  .partner-steps { grid-template-columns: 1fr; }
}
