/* ==========================================================
   Luxury Real Estate Site — Volume Model
   Buyers: $3K back at closing | Sellers: tiered flat fee
   ========================================================== */

:root {
  --bg: #faf8f5;
  --bg-alt: #ffffff;
  --bg-dark: #1a2238;
  --bg-cream: #f4eee2;
  --ink: #1a2238;
  --ink-soft: #2d3548;
  --muted: #6b6f7a;
  --muted-soft: #9ca3af;
  --accent: #b08d57;
  --accent-dark: #8f7045;
  --accent-soft: #f8efd9;
  --success: #2d6a31;
  --line: #e6e0d6;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(26, 34, 56, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 34, 56, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 34, 56, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--ink);
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }
.container-tight { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all .3s ease;
  text-align: center;
  font-family: inherit;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn-light { border-color: #fff; color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-solid:hover { background: var(--accent); border-color: var(--accent); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-block { width: 100%; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

/* ============ Navigation ============ */
header.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .3s ease, padding .3s ease;
}
header.nav.scrolled,
header.nav.solid {
  background: var(--bg);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px;
}
.logo {
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 500;
  flex-shrink: 0;
}
.logo img { height: 72px; width: auto; display: block; transition: filter .3s ease; }
header.nav.scrolled .logo,
header.nav.solid .logo { color: var(--ink); }
header.nav.scrolled .logo img,
header.nav.solid .logo img { filter: brightness(0) saturate(100%); }

.nav-links {
  display: flex; gap: 22px;
  list-style: none;
  align-items: center;
  white-space: nowrap;
}
.nav-links > li > a,
.nav-links > li > .dropdown-trigger {
  color: #fff;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .2s;
  font-family: inherit;
}
header.nav.scrolled .nav-links > li > a,
header.nav.scrolled .nav-links > li > .dropdown-trigger,
header.nav.solid .nav-links > li > a,
header.nav.solid .nav-links > li > .dropdown-trigger { color: var(--ink); }
.nav-links a:hover,
.nav-links .dropdown-trigger:hover { color: var(--accent) !important; }

.nav-phone {
  border: 1px solid currentColor;
  padding: 9px 18px;
}
.menu-toggle { display: none; font-size: 24px; padding: 8px; color: #fff; }
header.nav.scrolled .menu-toggle,
header.nav.solid .menu-toggle { color: var(--ink); }

/* ============ Hero ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.5));
}
.hero-content { position: relative; z-index: 1; max-width: 920px; padding: 0 24px; }
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  margin-bottom: 16px;
  font-weight: 300;
  color: #fff;
}
.hero p.tagline {
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 44px;
  font-weight: 600;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-sub {
  height: 50vh;
  min-height: 360px;
  padding-top: 180px;
}
.hero-sub h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); }

/* ============ Sections ============ */
section { padding: 110px 0; }
.section-title {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin-bottom: 24px;
}
.section-header { text-align: center; margin-bottom: 70px; }
.lead {
  color: var(--muted);
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
}
.section-header .lead { margin: 0 auto; }

/* ============ Feature cards (3-up image cards) ============ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  display: block;
}
.feature-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.feature-card:hover img { transform: scale(1.05); }
.feature-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.7));
}
.feature-card h3 {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  color: #fff;
  font-size: 1.8rem;
  z-index: 2;
}

/* ============ Stats ============ */
.stats {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  max-width: 800px; margin: 0 auto;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  margin-top: 16px; opacity: .85;
}

/* ============ Split section ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.split-text p { color: var(--muted); margin-bottom: 20px; font-size: 16px; }
.split-text p:last-of-type { margin-bottom: 32px; }

/* ============ Calculator card (luxury style) ============ */
.calc-card {
  background: #fff;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--accent);
  position: relative;
}
.calc-tabs {
  display: flex;
  background: var(--bg-cream);
  padding: 4px;
  margin-bottom: 32px;
}
.calc-tab {
  flex: 1;
  padding: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all .25s;
  font-family: inherit;
}
.calc-tab.active {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.calc-pane { display: none; }
.calc-pane.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

.calc-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}
.calc-display {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 20px;
}
.calc-display .price {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--ink);
  font-weight: 400;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-cream);
  outline: 0;
  margin-bottom: 32px;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  transition: transform .15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid #fff;
}

.calc-results {
  background: var(--bg-cream);
  padding: 28px;
  margin-bottom: 28px;
}
.calc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.calc-row:last-child {
  border: 0;
  padding-top: 16px; margin-top: 8px;
  border-top: 2px solid var(--ink);
}
.calc-row .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.calc-row .value {
  font-weight: 600;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.4rem;
}
.calc-row.savings .label { color: var(--accent-dark); font-weight: 600; }
.calc-row.savings .value {
  color: var(--accent);
  font-size: 1.8rem;
}

/* ============ Pricing tiers (sellers) ============ */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tier {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px 24px;
  text-align: center;
  transition: all .25s;
}
.tier:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tier-range {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.tier-fee {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 8px;
}
.tier-savings {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

/* ============ Comparison table ============ */
.comparison {
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.comparison table { width: 100%; border-collapse: collapse; }
.comparison th, .comparison td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.comparison thead th {
  background: var(--bg-cream);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}
.comparison thead th.us {
  background: var(--ink);
  color: #fff;
}
.comparison tbody tr:last-child td { border: 0; }
.comparison td.us {
  background: var(--accent-soft);
  font-weight: 600;
  color: var(--accent-dark);
}
.comparison td.them { color: var(--muted); }
.comparison .check { color: var(--success); font-weight: 700; }

/* ============ How it works steps ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { text-align: left; }
.step-num {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step h3 { font-size: 1.4rem; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 15px; }

/* ============ Testimonials carousel (luxury style) ============ */
.testimonials { background: var(--ink); color: #fff; }
.testimonial-track { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.testimonial { display: none; padding: 0 40px; }
.testimonial.active { display: block; animation: fadeIn .6s ease; }
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-style: italic;
  margin-bottom: 32px;
  line-height: 1.5;
  position: relative;
}
.testimonial blockquote::before {
  content: '"'; font-size: 5rem; color: var(--accent);
  position: absolute; top: -30px; left: -20px;
  font-family: var(--serif); opacity: .5;
}
.testimonial cite {
  font-style: normal;
  letter-spacing: 3px;
  font-size: 12px;
  opacity: .85;
  text-transform: uppercase;
}
.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-top: 50px;
}
.carousel-arrow {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all .25s;
}
.carousel-arrow:hover { background: var(--accent); border-color: var(--accent); }
.dots { display: flex; gap: 10px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer; padding: 0;
  transition: background .25s;
}
.dot.active { background: var(--accent); }

/* ============ CTA banner ============ */
.cta-banner {
  text-align: center;
  background-size: cover; background-position: center;
  color: #fff;
  position: relative;
  padding: 130px 0;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
.cta-banner .container { position: relative; z-index: 1; }

/* ============ Forms ============ */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--accent);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.form-checkbox input { margin-top: 4px; flex-shrink: 0; }
.honeypot { position: absolute; left: -9999px; }
.form-message { padding: 14px 18px; margin-top: 16px; display: none; font-size: 14px; }
.form-message.success { display: block; background: #e8f5e9; color: #2d6a31; border: 1px solid #b3d9b6; }
.form-message.error { display: block; background: #fde8e8; color: #8a2a2a; border: 1px solid #f0c0c0; }

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 400;
  width: 100%; text-align: left;
}
.faq-q .icon {
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform .25s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  color: var(--muted);
  transition: max-height .3s ease, padding .3s ease;
  font-size: 16px; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 500px; padding-top: 16px; }

/* ============ Guide steps (numbered) ============ */
.guide-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.guide-step:last-child { border-bottom: 0; }
.guide-step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
}
.guide-step h3 { margin-bottom: 12px; font-size: 1.6rem; }
.guide-step p { color: var(--muted); }

/* ============ Communities pills ============ */
.communities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.community-pill {
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 18px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  transition: all .2s;
}
.community-pill:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

/* ============ WhatsApp floating button ============ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform .2s;
  font-size: 26px;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* ============ Footer ============ */
footer.site-footer {
  background: #0f1626;
  color: #cfd0d4;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
footer.site-footer h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 22px;
  letter-spacing: 1px;
}
footer.site-footer p, footer.site-footer a, footer.site-footer li {
  font-size: 13px; line-height: 2; list-style: none;
}
footer.site-footer a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  transition: all .2s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-bottom {
  padding-top: 30px;
  font-size: 11px;
  opacity: .65;
  text-align: center;
  line-height: 1.8;
}
.footer-bottom a { text-decoration: underline; }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  header.nav { padding: 12px 0; }
}
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg);
    padding: 16px 0;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a, .nav-links > li > .dropdown-trigger {
    color: var(--ink) !important;
    padding: 14px 32px;
    width: 100%; text-align: left;
    font-size: 12px;
  }
  .menu-toggle { display: block; }
  .nav-phone { display: none; }

  .features, .steps-grid, .communities, .tiers { grid-template-columns: 1fr; }
  .communities, .tiers { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: 1fr; gap: 50px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .container, .container-narrow, .container-tight { padding: 0 20px; }
  .calc-card { padding: 32px 24px; }
  .testimonial { padding: 0 20px; }
  .guide-step { grid-template-columns: 56px 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .communities, .tiers { grid-template-columns: 1fr; }
}

/* ============ LOGO LOCKUP (Axen + Wordmark) ============ */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-lockup .axen-mark img {
  height: 60px;
  width: auto;
  display: block;
  transition: filter .3s ease;
}
.logo-lockup .divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(200, 152, 73, 0.3) 20%,
    rgba(200, 152, 73, 0.9) 50%,
    rgba(200, 152, 73, 0.3) 80%,
    transparent 100%);
  position: relative;
  flex-shrink: 0;
}
.logo-lockup .divider::before,
.logo-lockup .divider::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(200, 152, 73, 0.9);
}
.logo-lockup .divider::before { top: 8px; }
.logo-lockup .divider::after { bottom: 8px; }

.wordmark {
  display: inline-block;
  text-align: left;
  line-height: 1;
  font-family: var(--serif);
  color: #fff;
}
.wordmark .wm-top {
  display: block;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 2px;
  color: #fff;
}
.wordmark .wm-bottom {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 4px;
  color: #fff;
}

/* On scroll / solid nav — wordmark turns dark navy */
header.nav.scrolled .wordmark,
header.nav.scrolled .wordmark .wm-top,
header.nav.scrolled .wordmark .wm-bottom,
header.nav.solid .wordmark,
header.nav.solid .wordmark .wm-top,
header.nav.solid .wordmark .wm-bottom {
  color: var(--ink);
}

/* Axen logo white when over dark hero */
header.nav:not(.scrolled):not(.solid) .logo-lockup .axen-mark img {
  filter: brightness(0) invert(1);
}

/* Footer version */
footer.site-footer .wordmark,
footer.site-footer .wordmark .wm-top,
footer.site-footer .wordmark .wm-bottom { color: #fff; }
footer.site-footer .logo-lockup .axen-mark img { filter: brightness(0) invert(1); }

/* Mobile */
@media (max-width: 600px) {
  .logo-lockup { gap: 10px; }
  .logo-lockup .axen-mark img { height: 44px; }
  .logo-lockup .divider { height: 36px; }
  .wordmark .wm-top { font-size: 14px; letter-spacing: 2px; }
  .wordmark .wm-bottom { font-size: 9px; letter-spacing: 4px; }
}