/*
 * Tom Jensen Executive — Custom CSS
 * Dark Executive: charcoal + gold, Cormorant Garamond + Jost
 * Uses high specificity to override WordPress / Gutenberg defaults
 */

/* ─── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
  --bg-deep:      #0d0f14;
  --bg-card:      #141720;
  --bg-section:   #111318;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --gold-dim:     rgba(201,168,76,0.15);
  --white:        #f5f0e8;
  --muted:        #8a8fa8;
  --border:       rgba(201,168,76,0.18);
  --border-solid: #2a2d3a;
}

/* ─── Hard Reset — Override WordPress defaults ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-deep) !important;
  color: var(--white) !important;
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ─── Typography ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  color: var(--white) !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem) !important; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem) !important; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem) !important; }
p  {
  font-family: 'Jost', sans-serif !important;
  font-size: 1rem !important;
  color: rgba(245,240,232,0.75) !important;
  line-height: 1.8 !important;
  margin-bottom: 1.25rem;
}
p:last-child { margin-bottom: 0; }

/* ─── WordPress / Gutenberg Overrides ───────────────────────────────────────── */
.wp-site-blocks,
.entry-content,
.wp-block-group,
.wp-block-cover,
.wp-block-post-content {
  background: transparent !important;
  color: var(--white) !important;
}
.wp-block-group__inner-container { max-width: none !important; }
.site-main { background: var(--bg-deep) !important; }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
/* All buttons: rectangular, gold-filled, dark text */
.btn, .btn-primary,
.wp-block-button__link,
.wp-element-button {
  display: inline-block !important;
  padding: 0.9rem 2.2rem !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.78rem !important; font-weight: 600 !important;
  letter-spacing: 0.14em !important; text-transform: uppercase !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--bg-deep) !important;
  border: none !important; border-radius: 0 !important;
  text-decoration: none !important; cursor: pointer !important;
  transition: all 0.3s ease !important;
}
.btn:hover, .btn-primary:hover,
.wp-block-button__link:hover,
.wp-element-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(201,168,76,0.35) !important;
  color: var(--bg-deep) !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}
/* Outline variant — also gold */
.btn-outline,
.btn-outline-custom .wp-block-button__link {
  display: inline-block !important;
  padding: 0.9rem 2.2rem !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.78rem !important; font-weight: 600 !important;
  letter-spacing: 0.14em !important; text-transform: uppercase !important;
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  border-radius: 0 !important; text-decoration: none !important; cursor: pointer !important;
  transition: all 0.3s ease !important;
}
.btn-outline:hover,
.btn-outline-custom .wp-block-button__link:hover {
  background: var(--gold-dim) !important;
  color: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
}

/* ─── Section Shared ─────────────────────────────────────────────────────────── */
.hero-section,
.about-section,
.gallery-section,
.businesses-section,
.social-section,
.contact-section {
  padding: 100px 2rem;
  width: 100%;
}
.hero-section {
  padding-top: 160px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.about-section    { background: var(--bg-section); }
.gallery-section  { background: var(--bg-deep); }
.businesses-section { background: var(--bg-section); }
.social-section   { background: var(--bg-deep); }
.contact-section  { background: var(--bg-section); }

/* ─── Section Labels & Titles ────────────────────────────────────────────────── */
.section-label {
  display: flex; align-items: center; gap: 1rem;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.7rem !important; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold) !important; margin-bottom: 1.5rem;
}
.section-label::before, .section-label::after {
  content: ''; flex: 0 0 40px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.section-header-center { text-align: center; margin-bottom: 3.5rem; }
.section-header-center .section-label { justify-content: center; }
.section-sub {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.95rem !important;
  color: var(--muted) !important;
  max-width: 560px; margin: 0 auto;
}
.gold-text { color: var(--gold) !important; }
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 1.5rem;
}

/* ─── Navigation ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  background: transparent;
  transition: all 0.4s ease;
}
.site-header.scrolled {
  background: rgba(13,15,20,0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-initials {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem; font-weight: 700;
  color: var(--bg-deep);
  line-height: 1;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.3rem !important; font-weight: 600 !important;
  color: var(--white) !important;
  text-decoration: none;
}
/* Desktop nav links — plain <nav> with <a> tags */
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,240,232,0.7); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
/* Also support old ul/li structure just in case */
.nav-links ul { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links ul li a {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,240,232,0.7); text-decoration: none;
  transition: color 0.2s;
}
.nav-links ul li a:hover { color: var(--gold); }
.nav-hamburger-wrap { display: none; }

/* Mobile Nav overlay — sits ABOVE the fixed header (z-index 1000) */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,15,20,0.99);
  z-index: 2000;  /* above header z-index:1000 */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem; color: var(--white);
  text-decoration: none; transition: color 0.2s;
  letter-spacing: 0.05em;
}
.mobile-nav-link:hover { color: var(--gold); }
/* Close button — inside the overlay, top-right, clearly above everything */
.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
  padding: 0.5rem;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-close:hover { color: var(--gold); }
/* Hamburger button */
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
  -webkit-tap-highlight-color: transparent;
  z-index: 1001;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
/* Hide hamburger when mobile nav is open */
body.mobile-nav-open .nav-hamburger-wrap { visibility: hidden; }

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}
.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content { display: flex; flex-direction: column; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.hero-title { margin-bottom: 1.25rem !important; }
.hero-title strong {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 600;
}
.hero-roles {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.hero-role-item {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem; color: rgba(245,240,232,0.6); letter-spacing: 0.05em;
}
.hero-role-sep { color: var(--gold); opacity: 0.5; }
.hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.3rem !important; font-style: italic;
  color: rgba(245,240,232,0.6) !important;
  margin-bottom: 2rem !important;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 0 !important;
}
.hero-stats {
  display: flex; gap: 3rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat { text-align: left; }
.hero-stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.25rem;
}
.hero-photo-col {
  display: flex; justify-content: center; align-items: center;
}
.hero-photo-ring {
  position: relative; width: 380px; height: 380px;
  flex-shrink: 0;
}
.hero-photo-ring::before {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold-light));
  z-index: 0;
}
.hero-photo-ring img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
  border: 6px solid var(--bg-deep);
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); animation: bounce 2s infinite;
}
.hero-scroll svg { color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── About ──────────────────────────────────────────────────────────────────── */
/* Two-column row: About Me + Core Values — equal height */
.about-cols-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.about-col {
  display: flex;
  flex-direction: column;
}
/* Full-width Passions & Pursuits row — spans below both columns */
.passions-full-row {
  max-width: 1200px;
  margin: 3.5rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
/* Legacy grid kept for backward compat */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.about-interests {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0;
}
.interest-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.25rem;
  transition: border-color 0.3s, transform 0.3s;
}
.interest-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.interest-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.interest-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem; font-weight: 600; color: var(--white);
  margin-bottom: 0.25rem;
}
.interest-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem; color: var(--muted);
}
.about-values { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 1.5rem; }
.value-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.value-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem; font-weight: 300;
  color: var(--border); line-height: 1; flex-shrink: 0; min-width: 2.5rem;
}
.value-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem; font-weight: 600; color: var(--white);
  margin-bottom: 0.35rem;
}
.value-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem; color: var(--muted); line-height: 1.6;
}

/* ─── Gallery Lightbox ───────────────────────────────────────────────────────── */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--white); font-size: 2.5rem;
  cursor: pointer; z-index: 10000;
  line-height: 1; padding: 0.5rem;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.lightbox-close:hover { color: var(--gold); }

/* ─── Gallery ────────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; margin: 0; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,15,20,0.85) 0%, transparent 60%);
  color: var(--white); padding: 1.5rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover figcaption { opacity: 1; }

/* ─── Businesses ─────────────────────────────────────────────────────────────── */
.businesses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.business-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.business-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(201,168,76,0.1);
}
.business-card-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 1.5rem;
}
.business-logo-wrap {
  width: 80px; height: 80px;
  background: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  overflow: hidden;
}
.business-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.business-logo-monogram {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem; font-weight: 700; color: var(--bg-deep);
}
.business-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.3rem 0.75rem;
}
.business-name {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.8rem !important; font-weight: 600 !important;
  color: var(--white) !important;
  margin-bottom: 1rem !important;
}
.business-desc {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.88rem !important;
  color: var(--muted) !important;
  line-height: 1.7 !important;
  margin-bottom: 1.5rem !important;
}
.business-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.2rem;
  text-decoration: none;
  transition: border-color 0.2s, gap 0.2s;
}
.business-link:hover { border-color: var(--gold); gap: 0.75rem; color: var(--gold-light); }

/* ─── Social ─────────────────────────────────────────────────────────────────── */
.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.social-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 2.5rem;
  min-width: 140px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.social-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.12);
}
.social-icon { color: var(--gold); }
.social-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem; font-weight: 600; color: var(--white);
}
.social-handle {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; color: var(--muted);
}

/* ─── Contact ────────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.contact-detail {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem; color: var(--muted);
  margin-top: 2rem;
}
.contact-detail svg { color: var(--gold); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-solid);
  padding: 2.5rem 2rem;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  max-width: 1200px; margin: 0 auto;
}
.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.4rem !important; font-weight: 600 !important;
  color: var(--white) !important;
  margin: 0 !important;
}
.footer-copy {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.78rem !important;
  color: var(--muted) !important;
  margin: 0 !important;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ─── Fade-up Animations ─────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner     { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-photo-col { order: -1; }
  .hero-photo-ring { width: 280px; height: 280px; }
  .hero-eyebrow, .hero-roles, .hero-buttons, .hero-stats { justify-content: center; }
  .hero-stats { gap: 2rem; }
  .about-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .about-cols-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about-interests { grid-template-columns: repeat(2, 1fr); }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .businesses-grid { grid-template-columns: 1fr; max-width: 500px; }
}
@media (max-width: 768px) {
  .hero-section, .about-section, .gallery-section,
  .businesses-section, .social-section, .contact-section {
    padding: 80px 1.25rem;
  }
  .hero-section { padding-top: 100px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  /* Hide desktop nav links, show hamburger */
  .nav-links {
    display: none !important;
  }
  /* Also hide any WordPress navigation block that might render */
  .site-header .wp-block-navigation,
  .site-header .wp-block-navigation__container {
    display: none !important;
  }
  .nav-hamburger-wrap { display: flex !important; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .social-grid  { gap: 1rem; }
  .social-card  { padding: 1.5rem 1.75rem; min-width: 120px; }
  /* Ensure site-header stays compact on mobile */
  .site-header {
    padding: 1rem 1.25rem !important;
  }
  .nav-inner {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .hero-photo-ring { width: 220px; height: 220px; }
  .about-interests { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
}
