/*
Theme Name: Kadence Child – Little May Gold
Template: kadence
*/

:root {
  --color-bg:            #0a0a0a;
  --color-surface:       #111111;
  --color-surface-2:     #1a1a1a;
  --color-gold:          #c9a84c;
  --color-gold-light:    #e8c97a;
  --color-gold-dim:      #8a6f2e;
  --color-emerald:       #2d6a4f;
  --color-emerald-light: #40916c;
  --color-text:          #e8e8e8;
  --color-text-muted:    #999999;
  --color-border:        rgba(201, 168, 76, 0.2);
  --color-glass-bg:      rgba(255, 255, 255, 0.04);
  --color-glass-border:  rgba(201, 168, 76, 0.15);

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Source Serif 4', Georgia, serif;
  --font-mono:    'Space Mono', monospace;

  --section-pad: clamp(60px, 8vw, 120px);
  --container:   1200px;
  --radius:      8px;
  --radius-lg:   16px;
  --glass-blur:  blur(12px);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=Space+Mono:wght@400;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}
.site { background: var(--color-bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-gold-light); }

/* ===== CONTAINER ===== */
.lmg-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--color-text);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.gold-text { color: var(--color-gold); }
.mono-text {
  font-family: var(--font-mono);
  font-size: 0.85em;
  letter-spacing: 0.08em;
}

/* ===== SECTION ===== */
.lmg-section { padding: var(--section-pad) 0; }
.lmg-section--dark    { background: var(--color-bg); }
.lmg-section--surface { background: var(--color-surface); }

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  padding: 40px;
  transition: border-color 0.3s, transform 0.3s;
}
.glass-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
}

/* ===== STAT BOX ===== */
.stat-box {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-glass-bg);
}
.stat-box__number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--color-gold);
  line-height: 1;
  display: block;
}
.stat-box__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 8px;
  display: block;
}

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin: 20px 0 32px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
  color: #0a0a0a;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); color: #0a0a0a; }

.btn-outline {
  display: inline-block;
  padding: 13px 34px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--color-gold); color: #0a0a0a; }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: block;
}

/* ===== GRID UTILITIES ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   KADENCE OVERRIDE BLOCK
   Fixes specificity conflicts with Kadence parent theme.
   Must stay at bottom of file - do not move.
============================================================ */

/* Hide Kadence default header entirely */
#masthead,
.site-header,
.kadence-top-header-wrap,
.kadence-sticky-header,
.kadence-header,
.wp-block-kadence-header { display: none !important; }

/* Force dark background throughout */
html,
body,
body.home,
body.page,
.site,
.site-content,
.wp-site-blocks,
.entry-content,
main,
#lmg-main { background-color: #0a0a0a !important; }

/* Fix body text color - Kadence sets this to dark */
body,
body p,
body li,
body span,
body div,
.site-content p,
.entry-content p,
.wp-block-paragraph { color: #e8e8e8 !important; }

/* Headings */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
.entry-content h1,
.entry-content h2,
.entry-content h3 { color: #e8e8e8 !important; font-family: 'Bebas Neue', sans-serif !important; }

/* Links */
body a { color: #c9a84c !important; }
body a:hover { color: #e8c97a !important; }

/* Gold accent classes */
.gold-text,
.stat-box__number { color: #c9a84c !important; }

.section-label {
  color: #c9a84c !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
}

/* Muted text classes */
.lmg-hero__sub,
.stat-box__label,
.lmg-checklist li,
.lmg-split__text p,
.lmg-callout-card p,
.lmg-about__text p,
.lmg-story__split p,
.lmg-story__geo-text p,
.lmg-news-card p,
.lmg-footer__tagline,
.lmg-footer__links a,
.lmg-footer__bottom p,
.lmg-disclaimer__body p { color: #999999 !important; }

/* Section backgrounds */
.lmg-section--dark,
.lmg-section--dark * { background-color: #0a0a0a; }
.lmg-section--surface { background-color: #111111 !important; }

/* Glass cards */
.glass-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(201, 168, 76, 0.15) !important;
  color: #e8e8e8 !important;
}
.glass-card p { color: #999999 !important; }
.glass-card h3 { color: #e8e8e8 !important; }

/* Stat boxes */
.stat-box {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
}

/* Buttons - prevent Kadence from restyling */
.btn-primary,
.btn-primary:visited {
  background: linear-gradient(135deg, #c9a84c, #8a6f2e) !important;
  color: #0a0a0a !important;
  border: none !important;
  font-family: 'Space Mono', monospace !important;
}
.btn-primary:hover { color: #0a0a0a !important; opacity: 0.88 !important; }

.btn-outline,
.btn-outline:visited {
  background: transparent !important;
  border: 1px solid #c9a84c !important;
  color: #c9a84c !important;
  font-family: 'Space Mono', monospace !important;
}
.btn-outline:hover {
  background: #c9a84c !important;
  color: #0a0a0a !important;
}

/* Hero */
.lmg-hero { background: #0a0a0a !important; }
.lmg-hero__content { position: relative; z-index: 1; }
.lmg-hero h1 { color: #e8e8e8 !important; }
.lmg-hero h1 .gold-text { color: #c9a84c !important; }

/* Header */
.lmg-header {
  background: rgba(10, 10, 10, 0.88) !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2) !important;
}
.lmg-nav a { color: #999999 !important; }
.lmg-nav a:hover { color: #c9a84c !important; }
.lmg-nav .nav-cta {
  color: #c9a84c !important;
  border-color: #c9a84c !important;
}
.lmg-nav .nav-cta:hover { background: #c9a84c !important; color: #0a0a0a !important; }

/* Footer */
.lmg-footer { background: #111111 !important; border-top: 1px solid rgba(201, 168, 76, 0.2) !important; }
.lmg-footer__links h4 { color: #c9a84c !important; }
.lmg-footer__links a { color: #999999 !important; }
.lmg-footer__links a:hover { color: #c9a84c !important; }
.lmg-footer__bottom { background: #111111 !important; border-top: 1px solid rgba(201, 168, 76, 0.2) !important; }

/* Contact form CF7 overrides */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  color: #e8e8e8 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-family: 'Source Serif 4', Georgia, serif !important;
  font-size: 0.95rem !important;
  width: 100% !important;
  box-shadow: none !important;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  border-color: #c9a84c !important;
  outline: none !important;
}
.wpcf7-form select option { background: #111111 !important; color: #e8e8e8 !important; }
.wpcf7-form input[type="submit"] {
  background: linear-gradient(135deg, #c9a84c, #8a6f2e) !important;
  color: #0a0a0a !important;
  font-family: 'Space Mono', monospace !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 14px 36px !important;
  cursor: pointer !important;
  width: auto !important;
  margin-top: 24px !important;
}
.wpcf7-form input[type="submit"]:hover { opacity: 0.88 !important; }
.wpcf7-form label {
  color: #999999 !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-bottom: 6px !important;
  margin-top: 20px !important;
}

/* Image borders */
.lmg-split__image img,
.lmg-about__photo img,
.lmg-story__geo-images img,
.lmg-image-strip img,
.lmg-gallery__item img,
.lmg-news-card__image img {
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  border-radius: 8px !important;
}

/* Gold divider */
.gold-divider {
  width: 60px !important;
  height: 2px !important;
  background: linear-gradient(90deg, #c9a84c, transparent) !important;
  margin: 20px 0 32px !important;
  border: none !important;
}

/* Disclaimer */
.lmg-disclaimer {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
}
.lmg-disclaimer summary { color: #c9a84c !important; }

/* Quote block */
.lmg-quote {
  border-left: 3px solid #c9a84c !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #e8e8e8 !important;
}
.lmg-quote cite { color: #c9a84c !important; }

/* Kadence default content padding reset */
.kadence-inner-column-inner,
.wp-block-kadence-column,
.kadence-column { background: transparent !important; }

/* Remove any Kadence white content wrappers */
.site-main,
.content-bg,
.wp-block-group { background: transparent !important; }

/* Pagination */
.lmg-pagination .nav-links a { color: #999999 !important; border-color: rgba(201, 168, 76, 0.2) !important; }
.lmg-pagination .nav-links a:hover,
.lmg-pagination .nav-links .current { color: #c9a84c !important; border-color: #c9a84c !important; }

/* ===== HIDE KADENCE DEFAULT HEADER ===== */
#masthead { display: none !important; }
.site-header { display: none !important; }

/* ===== HEADER ===== */
.lmg-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}
.lmg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.lmg-logo img { height: 44px; width: auto; }

.lmg-nav ul { display: flex; list-style: none; gap: 36px; align-items: center; }
.lmg-nav a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.lmg-nav a:hover { color: var(--color-gold); }
.lmg-nav .nav-cta {
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 8px 20px;
  border-radius: 4px;
}
.lmg-nav .nav-cta:hover { background: var(--color-gold); color: #0a0a0a; }

.lmg-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.lmg-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .lmg-nav-toggle { display: flex; }
  .lmg-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
  }
  .lmg-nav.open { display: block; }
  .lmg-nav ul { flex-direction: column; gap: 20px; }
}

/* ===== FOOTER ===== */
.lmg-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.lmg-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 64px clamp(20px, 4vw, 60px);
}
.lmg-footer__tagline {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
}
.lmg-footer__contact {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.8;
}
.lmg-footer__contact a { color: var(--color-text-muted); }
.lmg-footer__contact a:hover { color: var(--color-gold); }
.lmg-footer__links h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.lmg-footer__links ul { list-style: none; }
.lmg-footer__links li { margin-bottom: 10px; }
.lmg-footer__links a { color: var(--color-text-muted); font-size: 0.9rem; }
.lmg-footer__links a:hover { color: var(--color-gold); }
.lmg-footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}
.lmg-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lmg-footer__bottom p,
.lmg-footer__bottom a { color: var(--color-text-muted); font-size: 0.8rem; }

@media (max-width: 768px) {
  .lmg-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .lmg-footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== HERO ===== */
.lmg-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lmg-hero__bg { position: absolute; inset: 0; z-index: 0; }
.lmg-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.lmg-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.35) 100%
  );
}
.lmg-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.lmg-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-muted);
  margin: 24px 0 36px;
  max-width: 560px;
  line-height: 1.7;
}
.lmg-hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.lmg-hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ===== SPLIT LAYOUT (overview section) ===== */
.lmg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lmg-split__text p { color: var(--color-text-muted); margin-bottom: 16px; }
.lmg-split__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

/* ===== CHECKLIST ===== */
.lmg-checklist { list-style: none; }
.lmg-checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.lmg-checklist li::before {
  content: '->';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/* ===== CALLOUT GRID (mineralization section) ===== */
.lmg-callout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.lmg-callout-card p { color: var(--color-text-muted); font-size: 0.95rem; }

/* ===== IMAGE STRIP ===== */
.lmg-image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-bottom: var(--section-pad);
}
.lmg-image-strip figure { position: relative; }
.lmg-image-strip img {
  width: 100%; height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s;
}
.lmg-image-strip figure:hover img { border-color: var(--color-gold); }
.lmg-image-strip figcaption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ===== CONTACT ===== */
.lmg-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lmg-contact__text p { color: var(--color-text-muted); margin-bottom: 8px; }

/* CF7 overrides */
.lmg-contact__form .wpcf7-form label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 6px;
  margin-top: 20px;
}
.lmg-contact__form .wpcf7-form input,
.lmg-contact__form .wpcf7-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.lmg-contact__form .wpcf7-form input:focus,
.lmg-contact__form .wpcf7-form textarea:focus { border-color: var(--color-gold); }
.lmg-contact__form .wpcf7-form textarea { min-height: 120px; resize: vertical; }
.lmg-contact__form .wpcf7-form input[type="submit"] {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
  color: #0a0a0a;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  width: auto;
  padding: 14px 36px;
}

/* ===== DISCLAIMER ===== */
.lmg-disclaimer {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 28px;
  background: var(--color-glass-bg);
}
.lmg-disclaimer summary {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  cursor: pointer;
  user-select: none;
}
.lmg-disclaimer__body { margin-top: 20px; }
.lmg-disclaimer__body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

@media (max-width: 1000px) {
  .lmg-callout-grid { grid-template-columns: 1fr 1fr; }
  .lmg-callout-card--main { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .lmg-split, .lmg-contact { grid-template-columns: 1fr; gap: 40px; }
  .lmg-image-strip { grid-template-columns: 1fr; }
  .lmg-image-strip img { height: 220px; }
}
@media (max-width: 600px) {
  .lmg-callout-grid { grid-template-columns: 1fr; }
}

/* ===== PAGE HERO ===== */
.lmg-page-hero {
  padding: clamp(80px, 10vw, 140px) 0 60px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

/* ===== ABOUT BIO ===== */
.lmg-about__bio {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
.lmg-about__photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.lmg-about__text p { color: var(--color-text-muted); margin-bottom: 16px; }

/* ===== FIELD STATEMENT ===== */
.lmg-field-statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lmg-field-statement__quote blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin: 16px 0;
}
.lmg-field-statement__quote cite {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  font-style: normal;
}
.lmg-field-statement__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lmg-field-statement__images img {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

/* ===== GALLERY ===== */
.lmg-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lmg-gallery__item img {
  width: 100%; height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s;
}
.lmg-gallery__item:hover img { border-color: var(--color-gold); }
.lmg-gallery__item figcaption {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .lmg-about__bio        { grid-template-columns: 1fr; }
  .lmg-about__photo img  { max-width: 320px; }
  .lmg-field-statement   { grid-template-columns: 1fr; }
  .lmg-gallery           { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lmg-gallery           { grid-template-columns: 1fr; }
  .lmg-field-statement__images { grid-template-columns: 1fr; }
}

/* ===== STORY PAGE ===== */
.lmg-story__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lmg-story__split p { color: var(--color-text-muted); margin-bottom: 16px; }

.lmg-story__geo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.lmg-story__geo-text p { color: var(--color-text-muted); margin-bottom: 16px; }
.lmg-story__geo-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lmg-story__geo-images img {
  width: 100%; height: 190px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.lmg-quote {
  border-left: 3px solid var(--color-gold);
  padding: 16px 20px;
  margin: 28px 0;
  background: var(--color-glass-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
}
.lmg-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

@media (max-width: 900px) {
  .lmg-story__split,
  .lmg-story__geo { grid-template-columns: 1fr; gap: 32px; }
  .lmg-story__geo-images { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .lmg-story__geo-images { grid-template-columns: 1fr; }
}

/* ===== NEWS ARCHIVE ===== */
.lmg-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.lmg-news-card { padding: 0; overflow: hidden; }
.lmg-news-card__image { overflow: hidden; }
.lmg-news-card__image img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.lmg-news-card:hover .lmg-news-card__image img { transform: scale(1.03); }
.lmg-news-card__body { padding: 28px 32px 32px; }
.lmg-news-card__date { color: var(--color-text-muted); display: block; margin-bottom: 10px; }
.lmg-news-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.lmg-news-card h3 a { color: var(--color-text); }
.lmg-news-card h3 a:hover { color: var(--color-gold); }
.lmg-news-card p { color: var(--color-text-muted); font-size: 0.95rem; }

.lmg-pagination { margin-top: 60px; text-align: center; }
.lmg-pagination .nav-links a,
.lmg-pagination .nav-links span {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin: 0 4px;
  transition: border-color 0.2s, color 0.2s;
}
.lmg-pagination .nav-links a:hover,
.lmg-pagination .nav-links .current {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .lmg-news-grid { grid-template-columns: 1fr; }
}

.lmg-post-content,
.lmg-post-content p,
.lmg-post-content li { color: #999999 !important; line-height: 1.8; }
.lmg-post-content h2,
.lmg-post-content h3 { color: #e8e8e8 !important; margin: 32px 0 16px; }
.lmg-post-content img { border-radius: 8px; border: 1px solid rgba(201,168,76,0.2); margin: 24px 0; }
.single .site-main, .single .entry-content, .blog .site-main { background: #0a0a0a !important; }
.single h1.entry-title, .single .entry-content p { color: #e8e8e8 !important; }
