/* ============================================
   MOVE TO FISH HAWK — Shared Stylesheet
   movetofishhawk.com
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --green-dark:   #1a2e1a;
  --green-sage:   #4a6741;
  --gold:         #c4933a;
  --cream:        #f7f4ee;
  --cream-dark:   #ede9e0;
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-mid:     #3a3a3a;
  --text-light:   #6a6a6a;
  --border:       #d8d3c8;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --max-width:    1200px;
  --section-pad:  80px;
  --radius:       4px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--green-sage);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }

p {
  margin-bottom: 1.2rem;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
}

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

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

.section {
  padding: var(--section-pad) 0;
}

.section--cream {
  background-color: var(--cream);
}

.section--white {
  background-color: var(--white);
}

.section--green {
  background-color: var(--green-dark);
  color: var(--cream);
}

.section--green h2,
.section--green h3,
.section--green h4 {
  color: var(--cream);
}

.section--green p {
  color: rgba(247, 244, 238, 0.85);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

.text-center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-outline:hover {
  background-color: var(--cream);
  color: var(--green-dark);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline-dark:hover {
  background-color: var(--green-dark);
  color: var(--cream);
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(26, 46, 26, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196, 147, 58, 0.2);
  padding: 0 24px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background-color: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
}

.nav-cta:hover {
  background-color: var(--cream) !important;
  color: var(--green-dark) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--cream);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: var(--green-dark);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(196, 147, 58, 0.2);
  }

  .nav-links.open {
    display: flex;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 46, 26, 0.45) 0%,
    rgba(26, 46, 26, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(247, 244, 238, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   INTRO / ABOUT SECTION
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
}

.intro-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.intro-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image-wrap::before {
    display: none;
  }
}

/* ============================================
   HIGHLIGHTS / FEATURE CARDS
   ============================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.highlight-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.highlight-card:hover {
  box-shadow: 0 8px 32px rgba(26, 46, 26, 0.1);
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.highlight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--green-dark);
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SCHOOLS TABLE
   ============================================ */
.schools-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.schools-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background-color: var(--white);
}

.schools-table thead {
  background-color: var(--green-dark);
  color: var(--cream);
}

.schools-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schools-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background-color 0.15s ease;
}

.schools-table tbody tr:last-child {
  border-bottom: none;
}

.schools-table tbody tr:hover {
  background-color: var(--cream);
}

.schools-table td {
  padding: 14px 20px;
  color: var(--text-mid);
}

.schools-table td:first-child {
  font-weight: 500;
  color: var(--green-dark);
}

.rating-badge {
  display: inline-block;
  background-color: var(--green-sage);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(26, 46, 26, 0.1);
  transform: translateY(-2px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-image-placeholder {
  width: 100%;
  height: 200px;
  background-color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-card-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card h3 a {
  color: var(--green-dark);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--gold);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-sage);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.blog-card-link:hover {
  color: var(--gold);
}

.blog-card-link::after {
  content: '→';
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PHOTO BAND (full-width image strip)
   ============================================ */
.photo-band {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,46,26,0.7) 0%, rgba(26,46,26,0.2) 60%);
  display: flex;
  align-items: center;
}

.photo-band-content {
  padding: 0 48px;
  max-width: 560px;
}

.photo-band-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.photo-band-content p {
  color: rgba(247,244,238,0.9);
  margin-bottom: 28px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-sage);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.12);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-submit:hover {
  background-color: transparent;
  color: var(--gold);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .contact-form-wrap {
    padding: 28px 20px;
  }

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

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */
.page-header {
  background-color: var(--green-dark);
  padding: 120px 24px 60px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(247, 244, 238, 0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   ARTICLE / POST STYLES
   ============================================ */
.post-header {
  background-color: var(--green-dark);
  padding: 120px 24px 64px;
}

.post-header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.post-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.post-date {
  font-size: 0.85rem;
  color: rgba(247, 244, 238, 0.6);
}

.post-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.post-header .post-excerpt {
  font-size: 1.15rem;
  color: rgba(247, 244, 238, 0.85);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0;
}

.post-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}

.post-body h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.post-body h3 {
  margin-top: 36px;
  margin-bottom: 14px;
}

.post-body p {
  margin-bottom: 1.4rem;
}

.post-body ul,
.post-body ol {
  margin: 0 0 1.4rem 24px;
  color: var(--text-mid);
}

.post-body li {
  margin-bottom: 6px;
  line-height: 1.7;
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.post-body table thead {
  background-color: var(--green-dark);
  color: var(--cream);
}

.post-body table thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-body table tbody tr {
  border-bottom: 1px solid var(--border);
}

.post-body table tbody tr:last-child {
  border-bottom: none;
}

.post-body table tbody tr:hover {
  background-color: var(--cream);
}

.post-body table td {
  padding: 12px 18px;
  color: var(--text-mid);
}

.post-cta {
  margin-top: 64px;
  padding: 40px;
  background-color: var(--green-dark);
  border-radius: var(--radius);
  text-align: center;
}

.post-cta h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.post-cta p {
  color: rgba(247, 244, 238, 0.85);
  margin-bottom: 24px;
}

/* ============================================
   POST LAYOUT WITH SIDEBAR
   ============================================ */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
  align-items: start;
}

.post-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-cta-box,
.sidebar-articles-box {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.sidebar-cta-box {
  background-color: var(--green-dark);
}

.sidebar-cta-box h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}

.sidebar-cta-box p {
  font-size: 0.85rem;
  color: rgba(247, 244, 238, 0.75);
  margin-bottom: 16px;
  line-height: 1.65;
}

.sidebar-articles-box h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sidebar-article-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s;
}

.sidebar-article-link:last-child {
  border-bottom: none;
}

.sidebar-article-link:hover .sidebar-article-title {
  color: var(--gold);
}

.sidebar-article-current .sidebar-article-title {
  color: var(--green-sage);
  font-weight: 600;
}

.sidebar-article-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.sidebar-article-title {
  font-size: 0.88rem;
  color: var(--green-dark);
  line-height: 1.4;
  transition: color 0.15s;
}

.sidebar-article-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.article-nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.article-nav-link:hover {
  box-shadow: 0 4px 16px rgba(26, 46, 26, 0.08);
  border-color: var(--green-sage);
}

.article-nav-next { text-align: right; }

.article-nav-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-nav-title {
  font-size: 0.9rem;
  color: var(--green-dark);
  line-height: 1.4;
  font-family: var(--font-heading);
}

@media (max-width: 900px) {
  .post-layout {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
  }

  .post-sidebar {
    position: static;
    order: -1;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav-next { text-align: left; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--green-dark);
  border-top: 1px solid rgba(196, 147, 58, 0.2);
  padding: 40px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(247, 244, 238, 0.65);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-contact {
  font-size: 0.85rem;
  color: rgba(247, 244, 238, 0.65);
}

.footer-contact a {
  color: var(--gold);
}

.footer-contact a:hover {
  color: var(--cream);
}

.footer-eho {
  text-align: center;
}

.footer-eho img {
  width: 60px;
  margin: 0 auto 8px;
  opacity: 0.85;
}

.footer-eho p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.5);
  margin-bottom: 0;
}

.footer-legal {
  text-align: right;
  font-size: 0.78rem;
  color: rgba(247, 244, 238, 0.5);
  line-height: 1.8;
}

.footer-legal a {
  color: rgba(247, 244, 238, 0.5);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-legal .divider {
  margin: 0 8px;
  opacity: 0.4;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-legal {
    text-align: center;
  }

  .footer-eho img {
    margin: 0 auto 8px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.loading-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.no-posts {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-light);
}
