/*
Theme Name: Bonsai NorCal
Theme URI: https://bonsainorcal.com
Author: Bonsai NorCal
Author URI: https://bonsainorcal.com
Description: A handcrafted WordPress theme for Bonsai NorCal — the Bay Area bonsai community hub. Features expanded pages for Blog, Species Guide, Gallery, Seasonal Care, About, Local Clubs, Workshops, and Contact.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bonsainorcal
Tags: bonsai, nature, community, blog, gallery, minimal, organic
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-ink:        #1a1a14;
  --color-bark:       #3d2b1f;
  --color-moss:       #4a6741;
  --color-moss-light: #6b9462;
  --color-earth:      #8c6a4f;
  --color-sand:       #f5f0e8;
  --color-cream:      #faf7f2;
  --color-white:      #ffffff;
  --color-accent:     #c4702a;
  --color-accent2:    #2a6b4a;
  --color-muted:      #7a7165;
  --color-border:     #ddd8cc;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --font-mono:    'Courier New', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(26,26,20,0.08);
  --shadow-md: 0 8px 32px rgba(26,26,20,0.12);
  --shadow-lg: 0 20px 60px rgba(26,26,20,0.18);

  --max-width: 1240px;
  --content-width: 760px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::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(--color-ink);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-moss); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-accent); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-bark);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

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

ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { margin-bottom: .4rem; }

strong { font-weight: 700; color: var(--color-bark); }
em { font-style: italic; color: var(--color-bark); }

blockquote {
  border-left: 3px solid var(--color-moss);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--color-sand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-muted);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.text-small { font-size: .875rem; }

.badge {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge--green  { background: #e6f2e3; color: var(--color-moss); }
.badge--orange { background: #faeee0; color: var(--color-accent); }
.badge--brown  { background: #f0e8e0; color: var(--color-earth); }

.tag {
  display: inline-block;
  padding: .15rem .6rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: .75rem;
  color: var(--color-muted);
  margin: .15rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-moss);
  color: var(--color-white);
  border-color: var(--color-moss);
}
.btn--primary:hover {
  background: var(--color-accent2);
  border-color: var(--color-accent2);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-moss);
  border-color: var(--color-moss);
}
.btn--outline:hover {
  background: var(--color-moss);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-bark);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { color: var(--color-moss); }

/* ============================================================
   SITE HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.site-logo__icon {
  width: 36px;
  height: 36px;
  background: var(--color-moss);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.site-logo__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-bark);
  line-height: 1.1;
}
.site-logo__sub {
  display: block;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-primary { display: flex; align-items: center; gap: .25rem; }
.nav-primary a {
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-ink);
  transition: all .2s;
}
.nav-primary a:hover,
.nav-primary a.current { background: var(--color-sand); color: var(--color-moss); }

.nav-cta {
  background: var(--color-moss);
  color: var(--color-white) !important;
  padding: .4rem 1rem !important;
  border-radius: var(--radius-sm);
}
.nav-cta:hover {
  background: var(--color-accent2) !important;
  color: var(--color-white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--color-ink);
}

@media (max-width: 820px) {
  .nav-primary { display: none; }
  .nav-toggle { display: block; }
  .nav-primary.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.5rem;
    gap: .1rem;
  }
  .nav-primary.open a { width: 100%; padding: .6rem .75rem; }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bark);
  color: var(--color-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 5rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-moss-light);
  margin-bottom: 1rem;
}

.hero h1 { color: var(--color-white); }
.hero h1 em { color: var(--color-moss-light); font-style: italic; }

.hero__lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 1.25rem 0 2rem;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero--small .hero__content { padding: 4rem 0 3rem; }

/* ============================================================
   PAGE BANNER (internal pages)
   ============================================================ */
.page-banner {
  background: var(--color-sand);
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 0 2.5rem;
}
.page-banner__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: .5rem;
}
.page-banner h1 { margin-bottom: .75rem; }
.page-banner__lead { font-size: 1.1rem; color: var(--color-muted); max-width: 640px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.card__image { aspect-ratio: 16/10; overflow: hidden; }
.card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__image img { transform: scale(1.04); }

.card__body { padding: 1.5rem; }
.card__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .8rem;
  color: var(--color-muted);
}
.card h3 { margin-bottom: .6rem; }
.card h3 a { color: var(--color-bark); text-decoration: none; }
.card h3 a:hover { color: var(--color-moss); }
.card__excerpt { color: var(--color-muted); font-size: .9rem; margin-bottom: 1rem; }
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: .8rem;
  color: var(--color-muted);
}

/* ============================================================
   SPECIES CARD
   ============================================================ */
.species-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.species-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.species-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.species-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.species-card:hover .species-card__image img { transform: scale(1.05); }

.species-card__body { padding: 1.25rem; }
.species-card__common { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--color-bark); margin-bottom: .2rem; }
.species-card__latin { font-style: italic; font-size: .8rem; color: var(--color-muted); margin-bottom: .75rem; }
.species-card__desc { font-size: .875rem; color: var(--color-ink); margin-bottom: .75rem; line-height: 1.6; }
.species-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: .75rem; border-top: 1px solid var(--color-border); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,20,.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__caption { color: var(--color-white); font-size: .85rem; font-weight: 500; }

.gallery-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: 1/2; }

/* ============================================================
   SEASONAL TABS
   ============================================================ */
.season-tabs { display: flex; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.season-tab {
  padding: .5rem 1.25rem;
  border-radius: 100px;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.season-tab.active,
.season-tab:hover {
  border-color: var(--color-moss);
  background: var(--color-moss);
  color: var(--color-white);
}

.season-panel { display: none; }
.season-panel.active { display: block; }

.care-checklist { list-style: none; padding: 0; }
.care-checklist li {
  display: flex;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: .95rem;
}
.care-checklist li:last-child { border-bottom: none; }
.care-checklist li::before {
  content: '✓';
  color: var(--color-moss);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   SIDEBAR LAYOUT
   ============================================================ */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .layout-sidebar { grid-template-columns: 1fr; } }

.sidebar-widget {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--color-border);
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--color-bark);
  color: var(--color-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '🌿';
  position: absolute;
  font-size: 12rem;
  opacity: .06;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.newsletter-section h2 { color: var(--color-white); margin-bottom: .75rem; }
.newsletter-section h2 em { color: var(--color-moss-light); }
.newsletter-section p { color: rgba(255,255,255,.7); max-width: 500px; margin-bottom: 2rem; }

.newsletter-form { display: flex; gap: .75rem; max-width: 480px; }
.newsletter-form input[type="email"] {
  flex: 1;
  padding: .75rem 1.25rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: .95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { outline: none; border-color: var(--color-moss-light); }

.newsletter-form .btn {
  background: var(--color-moss);
  color: var(--color-white);
  border-color: var(--color-moss);
  white-space: nowrap;
}
.newsletter-form .btn:hover { background: var(--color-moss-light); }

@media (max-width: 500px) { .newsletter-form { flex-direction: column; } }

/* ============================================================
   TEAM / ABOUT
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; } }

.team-card { text-align: center; }
.team-card__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--color-border);
}
.team-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--color-bark); }
.team-card__role { font-size: .8rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .5rem; }
.team-card__bio { font-size: .875rem; color: var(--color-muted); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--color-sand);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0;
}
.stats-bar__grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-moss);
  line-height: 1;
}
.stat__label { font-size: .8rem; color: var(--color-muted); letter-spacing: .06em; text-transform: uppercase; margin-top: .25rem; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--color-white);
  color: var(--color-ink);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-moss);
  box-shadow: 0 0 0 3px rgba(74,103,65,.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-moss); }
.breadcrumb__sep { opacity: .4; }

/* ============================================================
   WORKSHOP CARD
   ============================================================ */
.workshop-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
  transition: box-shadow .2s;
}
.workshop-card:hover { box-shadow: var(--shadow-md); }
.workshop-card__date {
  background: var(--color-moss);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  text-align: center;
}
.workshop-card__month { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.workshop-card__day { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; }
.workshop-card__year { font-size: .75rem; opacity: .7; }
.workshop-card__body { padding: 1.5rem; }
.workshop-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--color-bark); margin-bottom: .4rem; }
.workshop-card__meta { font-size: .8rem; color: var(--color-muted); margin-bottom: .75rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.workshop-card__meta span::before { margin-right: .3rem; }
.workshop-card__desc { font-size: .9rem; color: var(--color-ink); margin-bottom: 1rem; }
@media (max-width: 600px) {
  .workshop-card { grid-template-columns: 1fr; }
  .workshop-card__date { flex-direction: row; gap: 1rem; padding: 1rem 1.5rem; }
  .workshop-card__day { font-size: 2rem; }
}

/* ============================================================
   CLUB CARD
   ============================================================ */
.club-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: box-shadow .2s;
}
.club-card:hover { box-shadow: var(--shadow-md); }
.club-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.club-card__name { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-bark); font-weight: 700; margin-bottom: .3rem; }
.club-card__location { font-size: .8rem; color: var(--color-muted); margin-bottom: .75rem; }
.club-card__desc { font-size: .875rem; color: var(--color-ink); margin-bottom: 1rem; }
.club-card__links { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ============================================================
   FEATURED IMAGE SECTION
   ============================================================ */
.featured-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.featured-photo img { width: 100%; height: 480px; object-fit: cover; }
.featured-photo__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,20,.8) 0%, transparent);
  padding: 2rem 1.5rem 1.5rem;
  color: var(--color-white);
  font-size: .875rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .site-footer__grid { grid-template-columns: 1fr; } }

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}
.footer-brand__icon {
  width: 32px; height: 32px;
  background: var(--color-moss);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}
.footer-brand p { font-size: .875rem; line-height: 1.6; margin-bottom: .75rem; }

.footer-col h4 {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: rgba(255,255,255,.6); font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--color-moss-light); }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}
.site-footer__bottom a { color: rgba(255,255,255,.5); }
.site-footer__bottom a:hover { color: var(--color-moss-light); }

/* ============================================================
   WORDPRESS CLASSES
   ============================================================ */
.wp-block-image { margin: 2rem 0; }
.aligncenter { text-align: center; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.clearfix::after { content: ''; display: table; clear: both; }

.entry-content { max-width: var(--content-width); margin: 0 auto; }
.entry-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.entry-content h3 { margin-top: 2rem; margin-bottom: .75rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content img { border-radius: var(--radius-md); margin: 1.5rem 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero__content { padding: 5rem 0 3.5rem; }
}
