﻿/*
Theme Name: Cololo Santas
Theme URI: https://cololosantas.com
Author: Cololo Santas
Description: Custom ranch theme for Cololo Santas - a Santa Gertrudis cattle ranch in the Kgalagadi District, Botswana. Vertical logo sidebar on desktop, mobile top bar, photo-led modern design.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cololo-santas
*/
/* ============================================================
   Čololo Santas — Kgalagadi, Botswana
   Brand: deep brown #4b2413 · tan #a1715a · cream #f7f1e9
   ============================================================ */

:root {
  --brown-950: #2b1409;
  --brown-900: #3a1c0e;
  --brown-800: #4b2413;
  --brown-700: #5d2f1a;
  --tan-500: #a1715a;
  --tan-400: #b98b72;
  --tan-300: #d3b09c;
  --cream: #f7f1e9;
  --sand: #ece1d2;
  --paper: #fffdf9;
  --ink: #241209;
  --muted: #7d6a5d;
  --gold: #d9a441;
  --radius: 18px;
  --radius-lg: 28px;
  --side-w: 300px;
  --shadow: 0 18px 45px -18px rgba(43, 20, 9, .35);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--brown-900);
  letter-spacing: -.01em;
}

.display-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.display-lg { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.display-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

.accent-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--tan-500);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--tan-500);
  margin-bottom: 1.1rem;
}

.kicker::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--tan-500);
}

.lede {
  font-size: 1.13rem;
  color: var(--muted);
  max-width: 58ch;
}

/* ---------- Sidebar (vertical logo block) ---------- */

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--side-w);
  background: var(--paper);
  border-right: 1px solid rgba(75, 36, 19, .1);
  display: flex;
  flex-direction: column;
  padding: 2.2rem 1.9rem;
  z-index: 60;
}

.sidebar .brand {
  display: block;
  margin-bottom: 1.6rem;
}

.sidebar .brand img {
  width: 100%;
  max-width: 215px;
  margin-inline: auto;
}

.side-nav { flex: 1; }

.side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem .35rem;
  font-weight: 700;
  font-size: .98rem;
  color: var(--brown-800);
  border-bottom: 1px solid rgba(75, 36, 19, .08);
  transition: padding .25s ease, color .25s ease;
}

.side-nav a::after {
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  transition: all .25s ease;
  color: var(--tan-500);
}

.side-nav a:hover, .side-nav a.active {
  color: var(--tan-500);
  padding-left: .8rem;
}

.side-nav a:hover::after, .side-nav a.active::after {
  opacity: 1;
  transform: none;
}

.side-cta {
  display: block;
  text-align: center;
  background: var(--brown-800);
  color: var(--cream);
  font-weight: 700;
  padding: .95rem 1rem;
  border-radius: 999px;
  transition: background .25s ease, transform .25s ease;
}

.side-cta:hover { background: var(--tan-500); transform: translateY(-2px); }

.side-meta {
  margin-top: 1.3rem;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
}

/* ---------- Mobile top bar ---------- */

.mobile-bar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(75, 36, 19, .12);
  padding: .55rem 1.1rem;
  align-items: center;
  justify-content: space-between;
}

.mobile-bar img { height: 62px; width: auto; }

.burger {
  width: 46px; height: 46px;
  border: 1px solid rgba(75, 36, 19, .25);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 0;
}

.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--brown-800);
  margin: 2.5px 0;
  transition: all .3s ease;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 65;
  background: var(--brown-900);
  padding: 8.5rem 2rem 2.5rem;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.mobile-menu.show { opacity: 1; pointer-events: auto; }

.mobile-menu a {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.9rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(247, 241, 233, .12);
  transition: color .2s ease, padding-left .2s ease;
}

.mobile-menu a:hover, .mobile-menu a.active { color: var(--tan-300); padding-left: .6rem; }

.mobile-menu .menu-meta {
  margin-top: auto;
  color: var(--tan-300);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* ---------- Layout shell ---------- */

main.page { margin-left: var(--side-w); }

section { padding: 5.5rem clamp(1.2rem, 5vw, 4.5rem); }

.tight { max-width: 1180px; margin-inline: auto; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(43, 20, 9, .15) 0%, rgba(43, 20, 9, .05) 40%, rgba(43, 20, 9, .82) 100%);
}

.hero-inner {
  width: 100%;
  padding: clamp(6rem, 12vh, 9rem) clamp(1.2rem, 5vw, 4.5rem) clamp(2.4rem, 6vh, 4rem);
  color: var(--cream);
}

.hero-inner .kicker { color: var(--tan-300); }
.hero-inner .kicker::before { background: var(--tan-300); }

.hero-inner h1 { color: var(--cream); max-width: 16ch; }

.hero-inner .lede { color: rgba(247, 241, 233, .85); margin-top: 1.2rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

/* small page hero (inner pages) */

.hero.hero-sm { min-height: 62vh; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .96rem;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn:hover { transform: translateY(-3px); }

.btn-solid { background: var(--gold); color: var(--brown-950); }
.btn-solid:hover { background: var(--cream); }

.btn-dark { background: var(--brown-800); color: var(--cream); }
.btn-dark:hover { background: var(--tan-500); }

.btn-ghost {
  border-color: rgba(247, 241, 233, .55);
  color: var(--cream);
}
.btn-ghost:hover { background: var(--cream); color: var(--brown-900); }

.btn-outline {
  border-color: var(--brown-800);
  color: var(--brown-800);
}
.btn-outline:hover { background: var(--brown-800); color: var(--cream); }

/* ---------- Stat strip ---------- */

.stat-strip {
  background: var(--brown-900);
  color: var(--cream);
  padding: 2.6rem clamp(1.2rem, 5vw, 4.5rem);
}

.stat-grid {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
}

.stat .label {
  margin-top: .5rem;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tan-300);
}

/* ---------- Split rows ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
}

.split.flip > .split-media { order: 2; }

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-media.wide img { aspect-ratio: 4 / 3.2; }

.split-media .tag {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  background: rgba(255, 253, 249, .92);
  color: var(--brown-800);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding: .55rem .95rem;
  border-radius: 999px;
}

.split-media.icon-panel {
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: radial-gradient(120% 120% at 20% 0%, var(--brown-700) 0%, var(--brown-900) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}

.split-media.icon-panel svg {
  width: 110px; height: 110px;
  fill: var(--tan-300);
}

.split-copy h2 { margin-bottom: 1.1rem; }
.split-copy p + p { margin-top: 1rem; }
.split-copy p { color: var(--muted); }
.split-copy .btn { margin-top: 1.8rem; }

.checklist { margin-top: 1.4rem; }

.checklist li {
  position: relative;
  padding: .45rem 0 .45rem 2rem;
  font-weight: 600;
  color: var(--brown-800);
}

.checklist li::before {
  content: "✦";
  position: absolute;
  left: .2rem;
  color: var(--gold);
}

/* ---------- Livestock cards ---------- */

.stock-grid {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}

.stock-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: var(--brown-800);
  transition: transform .3s ease;
}

.stock-card:hover { transform: translateY(-6px); }

.stock-card.feature { grid-column: span 4; grid-row: span 2; min-height: 480px; }
.stock-card.tall { grid-column: span 2; grid-row: span 2; min-height: 480px; }
.stock-card.small { grid-column: span 2; }

.stock-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.stock-card:hover img { transform: scale(1.05); }

.stock-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(43, 20, 9, 0) 35%, rgba(43, 20, 9, .85) 100%);
}

.stock-card .card-body {
  padding: 1.5rem;
  color: var(--cream);
}

.stock-card h3 { color: var(--cream); font-size: 1.45rem; }

.stock-card .card-body p {
  color: rgba(247, 241, 233, .8);
  font-size: .92rem;
  margin-top: .35rem;
}

.stock-card .count {
  display: inline-block;
  background: var(--gold);
  color: var(--brown-950);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .3rem .8rem;
  margin-bottom: .7rem;
}

/* icon tiles for sheep / chickens / horses */

.stock-card.icon-tile {
  background:
    radial-gradient(120% 120% at 20% 0%, var(--brown-700) 0%, var(--brown-900) 75%);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stock-card.icon-tile::after { display: none; }

.stock-card.icon-tile .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}

.stock-card.icon-tile svg {
  width: 84px; height: 84px;
  margin-bottom: .8rem;
  fill: var(--tan-300);
  opacity: .95;
}

/* ---------- Marquee gallery ---------- */

.marquee-wrap {
  padding: 4.5rem 0;
  overflow: hidden;
  background: var(--sand);
}

.marquee-head {
  text-align: center;
  padding: 0 1.2rem 2.6rem;
}

.marquee {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  animation: scroll 48s linear infinite;
}

.marquee:hover { animation-play-state: paused; }

.marquee img {
  height: 250px;
  width: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  color: var(--cream);
  padding: 6.5rem clamp(1.2rem, 5vw, 4.5rem);
}

.cta-band img.band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(43, 20, 9, .72);
}

.cta-band h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-band p { color: rgba(247, 241, 233, .85); max-width: 52ch; margin: 0 auto 2rem; }

/* ---------- Values grid ---------- */

.value-grid {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.value-card {
  background: var(--paper);
  border: 1px solid rgba(75, 36, 19, .09);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  transition: transform .3s ease, box-shadow .3s ease;
}

.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.value-card .glyph {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--brown-800);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.value-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.value-card p { color: var(--muted); font-size: .95rem; }

/* ---------- Activity rows ---------- */

.activity-row { border-top: 1px solid rgba(75, 36, 19, .12); }
.activity-row:first-of-type { border-top: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--tan-500);
  margin-bottom: .6rem;
  display: block;
}

/* ---------- Community gallery grid ---------- */

.people-grid {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.people-grid figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.people-grid figure.tall-2 { grid-row: span 2; }

.people-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.people-grid figure:hover img { transform: scale(1.05); }

.people-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.2rem .95rem;
  background: linear-gradient(180deg, transparent, rgba(43, 20, 9, .8));
  color: var(--cream);
  font-size: .86rem;
  font-weight: 600;
}

/* ---------- Quote ---------- */

.quote {
  background: var(--brown-900);
  color: var(--cream);
  text-align: center;
}

.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic;
  max-width: 30ch;
  margin: 0 auto 1.4rem;
  line-height: 1.35;
}

.quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--tan-300);
}

/* ---------- Contact ---------- */

.contact-grid {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.contact-card {
  background: var(--paper);
  border: 1px solid rgba(75, 36, 19, .09);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
}

.contact-card .glyph {
  width: 54px; height: 54px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--sand);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.contact-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.contact-card p { color: var(--muted); font-size: .95rem; }
.contact-card a { color: var(--tan-500); font-weight: 700; }
.contact-card a:hover { text-decoration: underline; }

.contact-shell {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.2rem;
}

.form-panel {
  background: var(--paper);
  border: 1px solid rgba(75, 36, 19, .09);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
}

.form-panel h2 { margin-bottom: .6rem; }
.form-panel > p { color: var(--muted); margin-bottom: 1.8rem; }

.field { margin-bottom: 1.1rem; }

.field label {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown-800);
  margin-bottom: .4rem;
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: .9rem 1.1rem;
  border: 1.5px solid rgba(75, 36, 19, .18);
  border-radius: 14px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s ease;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--tan-500);
}

.map-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(75, 36, 19, .09);
  display: flex;
  flex-direction: column;
}

.map-panel iframe {
  border: 0;
  width: 100%;
  flex: 1;
  min-height: 340px;
}

.map-note {
  background: var(--brown-900);
  color: var(--tan-300);
  font-size: .82rem;
  letter-spacing: .08em;
  padding: .9rem 1.3rem;
}

/* ---------- Footer ---------- */

footer {
  background: var(--brown-950);
  color: rgba(247, 241, 233, .75);
  padding: 4rem clamp(1.2rem, 5vw, 4.5rem) 2rem;
  margin-left: var(--side-w);
}

.foot-grid {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247, 241, 233, .12);
}

.foot-brand img { width: 92px; margin-bottom: 1.1rem; }

.foot-brand .foot-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  display: block;
  margin-bottom: .6rem;
}

.foot-brand p { font-size: .95rem; max-width: 34ch; }

footer h4 {
  color: var(--cream);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.foot-links a {
  display: block;
  padding: .3rem 0;
  transition: color .2s ease, padding-left .2s ease;
}

.foot-links a:hover { color: var(--gold); padding-left: .4rem; }

.foot-contact li { padding: .3rem 0; font-size: .95rem; }
.foot-contact a:hover { color: var(--gold); }

.foot-bottom {
  max-width: 1180px;
  margin-inline: auto;
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(247, 241, 233, .5);
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .sidebar { display: none; }
  .mobile-bar { display: flex; }
  .mobile-menu { display: flex; }
  main.page { margin-left: 0; padding-top: 78px; }
  footer { margin-left: 0; }

  .hero { min-height: 78vh; }
  .hero.hero-sm { min-height: 52vh; }

  .stat-grid { grid-template-columns: repeat(2, 1fr); }

  .split { grid-template-columns: 1fr; }
  .split.flip > .split-media { order: 0; }
  .split-media img { aspect-ratio: 4 / 3; }
  .split-media.icon-panel { aspect-ratio: 4 / 3; }

  .stock-grid { grid-template-columns: repeat(2, 1fr); }
  .stock-card.feature { grid-column: span 2; grid-row: auto; min-height: 400px; }
  .stock-card.tall { grid-column: span 1; grid-row: auto; min-height: 340px; }
  .stock-card.small { grid-column: span 1; }

  .value-grid { grid-template-columns: repeat(2, 1fr); }

  .people-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-shell { grid-template-columns: 1fr; }

  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 3.6rem 1.15rem; }

  .marquee img { height: 170px; }

  .stock-grid { grid-template-columns: 1fr; }
  .stock-card.feature, .stock-card.tall, .stock-card.small { grid-column: span 1; min-height: 320px; }

  .value-grid { grid-template-columns: 1fr; }

  .people-grid { grid-template-columns: 1fr; }
  .people-grid figure.tall-2 { grid-row: auto; }

  .stat-grid { gap: 1.4rem; }

  .foot-grid { grid-template-columns: 1fr; }

  .form-panel { padding: 1.6rem 1.2rem; }
}


/* ---------- WordPress menu-markup compatibility ---------- */

.side-nav ul, .mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu ul { display: flex; flex-direction: column; }
.side-nav .current-menu-item > a,
.side-nav .current_page_item > a { color: var(--tan-500); padding-left: .8rem; }
.side-nav .current-menu-item > a::after,
.side-nav .current_page_item > a::after { opacity: 1; transform: none; }
.mobile-menu .current-menu-item > a,
.mobile-menu .current_page_item > a { color: var(--tan-300); }

/* WordPress core alignment/caption classes */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--muted); text-align: center; padding: .4rem 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.foot-links ul { list-style: none; margin: 0; padding: 0; }
.foot-links li a { display: block; padding: .3rem 0; }
