/* ==========================================================================
   National Study Academy - nsatutor.com
   K-12 tutoring and test preparation, Oxnard CA
   --------------------------------------------------------------------------
   Palette: Cobalt + Sun + Paper (warm approachable academic)
   ========================================================================== */

:root {
  --cobalt:       #1E3A8A;
  --cobalt-deep:  #0F1F52;
  --cobalt-soft:  #4560B0;
  --sun:          #F4C430;
  --sun-deep:     #B58F1A;
  --sun-soft:     #F7DA79;
  --paper:        #FDFBF4;
  --paper-warm:   #F4EEDA;
  --slate:        #3A414D;
  --slate-soft:   #6B7280;
  --rule:         #D3C99B;
  --white:        #FFFFFF;

  --radius:    6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(15,31,82,0.05), 0 2px 6px rgba(15,31,82,0.04);
  --shadow-md: 0 4px 14px rgba(15,31,82,0.08), 0 12px 26px rgba(15,31,82,0.06);
  --shadow-lg: 0 20px 44px rgba(15,31,82,0.14);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans:    'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--cobalt); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--cobalt-deep); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--cobalt);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.3vw, 2.55rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.05em; color: var(--slate); }

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 1.1rem;
}
.eyebrow.on-dark { color: var(--sun); }

.section-title {
  text-align: center;
  margin-bottom: 3.2rem;
}
.section-title h2 { margin-bottom: .6rem; }
.section-title p {
  max-width: 740px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--slate);
}

/* Highlighter effect for hero */
.highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 4px;
}
.highlight::before {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 6px;
  height: 42%;
  background: var(--sun);
  z-index: -1;
  border-radius: 3px;
  transform: skew(-3deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
  text-align: center;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--cobalt);
  color: var(--white);
  border-color: var(--cobalt);
}
.btn-primary:hover {
  background: var(--cobalt-deep);
  border-color: var(--cobalt-deep);
  color: var(--sun);
}
.btn-outline {
  background: transparent;
  color: var(--cobalt);
  border-color: var(--cobalt);
}
.btn-outline:hover { background: var(--cobalt); color: var(--white); }
.btn-outline.on-dark { color: var(--paper); border-color: rgba(253,251,244,0.4); }
.btn-outline.on-dark:hover { background: var(--sun); color: var(--cobalt-deep); border-color: var(--sun); }
.btn-large { padding: 16px 34px; font-size: 1.02rem; }

/* Topbar */
.topbar {
  background: var(--cobalt-deep);
  color: var(--paper);
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(247,218,121,0.15);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 24px;
}
.topbar-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.03em;
}
.topbar-tagline svg { width: 16px; height: 16px; color: var(--sun); }
.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.topbar-meta span,
.topbar-meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--paper);
}
.topbar-meta a:hover { color: var(--sun); }
.topbar-meta svg { width: 14px; height: 14px; color: var(--sun); }

/* Nav */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cobalt);
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cobalt);
  color: var(--sun);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cobalt);
  letter-spacing: -0.005em;
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-soft);
  font-weight: 600;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--slate);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 8px 2px;
  position: relative;
}
.nav-menu a.active,
.nav-menu a:hover { color: var(--cobalt); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--sun);
  border-radius: 2px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--cobalt);
}
.hamburger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(15,31,82,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 86vw);
  background: var(--paper);
  padding: 32px 28px;
  transform: translateX(110%);
  transition: transform .3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  color: var(--cobalt);
  margin-bottom: 14px;
}
.drawer-close svg { width: 22px; height: 22px; }
.drawer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer ul a {
  display: block;
  padding: 12px 6px;
  color: var(--cobalt);
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid var(--rule);
}
.drawer-cta { width: 100%; margin-bottom: 28px; }
.drawer-meta {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--slate-soft);
  line-height: 1.6;
}
.drawer-meta strong { color: var(--cobalt); }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 88% 20%, var(--paper-warm) 0%, transparent 55%),
    radial-gradient(circle at 8% 80%, rgba(247,218,121,0.35) 0%, transparent 50%),
    var(--paper);
  padding: 110px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.hero h1 {
  color: var(--cobalt-deep);
  margin-bottom: 1.2rem;
  line-height: 1.14;
}
.hero-lead {
  color: var(--slate);
  font-size: 1.18rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 680px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2.4rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.92rem;
  color: var(--slate);
  font-weight: 600;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta svg { width: 18px; height: 18px; color: var(--sun-deep); }

/* Decorative pencil marks in hero corners */
.hero-mark {
  position: absolute;
  color: var(--cobalt-soft);
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}
.hero-mark.top-right { top: 60px; right: -30px; width: 260px; height: 260px; }
.hero-mark.bottom-left { bottom: -40px; left: -20px; width: 220px; height: 220px; }

/* Sections */
.section-light { background: var(--paper); padding: 96px 0; }
.section-cream { background: var(--paper-warm); padding: 96px 0; }
.section-white { background: var(--white); padding: 96px 0; }
.section-dark {
  background: var(--cobalt-deep);
  color: var(--paper);
  padding: 96px 0;
}
.section-dark h2,
.section-dark h3 { color: var(--paper); }
.section-dark p { color: rgba(253,251,244,0.85); }

/* Trust strip */
.trust {
  background: var(--white);
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 4px;
}
.trust-item .trust-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-warm);
  color: var(--cobalt);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.trust-item .trust-icon svg { width: 20px; height: 20px; }
.trust-item .trust-text {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cobalt);
  font-size: 1.02rem;
  line-height: 1.3;
}

/* Subject / offer cards */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cobalt-soft);
}
.offer-topbar {
  background: var(--cobalt);
  color: var(--sun);
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.offer-topbar svg { width: 18px; height: 18px; color: var(--sun); }
.offer-body { padding: 26px 26px 28px; flex: 1; }
.offer-body h3 { margin-bottom: 10px; }
.offer-body p { font-size: 0.98rem; color: var(--slate); margin-bottom: 14px; }
.offer-body .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.offer-body .chips li {
  font-size: 0.78rem;
  background: var(--paper-warm);
  color: var(--cobalt-deep);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* Formats */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.format {
  background: var(--white);
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--sun);
  box-shadow: var(--shadow-sm);
}
.format .duration {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cobalt);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  background: var(--paper-warm);
  padding: 3px 10px;
  border-radius: 4px;
}
.format h3 { margin-bottom: 10px; font-size: 1.2rem; }
.format p { margin: 0; font-size: 0.95rem; color: var(--slate); }

/* Process (dark cobalt bar) */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  position: relative;
  padding: 8px 4px 4px;
}
.process-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--sun);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.process-step h3 { color: var(--paper); margin-bottom: 8px; }
.process-step p { color: rgba(253,251,244,0.82); font-size: 0.95rem; margin: 0; }

/* Who we work with */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.who-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  text-align: left;
  transition: all .25s ease;
}
.who-card:hover {
  border-color: var(--sun);
  box-shadow: var(--shadow-sm);
}
.who-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: var(--paper-warm);
  border: 2px solid var(--sun);
  color: var(--cobalt);
  border-radius: 50%;
  margin-bottom: 18px;
}
.who-icon svg { width: 26px; height: 26px; }
.who-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.who-card p { font-size: 0.96rem; margin: 0; }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cobalt);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: var(--font-display);
  padding-right: 60px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--sun-deep);
  transition: transform .2s ease;
  font-weight: 400;
  line-height: 1;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  padding: 0 26px 22px;
  color: var(--slate);
  font-size: 0.98rem;
}
.faq-body p { margin: 0; }

/* CTA banner */
.cta-banner {
  background:
    radial-gradient(circle at 90% 30%, rgba(247,218,121,0.18) 0%, transparent 50%),
    linear-gradient(160deg, var(--cobalt-deep) 0%, var(--cobalt) 100%);
  color: var(--paper);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: var(--paper);
  max-width: 760px;
  margin: 0 auto 1rem;
}
.cta-banner p {
  color: rgba(253,251,244,0.86);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.06rem;
}
.cta-banner .hero-actions { justify-content: center; margin: 0; }

/* Page hero */
.page-hero {
  background:
    radial-gradient(circle at 82% 30%, var(--paper-warm) 0%, transparent 55%),
    radial-gradient(circle at 12% 78%, rgba(247,218,121,0.32) 0%, transparent 50%),
    var(--paper);
  padding: 100px 0 90px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 { color: var(--cobalt-deep); margin-bottom: 1rem; }
.page-hero p {
  color: var(--slate);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.12rem;
}

/* Prose */
.prose {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.06rem;
  color: var(--slate);
}
.prose h2 { margin-top: 2.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { color: var(--cobalt); margin-top: 1.8rem; }
.prose p { color: var(--slate); }
.prose ul { color: var(--slate); padding-left: 22px; margin-bottom: 1.4rem; }
.prose ul li { margin-bottom: 0.55rem; }
.prose ul li strong { color: var(--cobalt); }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.2rem; }
.contact-info p { font-size: 1.02rem; margin-bottom: 1.4rem; color: var(--slate); }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .contact-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-warm);
  color: var(--cobalt);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.contact-row .contact-icon svg { width: 20px; height: 20px; }
.contact-row strong {
  display: block;
  color: var(--cobalt);
  font-weight: 700;
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: 1.02rem;
}
.contact-row span { color: var(--slate); font-size: 0.96rem; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.form-card iframe {
  width: 100%;
  border: 0;
  min-height: 763px;
  display: block;
}
.consult-callout {
  margin-top: 40px;
  background: var(--paper-warm);
  border-left: 4px solid var(--sun);
  padding: 24px 28px;
  border-radius: var(--radius);
}
.consult-callout h3 { margin-bottom: 6px; font-size: 1.15rem; }
.consult-callout p { margin: 0; color: var(--slate); font-size: 0.98rem; }

/* Tutor selection / process blocks on services */
.selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 2rem;
}
.selection-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
}
.selection-card .num {
  font-family: var(--font-display);
  color: var(--sun-deep);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: block;
}
.selection-card h4 {
  color: var(--cobalt);
  margin-bottom: 6px;
  font-size: 1.08rem;
}
.selection-card p { margin: 0; font-size: 0.95rem; color: var(--slate); }

/* Timeline table */
.timeline-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  font-size: 0.98rem;
}
.timeline-table th,
.timeline-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.timeline-table th {
  background: var(--cobalt);
  color: var(--sun);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.timeline-table tr:last-child td { border-bottom: 0; }
.timeline-table td:first-child {
  font-weight: 700;
  color: var(--cobalt);
  font-family: var(--font-display);
}

/* Footer */
.footer {
  background: var(--cobalt-deep);
  color: rgba(253,251,244,0.78);
  padding: 70px 0 30px;
}
.footer h4 {
  color: var(--sun);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-sans);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .brand .brand-name,
.footer .brand .brand-sub { color: var(--paper); }
.footer .brand .brand-sub { color: rgba(253,251,244,0.6); }
.footer .brand .brand-mark { background: var(--sun); color: var(--cobalt-deep); }
.footer p { color: rgba(253,251,244,0.72); font-size: 0.94rem; margin: 14px 0; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: rgba(253,251,244,0.76); font-size: 0.92rem; }
.footer ul a:hover { color: var(--sun); }
.footer-meta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(253,251,244,0.72);
}
.footer-meta-row svg { width: 16px; height: 16px; color: var(--sun); }
.footer-bottom {
  border-top: 1px solid rgba(253,251,244,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(253,251,244,0.55);
}

/* Responsive */
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 780px) {
  .topbar-tagline { display: none; }
  .nav-menu { display: none; }
  .hamburger { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .hero { padding: 80px 0 90px; }
  .hero-mark { display: none; }
  .section-light, .section-cream, .section-white, .section-dark { padding: 72px 0; }
  .cta-banner { padding: 72px 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { gap: 14px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
  .topbar-meta { gap: 12px; font-size: 0.8rem; }
  .brand-sub { display: none; }
}
