/* Terra Fauna Exotics -- Global Styles (VerbosAI managed)
   Palette: deep navy base + steel blue primary + teal accent + warm gold
   TODO: Update --blue and --gold tokens once logo colors are confirmed */

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

:root {
  --dk:  #080f18;
  --dk2: #0d1c2c;
  --paper:  #f5f8fa;
  --paper2: #e8eef3;
  --paper3: #d8e3ec;
  --blue:    #1e6fa0;
  --blue-dk: #0d4d73;
  --blue-lt: #cce3f0;
  --teal:    #117a7a;
  --teal-lt: #c5e8e8;
  --gold:    #d4aa3a;
  --gold-dk: #8a6a10;
  --gold-lt: #faf0cc;
  --ink:   #1a2a38;
  --muted: #5a7080;
  --bdr:   rgba(26,42,56,0.12);
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono:  'JetBrains Mono', 'Courier New', monospace;
  --radius-sm: 3px; --radius-md: 6px; --radius-lg: 10px;
}

html { font-family: var(--font-sans); font-size: 17px; scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); line-height: 1.65; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--teal); text-decoration: underline; }
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; color: var(--ink); margin-top: 0; }
p { margin-top: 0; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.sec { padding: 4rem 0; }
.sec + .sec { border-top: 0.5px solid var(--bdr); }

/* NAV */
.nav { background: var(--dk); padding: 0 2.5rem; display: flex; align-items: center; height: 68px; gap: 0.75rem; position: sticky; top: 0; z-index: 100; border-bottom: 0.5px solid rgba(30,111,160,0.18); }
.brand { font-family: var(--font-serif); font-size: 26px; font-weight: 700; white-space: nowrap; flex-shrink: 0; line-height: 1.2; text-decoration: none; }
.brand .tf { color: var(--blue); }
.brand .ex { color: var(--teal); }
.brand small { display: block; font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,248,252,0.3); }
.nav-links { display: flex; gap: 1px; flex: 1; flex-wrap: wrap; overflow: hidden; justify-content: center; }
.nl { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.03em; padding: 5px 11px; border-radius: 3px; color: rgba(255,255,255,0.45); text-decoration: none; white-space: nowrap; transition: all 0.14s; }
.nl:hover, .nl.active { color: var(--gold); background: rgba(212,170,58,0.1); text-decoration: none; }
.nav-cta { background: var(--blue); color: #fff; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.05em; padding: 8px 16px; border-radius: 4px; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background 0.14s; }
.nav-cta:hover { background: var(--blue-dk); color: #fff; text-decoration: none; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 11px 22px; border-radius: var(--radius-md); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.05em; cursor: pointer; border: none; transition: all 0.14s; white-space: nowrap; text-decoration: none; }
.btn:hover { text-decoration: none; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dk); color: #fff; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #0a5a5a; color: #fff; }
.btn-ghost { background: transparent; color: rgba(245,248,252,0.75); border: 0.5px solid rgba(245,248,252,0.22); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-light { background: transparent; color: var(--ink); border: 0.5px solid var(--bdr); }
.btn-light:hover { border-color: var(--blue); color: var(--blue); }
.btn-sm { font-size: 12px; padding: 7px 15px; }

/* HERO */
.hero { background: var(--dk2); padding: 4rem 0 3.5rem; position: relative; overflow: hidden; min-height: calc(100svh - 56px); display: flex; flex-direction: column; justify-content: center; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(30,111,160,0.07) 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }
.hero-inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ''; display: block; width: 24px; height: 0.5px; background: var(--gold); }
.hero-h1 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: #eaf1f7; margin-bottom: 1.1rem; }
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: 15px; color: rgba(234,241,247,0.6); max-width: 480px; line-height: 1.75; margin-bottom: 1.75rem; }
.hero-btns { display: flex; gap: 9px; flex-wrap: wrap; }
.stats { display: flex; flex-wrap: wrap; row-gap: 0.75rem; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 0.5px solid rgba(30,111,160,0.22); }
.stat { display: flex; flex-direction: column; gap: 2px; padding-right: 1.75rem; margin-right: 1.75rem; border-right: 0.5px solid rgba(30,111,160,0.2); }
.stat:last-child { border: none; margin: 0; padding: 0; }
.stat-n { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-l { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(234,241,247,0.4); }

/* PAGE HERO */
.ph { background: var(--dk2); border-bottom: 0.5px solid rgba(30,111,160,0.14); padding: 3.5rem 0 3rem; }
.ph-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.ph-ey { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.ph-h { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; color: #eaf1f7; }
.ph-s { font-size: 15px; color: rgba(234,241,247,0.52); max-width: 600px; }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.card { background: var(--paper2); border: 0.5px solid var(--bdr); border-radius: var(--radius-lg); padding: 1.2rem; transition: border-color 0.14s; }
.card:hover { border-color: var(--blue); }
.card-ico { font-size: 20px; margin-bottom: 9px; }
.card-t { font-family: var(--font-serif); font-size: 16px; font-weight: 700; margin-bottom: 5px; color: var(--ink); }
.card-b { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.card-lnk { display: inline-block; margin-top: 9px; font-family: var(--font-mono); font-size: 10px; color: var(--blue); }

/* TAGS */
.tag { display: inline-flex; align-items: center; gap: 3px; font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 7px; border-radius: var(--radius-sm); }
.tag-blue  { background: var(--blue-lt); color: var(--blue-dk); }
.tag-teal  { background: var(--teal-lt); color: var(--teal); }
.tag-gold  { background: var(--gold-lt); color: var(--gold-dk); }
.tag-warm  { background: #f5ead5; color: #7a5010; }

/* NOTICES */
.notice { padding: 10px 14px; border-left: 3px solid var(--blue); border-radius: 0 var(--radius-md) var(--radius-md) 0; background: var(--blue-lt); font-size: 12px; color: var(--ink); margin-bottom: 1.25rem; }
.notice-teal { border-color: var(--teal); background: var(--teal-lt); color: var(--teal); }
.notice-gold { border-color: var(--gold); background: var(--gold-lt); color: var(--gold-dk); }

/* EXPOS */
.expo-list { display: flex; flex-direction: column; gap: 8px; }
.expo-item { background: var(--paper2); border: 0.5px solid var(--bdr); border-radius: 8px; padding: 1rem 1.15rem; display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.expo-item.upcoming { border-color: rgba(17,122,122,0.3); }
.expo-item.past { opacity: 0.75; }
.expo-db { border-radius: var(--radius-md); padding: 8px 12px; text-align: center; min-width: 56px; flex-shrink: 0; }
.expo-db.up { background: var(--teal); }
.expo-db.past { background: var(--paper2); border: 0.5px solid var(--bdr); }
.expo-mo { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; }
.expo-mo.up { color: rgba(255,255,255,0.7); }
.expo-mo.past { color: var(--muted); }
.expo-dy { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; line-height: 1; }
.expo-dy.up { color: #fff; }
.expo-dy.past { color: var(--ink); }
.expo-info { flex: 1; min-width: 160px; }
.expo-name { font-family: var(--font-serif); font-size: 15px; font-weight: 700; margin-bottom: 2px; color: var(--ink); }
.expo-dates { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.04em; margin-bottom: 2px; }
.expo-dates.up { color: var(--teal); }
.expo-dates.past { color: var(--muted); }
.expo-venue { font-size: 11px; color: var(--muted); }
.expo-badge { font-family: var(--font-mono); font-size: 7.5px; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(17,122,122,0.1); color: var(--teal); border: 0.5px solid rgba(17,122,122,0.22); padding: 1px 7px; border-radius: var(--radius-sm); display: inline-block; margin-bottom: 4px; }
.yr-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 1.5rem 0 9px; padding-bottom: 5px; border-bottom: 0.5px solid var(--bdr); display: flex; align-items: center; gap: 8px; }

/* FORM */
.form-label { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.form-input, .form-textarea { width: 100%; background: var(--paper); border: 0.5px solid var(--bdr); border-radius: var(--radius-md); padding: 8px 11px; font-family: var(--font-sans); font-size: 13px; color: var(--ink); transition: border-color 0.14s; margin-bottom: 10px; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--blue); }
.form-textarea { min-height: 100px; resize: vertical; }

/* PAY CHIPS */
.pay-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-chip { font-family: var(--font-mono); font-size: 9px; background: var(--paper); border: 0.5px solid var(--bdr); padding: 3px 9px; border-radius: var(--radius-sm); color: var(--muted); }

/* FOOTER */
footer { background: var(--dk); border-top: 0.5px solid rgba(30,111,160,0.14); padding: 2.25rem 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { font-family: var(--font-serif); font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.footer-brand .tf { color: var(--blue); }
.footer-brand .ex { color: var(--teal); }
.footer-tag { font-size: 12px; color: rgba(234,241,247,0.38); line-height: 1.6; }
.footer-soc { display: flex; gap: 5px; margin-top: 10px; flex-wrap: wrap; }
.fsc { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.07em; padding: 3px 9px; border: 0.5px solid rgba(30,111,160,0.22); border-radius: 3px; color: rgba(234,241,247,0.42); transition: all 0.14s; text-decoration: none; }
.fsc:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }
.footer-cols { display: flex; gap: 2.25rem; flex-wrap: wrap; }
.fcl { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(234,241,247,0.25); margin-bottom: 7px; }
.fls { display: flex; flex-direction: column; gap: 5px; }
.fl2 { font-size: 12px; color: rgba(234,241,247,0.45); transition: color 0.14s; text-decoration: none; }
.fl2:hover { color: var(--gold); text-decoration: none; }
.footer-bot { max-width: 1200px; margin: 1.75rem auto 0; padding: 1rem 2.5rem 0; border-top: 0.5px solid rgba(30,111,160,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.fcp { font-size: 11px; color: rgba(234,241,247,0.22); }
.fva { font-family: var(--font-mono); font-size: 10px; color: rgba(234,241,247,0.22); }
.fva-link { color: var(--gold); text-decoration: none; }
.fva-link:hover { color: var(--blue); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.cm-row { padding-bottom: 12px; border-bottom: 0.5px solid var(--bdr); margin-bottom: 12px; }
.cm-row:last-child { border: none; margin: 0; }
.cm-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.cm-val { font-size: 14px; color: var(--blue); }
.cm-val:hover { color: var(--teal); text-decoration: underline; }

/* POLICY */
.policy-block { background: var(--paper2); border: 0.5px solid var(--bdr); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem; margin-bottom: 1rem; }
.policy-block h3 { font-family: var(--font-serif); font-size: 16px; font-weight: 700; margin-bottom: 0.5rem; color: var(--ink); }
.policy-block p, .policy-block li { font-size: 13px; color: var(--muted); line-height: 1.7; }
.policy-block ul { padding-left: 1.2rem; margin: 0; }
.policy-block li { margin-bottom: 4px; }

@media (max-width: 640px) {
  .hero { padding: 2.5rem 0 2rem; min-height: auto; }
  .card-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { gap: 0.75rem; }
  .footer-cols { gap: 1.5rem; }
  .nav-links { display: none; }
}
