/* =========================================================================
   WhiteGlove Property Services — Design System
   Colors, typography, spacing, components. Mobile-first.
   ========================================================================= */

:root {
  /* Brand colors */
  --wg-black:          #111111;
  --wg-near-black:     #1A1A1A;
  --wg-gold:           #C8A84B;
  --wg-gold-dark:      #A88A30;
  --wg-gold-text:      #3A2800;
  --wg-muted-gold:     #A09080;

  --wg-bg:             #F0EDE8;
  --wg-card:           #F7F5F2;
  --wg-border:         #DEDAD2;

  --wg-text:           #2A2420;
  --wg-muted:          #7A7068;
  --wg-white:          #FFFFFF;

  /* Type */
  --wg-font-heading:   "Playfair Display", Georgia, "Times New Roman", serif;
  --wg-font-body:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wg-fs-xs:   0.75rem;
  --wg-fs-sm:   0.875rem;
  --wg-fs-base: 1rem;
  --wg-fs-lg:   1.125rem;
  --wg-fs-xl:   1.375rem;
  --wg-fs-2xl:  1.75rem;
  --wg-fs-3xl:  2.25rem;
  --wg-fs-4xl:  3rem;
  --wg-fs-5xl:  4rem;

  /* Spacing */
  --wg-space-1: 0.25rem;
  --wg-space-2: 0.5rem;
  --wg-space-3: 0.75rem;
  --wg-space-4: 1rem;
  --wg-space-5: 1.5rem;
  --wg-space-6: 2rem;
  --wg-space-7: 3rem;
  --wg-space-8: 4rem;
  --wg-space-9: 6rem;

  --wg-radius-sm: 6px;
  --wg-radius:    10px;
  --wg-radius-lg: 16px;

  --wg-shadow-sm: 0 1px 2px rgba(17,17,17,0.05);
  --wg-shadow:    0 4px 12px rgba(17,17,17,0.08);
  --wg-shadow-lg: 0 12px 32px rgba(17,17,17,0.14);

  --wg-container: 1200px;
  --wg-nav-h: 80px;
}

/* =========================================================================
   Base reset / typography
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--wg-font-body);
  font-weight: 400;
  color: var(--wg-text);
  background: var(--wg-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--wg-gold-dark); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--wg-gold); }
ul, ol { margin: 0 0 1em 1.2em; padding: 0; }
p { margin: 0 0 1em; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wg-font-heading);
  font-weight: 500;
  color: var(--wg-text);
  margin: 0 0 0.5em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.25rem, 5vw, var(--wg-fs-5xl)); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.6vw, var(--wg-fs-3xl)); letter-spacing: -0.005em; }
h3 { font-size: var(--wg-fs-2xl); }
h4 { font-size: var(--wg-fs-xl); }

.gold { color: var(--wg-gold); }
.muted { color: var(--wg-muted); }
.muted-gold { color: var(--wg-muted-gold); }
.text-center { text-align: center; }

/* =========================================================================
   Layout primitives
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--wg-container);
  margin: 0 auto;
  padding: 0 var(--wg-space-5);
}

.section { padding: var(--wg-space-8) 0; }
.section--sm { padding: var(--wg-space-7) 0; }
.section--lg { padding: var(--wg-space-9) 0; }

.section-title {
  text-align: center;
  margin-bottom: var(--wg-space-3);
}
.section-title + .section-sub {
  text-align: center;
  color: var(--wg-muted);
  max-width: 640px;
  margin: 0 auto var(--wg-space-7);
}

/* Alternating body bands */
.band { padding: var(--wg-space-8) 0; }
.band--greige { background: var(--wg-bg); }
.band--greige-card { background: var(--wg-card); }
.band--black {
  background: var(--wg-black);
  color: var(--wg-white);
}
.band--black h1,
.band--black h2,
.band--black h3,
.band--black h4 { color: var(--wg-white); }
.band--near-black {
  background: var(--wg-near-black);
  color: var(--wg-white);
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.85em 1.6em;
  font-family: var(--wg-font-body);
  font-weight: 500;
  font-size: var(--wg-fs-base);
  line-height: 1;
  border-radius: var(--wg-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--wg-gold); outline-offset: 3px; }
.btn-sm { padding: 0.6em 1.1em; font-size: var(--wg-fs-sm); }
.btn-lg { padding: 1em 2em; font-size: var(--wg-fs-lg); }

.btn-gold {
  background: var(--wg-gold);
  color: var(--wg-gold-text);
  border-color: var(--wg-gold);
}
.btn-gold:hover {
  background: var(--wg-gold-dark);
  border-color: var(--wg-gold-dark);
  color: var(--wg-gold-text);
  transform: translateY(-1px);
  box-shadow: var(--wg-shadow);
}

.btn-ghost-gold {
  background: transparent;
  color: var(--wg-gold);
  border-color: var(--wg-gold);
}
.btn-ghost-gold:hover {
  background: var(--wg-gold);
  color: var(--wg-gold-text);
}

.btn-dark {
  background: var(--wg-black);
  color: var(--wg-white);
  border-color: var(--wg-black);
}
.btn-dark:hover { background: #000; border-color: #000; }

/* =========================================================================
   Header / Navigation
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--wg-black);
  color: var(--wg-white);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--wg-nav-h);
  gap: var(--wg-space-5);
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--wg-space-3);
  color: var(--wg-white);
  flex-shrink: 0;
}
.site-header__brand:hover { color: var(--wg-white); }
.site-header__logo {
  height: 46px;
  width: auto;
}
.site-header__wordmark {
  font-family: var(--wg-font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.site-header__wordmark small {
  font-family: var(--wg-font-body);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  color: var(--wg-muted-gold);
  margin-top: 4px;
  font-weight: 500;
}

.site-nav { display: flex; align-items: center; gap: var(--wg-space-6); }
.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--wg-space-6);
}
.site-nav__list a {
  color: var(--wg-white);
  font-size: var(--wg-fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4em 0;
  border-bottom: 2px solid transparent;
}
.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
  color: var(--wg-gold);
  border-bottom-color: var(--wg-gold);
}

.has-dropdown { position: relative; }
.site-nav__dropdown {
  list-style: none;
  margin: 0;
  padding: var(--wg-space-3) 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--wg-near-black);
  min-width: 240px;
  border: 1px solid rgba(200,168,75,.22);
  border-radius: var(--wg-radius-sm);
  box-shadow: var(--wg-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .18s ease;
  z-index: 10;
}
.site-nav__dropdown a {
  display: block;
  padding: var(--wg-space-3) var(--wg-space-5);
  text-transform: none;
  letter-spacing: 0;
  border-bottom: none;
  font-size: var(--wg-fs-base);
}
.site-nav__dropdown a:hover { background: rgba(200,168,75,.12); color: var(--wg-gold); }
.has-dropdown:hover .site-nav__dropdown,
.has-dropdown:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
}
.site-header__toggle span {
  display: block;
  height: 2px;
  background: var(--wg-white);
  margin: 5px 0;
  transition: transform .18s ease;
}

@media (max-width: 980px) {
  .site-header__toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--wg-black);
    flex-direction: column;
    align-items: stretch;
    padding: var(--wg-space-5);
    gap: var(--wg-space-4);
    border-top: 1px solid rgba(255,255,255,.06);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__list > li { border-bottom: 1px solid rgba(255,255,255,.06); }
  .site-nav__list > li > a { display: block; padding: var(--wg-space-4) 0; }
  .site-nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding-left: var(--wg-space-4);
  }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  background-color: var(--wg-black);  /* NOT shorthand — preserves background-image */
  color: var(--wg-white);
  padding: var(--wg-space-9) 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero--image {
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,.82), rgba(17,17,17,.92));
}
.hero__inner { position: relative; z-index: 1; max-width: 820px; }
.hero__eyebrow {
  color: var(--wg-gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: var(--wg-fs-xs);
  font-weight: 600;
  margin: 0 0 var(--wg-space-4);
}
.hero__headline {
  color: var(--wg-white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 var(--wg-space-5);
}
.hero__headline .gold { color: var(--wg-gold); display: inline-block; }
.hero__headline br { display: block; }
.hero__subhead {
  color: var(--wg-muted-gold);
  font-size: var(--wg-fs-lg);
  max-width: 620px;
  margin: 0 0 var(--wg-space-6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--wg-space-4); }

/* Hero short variant for inner pages */
.hero--inner { min-height: 360px; padding: var(--wg-space-8) 0; }

/* =========================================================================
   Trust bar
   ========================================================================= */
.trust-bar {
  background: var(--wg-near-black);
  color: var(--wg-gold);
  padding: var(--wg-space-5) 0;
}
.trust-bar__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: var(--wg-space-5);
  font-size: var(--wg-fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust-bar__list li {
  position: relative;
  padding: 0 var(--wg-space-5);
}
.trust-bar__list li + li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 1em;
  width: 1px;
  background: rgba(200,168,75,.3);
}
@media (max-width: 720px) {
  .trust-bar__list { flex-direction: column; gap: var(--wg-space-3); }
  .trust-bar__list li + li::before { display: none; }
}

/* =========================================================================
   Cards & grids
   ========================================================================= */
.grid {
  display: grid;
  gap: var(--wg-space-5);
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

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

.card {
  background: var(--wg-card);
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--wg-shadow);
  border-color: var(--wg-gold);
}
.card--featured { border-color: var(--wg-gold); border-width: 2px; }
.card--dark {
  background: var(--wg-near-black);
  color: var(--wg-white);
  border-color: rgba(200,168,75,.25);
}
.card--dark h3, .card--dark h4 { color: var(--wg-white); }
.card--dark:hover { border-color: var(--wg-gold); }

.card__image {
  aspect-ratio: 16/10;
  background: var(--wg-black) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wg-muted-gold);
  font-family: var(--wg-font-heading);
  font-size: var(--wg-fs-lg);
  letter-spacing: .04em;
}
.card__body {
  padding: var(--wg-space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__body h3 { margin-top: 0; }
.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wg-space-2);
  margin: var(--wg-space-4) 0;
}
.card__tags span {
  background: var(--wg-bg);
  color: var(--wg-muted);
  border: 1px solid var(--wg-border);
  padding: 0.25em 0.75em;
  border-radius: 999px;
  font-size: var(--wg-fs-xs);
  letter-spacing: 0.02em;
}
.card--dark .card__tags span {
  background: rgba(200,168,75,.1);
  color: var(--wg-gold);
  border-color: rgba(200,168,75,.3);
}
.card__link {
  color: var(--wg-gold-dark);
  font-weight: 500;
  margin-top: auto;
  display: inline-block;
  padding-top: var(--wg-space-2);
}
.card__link::after { content: " →"; }

/* Service card with dark image header */
.service-card .card__image { background-color: var(--wg-black); }

/* Plan tier cards */
.plan-card {
  background: var(--wg-near-black);
  color: var(--wg-white);
  border: 1px solid rgba(200,168,75,.28);
  border-radius: var(--wg-radius);
  padding: var(--wg-space-6) var(--wg-space-5);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--wg-space-3);
  transition: transform .18s ease, border-color .18s ease;
}
.plan-card--featured {
  border-color: var(--wg-gold);
  border-width: 2px;
  background: linear-gradient(180deg, #201a12 0%, var(--wg-near-black) 100%);
  transform: scale(1.03);
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-card__tier {
  color: var(--wg-gold);
  font-family: var(--wg-font-heading);
  font-size: var(--wg-fs-2xl);
  margin: 0;
}
.plan-card__count {
  font-size: var(--wg-fs-xl);
  font-weight: 500;
  color: var(--wg-white);
}
.plan-card__benefit { color: var(--wg-muted-gold); font-size: var(--wg-fs-sm); }

/* =========================================================================
   Section components (about strip, specialty, reviews, stats)
   ========================================================================= */
.about-strip {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--wg-space-8);
  align-items: center;
}
@media (max-width: 820px) {
  .about-strip { grid-template-columns: 1fr; }
}
.about-badge {
  background: var(--wg-black);
  color: var(--wg-gold);
  padding: var(--wg-space-7) var(--wg-space-5);
  border-radius: var(--wg-radius);
  text-align: center;
  font-family: var(--wg-font-heading);
  font-size: var(--wg-fs-2xl);
  line-height: 1.2;
  border: 1px solid rgba(200,168,75,.25);
}
.about-badge small {
  display: block;
  color: var(--wg-muted-gold);
  font-family: var(--wg-font-body);
  font-size: var(--wg-fs-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: var(--wg-space-2);
}

.review-card {
  background: var(--wg-card);
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius);
  padding: var(--wg-space-6);
  font-size: var(--wg-fs-lg);
}
.review-card__stars { color: var(--wg-gold); letter-spacing: 0.15em; margin-bottom: var(--wg-space-3); }
.review-card__quote { font-family: var(--wg-font-heading); font-size: var(--wg-fs-xl); line-height: 1.4; }
.review-card__author { color: var(--wg-muted); font-size: var(--wg-fs-sm); margin-top: var(--wg-space-4); }

.stats-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--wg-space-5);
  text-align: center;
}
.stats-band__item {
  color: var(--wg-gold);
  font-family: var(--wg-font-heading);
  font-size: var(--wg-fs-2xl);
}
.stats-band__item small {
  display: block;
  color: var(--wg-muted-gold);
  font-family: var(--wg-font-body);
  font-size: var(--wg-fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: var(--wg-space-2);
}

/* =========================================================================
   Service detail pages
   ========================================================================= */
.service-section {
  background: var(--wg-card);
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius);
  padding: var(--wg-space-6);
  margin-bottom: var(--wg-space-5);
}
.service-section h3 {
  margin-top: 0;
  color: var(--wg-text);
}
.service-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wg-space-3) var(--wg-space-5);
}
.service-section ul li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.5;
}
.service-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--wg-gold);
  font-weight: 700;
}
@media (max-width: 720px) {
  .service-section ul { grid-template-columns: 1fr; }
}

.service-section--featured {
  background: var(--wg-black);
  color: var(--wg-white);
  border-color: var(--wg-gold);
}
.service-section--featured h3 { color: var(--wg-gold); }
.service-section--featured ul li { color: var(--wg-muted-gold); }
.service-section--featured ul li::before { color: var(--wg-gold); }

.trust-statement {
  background: var(--wg-bg);
  border-left: 4px solid var(--wg-gold);
  padding: var(--wg-space-5) var(--wg-space-6);
  font-style: italic;
  color: var(--wg-muted);
  border-radius: var(--wg-radius-sm);
  margin: var(--wg-space-6) 0;
}

/* Core service icons grid (Home Care Plans) */
.core-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--wg-space-5);
}
.core-service-list li {
  background: var(--wg-card);
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius);
  padding: var(--wg-space-5);
}
.core-service-list .core-service__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--wg-space-3);
}
.core-service-list h4 { margin: 0 0 var(--wg-space-2); color: var(--wg-text); }
.core-service-list p { margin: 0; color: var(--wg-muted); font-size: var(--wg-fs-sm); }

/* Bundle pricing callout */
.bundle-callout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wg-space-5);
  text-align: center;
}
.bundle-callout__item {
  background: var(--wg-near-black);
  color: var(--wg-white);
  border: 1px solid var(--wg-gold);
  border-radius: var(--wg-radius);
  padding: var(--wg-space-6);
}
.bundle-callout__item strong {
  display: block;
  font-family: var(--wg-font-heading);
  font-size: var(--wg-fs-4xl);
  color: var(--wg-gold);
  line-height: 1;
}
.bundle-callout__item small {
  display: block;
  margin-top: var(--wg-space-2);
  color: var(--wg-muted-gold);
}
@media (max-width: 720px) {
  .bundle-callout { grid-template-columns: 1fr; }
}

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-band { padding: var(--wg-space-8) 0; }
.cta-band h2 { color: var(--wg-white); }
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--wg-space-4);
  margin-top: var(--wg-space-5);
}

/* =========================================================================
   Contact form
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--wg-space-7);
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  background: var(--wg-card);
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius);
  padding: var(--wg-space-6);
  display: grid;
  gap: var(--wg-space-4);
}
.form-row { display: grid; gap: var(--wg-space-1); }
.form-row label {
  font-size: var(--wg-fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--wg-text);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius-sm);
  font-family: inherit;
  font-size: var(--wg-fs-base);
  background: var(--wg-white);
  color: var(--wg-text);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--wg-gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,.22);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row--full { grid-column: 1 / -1; }

.contact-info h3 { margin-top: 0; }
.contact-info p { color: var(--wg-muted); }
.contact-info a { color: var(--wg-gold-dark); font-weight: 500; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  background: var(--wg-black);
  color: var(--wg-muted-gold);
  padding-top: var(--wg-space-8);
  margin-top: var(--wg-space-8);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--wg-space-7);
  padding-bottom: var(--wg-space-7);
}
@media (max-width: 820px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}
.site-footer__brand {
  font-family: var(--wg-font-heading);
  font-size: 1.75rem;
  color: var(--wg-white);
  line-height: 1;
  margin-bottom: var(--wg-space-4);
  display: flex;
  flex-direction: column;
}
.site-footer__brand small {
  font-family: var(--wg-font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--wg-muted-gold);
  margin-top: 6px;
  font-weight: 500;
}
.site-footer h4 {
  color: var(--wg-white);
  font-size: var(--wg-fs-base);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--wg-font-body);
  font-weight: 600;
  margin: 0 0 var(--wg-space-3);
}
.site-footer ul {
  list-style: none;
  padding: 0; margin: 0;
}
.site-footer ul li { margin-bottom: var(--wg-space-2); }
.site-footer ul a { color: var(--wg-muted-gold); font-size: var(--wg-fs-sm); }
.site-footer ul a:hover { color: var(--wg-gold); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--wg-space-4) 0;
  font-size: var(--wg-fs-xs);
  color: var(--wg-muted-gold);
  text-align: center;
}

/* =========================================================================
   Utility
   ========================================================================= */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
