@charset "utf-8";
/* ─── SITE FOOTER ────────────────────────────────────────────────
   Depends on dragonlings.css for all design tokens (:root vars,
   fonts, keyframes). All other shared layout classes (dl-wrap,
   dl-divider, dl-stat) come from dragonlings.css.
   This file styles only the footer component itself.
──────────────────────────────────────────────────────────────── */

/* ─── WRAPPER ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  font-family: var(--font-body);
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
}

/* ─── UPPER FOOTER — logo strip + tagline ───────────────────────── */
.site-footer__upper {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.site-footer__logo {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--green);
  text-shadow: 0 0 20px rgba(34,255,110,0.35);
  text-decoration: none;
  line-height: 1;
}

.site-footer__tagline {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── COLUMN GRID ───────────────────────────────────────────────── */
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}

@media (max-width: 820px) {
  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .site-footer__cols { grid-template-columns: 1fr; }
}

/* ─── SINGLE COLUMN ─────────────────────────────────────────────── */
.site-footer__col-heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-dim);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__links li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

/* Small ▸ accent before each link */
.site-footer__links li::before {
  content: '▸';
  font-size: 0.65rem;
  color: var(--green-muted);
  flex-shrink: 0;
  transition: color var(--transition);
}

.site-footer__links li:hover::before {
  color: var(--green-dim);
}

.site-footer__links a,
.site-footer__links span {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.site-footer__links a:hover {
  color: var(--green);
  text-decoration: none;
}

/* Plain text items (non-link) */
.site-footer__links span {
  color: var(--text-muted);
  cursor: default;
}

/* Email link — slightly brighter */
.site-footer__links a[href^="mailto:"] {
  color: var(--green-dim);
}

.site-footer__links a[href^="mailto:"]:hover {
  color: var(--green);
}

/* ─── BUSINESS INFO COLUMN ──────────────────────────────────────── */
.site-footer__info-block {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.site-footer__info-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-footer__info-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-footer__info-value {
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.site-footer__info-value a {
  color: var(--green-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer__info-value a:hover {
  color: var(--green);
}

/* ─── LOWER FOOTER — legal bar ──────────────────────────────────── */
.site-footer__lower {
  padding: 1.5rem 0 2rem;
}

.site-footer__lower-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 2rem;
}

.site-footer__copy {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  list-style: none;
}

.site-footer__legal-links a {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer__legal-links a:hover {
  color: var(--green-dim);
}

/* Divider dot between legal links */
.site-footer__legal-links li + li::before {
  content: '·';
  color: var(--text-muted);
  margin-right: 1.2rem;
}
