/* ==========================================================
   SMK EXECUTIVE V2 — MASTER STYLESHEET
   Project: smk-executive-v2
   Build: 2026-05-19
   Template: personal-pr-luxury
   ========================================================== */

/* ---- VARIABLES ---- */
:root {
  --navy:       #1a2e4a;
  --navy-dark:  #111e30;
  --navy-mid:   #243855;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark:  #a8893a;
  --white:      #ffffff;
  --off-white:  #f8f6f2;
  --grey-light: #f0eeea;
  --grey-mid:   #d0ccc4;
  --grey-dark:  #6b6560;
  --text-dark:  #1c1a18;
  --text-body:  #3a3530;
  --success:    #2e6b45;
  --error:      #8b2222;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --max-width:  1200px;
  --radius:     4px;
  --shadow:     0 2px 12px rgba(26,46,74,0.10);
  --shadow-lg:  0 6px 32px rgba(26,46,74,0.14);
  --transition: 0.22s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: underline; }
a:hover { color: var(--navy); }
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius);
}
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.25;
  font-weight: normal;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- LAYOUT UTILITIES ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.85); }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey-dark);
  max-width: 680px;
  margin-bottom: 3rem;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-6-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 2px solid transparent;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-primary { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ---- NAVIGATION ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.site-header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.site-header.page-header { background: var(--navy-dark); box-shadow: 0 2px 16px rgba(0,0,0,0.25); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-brand:hover { color: var(--gold-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 1rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-mobile {
  display: none;
  background: var(--navy-dark);
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile a {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.6rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn { margin-top: 1rem; width: 100%; text-align: center; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, var(--navy) 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(201,168,76,0.06) 100%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.hero-content { color: var(--white); }
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.hero-title {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-family: var(--font-sans);
}
.hero-desc {
  color: rgba(255,255,255,0.80);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
.hero-portrait {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-portrait img, .hero-portrait .placeholder-img {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

/* ---- PLACEHOLDER IMAGES ---- */
.placeholder-img {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 2rem 1rem;
  font-family: var(--font-sans);
}
.placeholder-img .ph-icon { font-size: 2rem; margin-bottom: 0.5rem; opacity: 0.5; }
.placeholder-img .ph-label { opacity: 0.8; line-height: 1.4; }

/* ---- ABOUT ---- */
.about-image img, .about-image .placeholder-img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 2rem; }
.tag {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 2rem;
  letter-spacing: 0.03em;
}

/* ---- EXPERTISE ---- */
.expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.expertise-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.expertise-card:hover { box-shadow: var(--shadow); border-color: var(--grey-mid); }
.expertise-icon { width: 44px; height: 44px; margin-bottom: 1.25rem; }
.expertise-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.expertise-card p { font-size: 0.95rem; color: var(--grey-dark); margin: 0; }

/* ---- ENGAGEMENTS ---- */
.engagement-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.engagement-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.engagement-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.engagement-img { aspect-ratio: 16/9; overflow: hidden; }
.engagement-img img, .engagement-img .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.engagement-body { padding: 1.5rem; }
.engagement-badge {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  display: block;
}
.engagement-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.engagement-card p { font-size: 0.9rem; color: var(--grey-dark); margin-bottom: 1rem; }
.engagement-card a.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.engagement-card a.card-link:hover { color: var(--gold-dark); }

/* ---- NEWSROOM / ARTICLES ---- */
.newsroom-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.article-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-thumb { aspect-ratio: 16/9; overflow: hidden; }
.article-thumb img, .article-thumb .placeholder-img {
  width: 100%; height: 100%; object-fit: cover;
}
.article-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-category {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.article-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; flex: 1; }
.article-card p { font-size: 0.9rem; color: var(--grey-dark); margin-bottom: 1rem; }
.article-card .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: auto;
}
.article-card .read-more:hover { color: var(--gold-dark); }
.newsroom-cta { text-align: center; margin-top: 3rem; }

/* ---- ARTICLE PAGE ---- */
.article-page { padding-top: 120px; }
.article-header {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 3rem;
}
.article-header .article-category { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; }
.article-header h1 { color: var(--white); margin: 0.75rem 0; }
.article-meta { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 0.75rem; }
.article-feature-img { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 3rem; }
.article-feature-img img, .article-feature-img .placeholder-img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.article-content { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem; }
.article-content h2 { margin: 2rem 0 1rem; }
.article-content p { font-size: 1.05rem; line-height: 1.85; }
.article-byline { border-top: 1px solid var(--grey-mid); margin-top: 3rem; padding-top: 2rem; display: flex; align-items: center; gap: 1rem; }
.article-byline strong { display: block; font-weight: 600; color: var(--navy); }
.article-byline span { font-size: 0.85rem; color: var(--grey-dark); }
.article-back { margin-top: 3rem; }

/* ---- PRESS COVERAGE ---- */
.press-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.press-placeholder {
  width: 140px;
  height: 48px;
  background: var(--grey-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--grey-mid);
  letter-spacing: 0.05em;
}
.press-quote {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 2rem;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--grey-dark);
  max-width: 680px;
  margin: 2rem auto;
}

/* ---- AWARDS ---- */
.awards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.award-card { text-align: center; padding: 2rem 1.5rem; }
.award-icon { width: 64px; height: 64px; margin: 0 auto 1rem; }
.award-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.award-card .award-issuer { font-size: 0.85rem; color: var(--gold-dark); }
.award-card .award-year { font-size: 0.8rem; color: var(--grey-dark); margin-top: 0.25rem; }

/* ---- ENDORSEMENTS ---- */
.endorsements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.endorsement-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  padding: 2rem;
}
.endorsement-quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--grey-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.endorsement-person { display: flex; align-items: center; gap: 1rem; }
.endorsement-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--grey-light);
}
.endorsement-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); display: block; }
.endorsement-role { font-size: 0.8rem; color: var(--grey-dark); }
.placeholder-notice {
  background: #fff8e5;
  border: 1px dashed var(--gold);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  display: block;
}

/* ---- GLOBAL INFLUENCE ---- */
.influence-map-wrap { margin: 2rem 0; border-radius: 6px; overflow: hidden; }
.influence-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
  justify-content: center;
}
.country-tag {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  border-radius: 2rem;
  border: 1px solid rgba(201,168,76,0.3);
}
.influence-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem 0 0;
}
.influence-stats .stat-num { font-size: 2.4rem; }

/* ---- CONTACT ---- */
.contact-inner { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,46,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-hp { display: none; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { padding: 0.9rem 2.5rem; }
.form-status {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  display: none;
}
.form-status.success { background: #e8f5ee; border: 1px solid #a8d5b7; color: var(--success); display: block; }
.form-status.error { background: #fdf0f0; border: 1px solid #e0aaaa; color: var(--error); display: block; }
.contact-info { padding-top: 0.5rem; }
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-item-icon { width: 40px; height: 40px; background: var(--grey-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-label { font-size: 0.8rem; color: var(--grey-dark); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-item-value { font-size: 0.95rem; color: var(--text-dark); }
.contact-item-value a { color: var(--navy); }
.gdpr-note { font-size: 0.8rem; color: var(--grey-dark); margin-top: 1rem; line-height: 1.5; }
.char-counter { font-size: 0.75rem; color: var(--grey-dark); text-align: right; margin-top: 0.25rem; }

/* ---- PRESS KIT PAGE ---- */
.press-kit-section { padding: 5rem 0; }
.press-kit-section + .press-kit-section { border-top: 1px solid var(--grey-light); }
.bio-box {
  background: var(--off-white);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.bio-box .bio-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  display: block;
}
.facts-table { width: 100%; border-collapse: collapse; }
.facts-table th, .facts-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.95rem;
}
.facts-table th { background: var(--grey-light); font-weight: 600; color: var(--navy); width: 35%; }
.facts-table tr:last-child td, .facts-table tr:last-child th { border-bottom: none; }
.download-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
}
.download-box h3 { color: var(--white); margin-bottom: 0.5rem; }
.download-box p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }

/* ---- PRIVACY PAGE ---- */
.privacy-content { max-width: 760px; margin: 0 auto; padding: 5rem 1.5rem; }
.privacy-content h2 { font-size: 1.3rem; margin: 2.5rem 0 0.75rem; }
.privacy-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-content ul li { margin-bottom: 0.4rem; }

/* ---- 404 PAGE ---- */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 72px;
}
.error-code {
  font-family: var(--font-serif);
  font-size: 7rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: 1rem;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-portrait { display: none; }
  .hero-stats { justify-content: center; }
  .btns { justify-content: center; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .article-content { padding: 2rem 1rem; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.4rem; }
  .section { padding: 3.5rem 0; }
}
