/*
Theme Name: Nexus Higher Education Consulting
Theme URI: https://www.nexushigheredconsulting.com
Author: Ivan D. Agudelo, MS
Description: Bilingual (English/Spanish) brochure theme for Nexus Higher Education Consulting. Creates all 16 pages, the navigation and the language switcher automatically on activation.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nexus
*/
/* ==========================================================================
   Nexus Higher Education Consulting
   Brand stylesheet — single source of truth for all pages.
   ========================================================================== */

/* ==========================================================================
   Nexus Higher Education Consulting
   Brand stylesheet — single source of truth for all pages.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------ */
:root {
  --navy:        #1B3A5C;
  --navy-deep:   #142C46;
  --teal:        #2D6E8E;
  --orange:      #E8804C;
  --gold:        #D9A648;
  --cream:       #F4F1EC;
  --white:       #FFFFFF;

  --ink:         #22303D;
  --ink-soft:    #55636F;
  --rule:        #DFD9D0;

  --font-serif:  "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:   "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap:        1140px;
  --wrap-narrow: 760px;
  --radius:      6px;
  --shadow:      0 2px 10px rgba(27, 58, 92, .07);
  --shadow-lift: 0 10px 28px rgba(27, 58, 92, .14);
  --ease:        200ms ease;
}

/* --- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
h4 { font-size: 1.075rem; font-family: var(--font-sans); font-weight: 700; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: .75rem 1.25rem; z-index: 200;
}
.skip-link:focus { left: 0; color: var(--white); }

/* --- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--wrap-narrow); }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 3.75rem) 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: rgba(255,255,255,.88); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }

.section-head { max-width: 720px; margin-bottom: 2.75rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
  margin: 0 0 .85rem;
}
.section--navy .eyebrow { color: var(--gold); }

.lede { font-size: 1.15rem; color: var(--ink-soft); }
.section--navy .lede { color: rgba(255,255,255,.85); }

.rule {
  width: 64px; height: 3px; border: 0;
  background: var(--orange);
  margin: 0 0 1.5rem;
}
.section-head--center .rule { margin-left: auto; margin-right: auto; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: .85rem 1.9rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: #d9713d; border-color: #d9713d; color: var(--white); }

.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--rule); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }

.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--teal);
}
.arrow-link::after { content: "\2192"; transition: transform var(--ease); }
.arrow-link:hover::after { transform: translateX(4px); }

/* --- Header / navigation ------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 84px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; gap: .7rem; }
.brand img { height: 52px; width: auto; }

/* Typographic wordmark. Text rather than an image so it stays crisp at any
   size and does not sit on the logo file's own navy background. */
.brand__rule {
  width: 4px; align-self: stretch; flex: none;
  background: var(--orange);
  transition: background var(--ease);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name,
.brand__sub {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--navy);
}
.brand__name { font-size: 1.65rem; letter-spacing: -.015em; }
.brand__sub  { font-size: 1.02rem; margin-top: .16em; }
.brand__tag {
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-top: .45em;
}
.brand:hover .brand__rule { background: var(--gold); }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: .5rem;
  color: var(--navy); cursor: pointer;
}
.nav-toggle svg { display: block; }

.nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .35rem; }

.nav a, .nav .nav__trigger {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--navy);
  padding: .65rem .9rem;
  border-radius: var(--radius);
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-sans);
}
.nav a:hover, .nav .nav__trigger:hover { color: var(--orange); }
.nav a.is-current { color: var(--orange); box-shadow: inset 0 -2px 0 var(--orange); border-radius: 0; }

.nav__item--cta { margin-left: .5rem; }
.nav__item--cta a { background: var(--navy); color: var(--white); padding: .7rem 1.35rem; }
.nav__item--cta a:hover { background: var(--teal); color: var(--white); }

/* Language switch (EN | ES) */
.lang-switch {
  display: inline-flex; align-items: center;
  margin-left: .85rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  overflow: hidden;
  font-size: .78rem; font-weight: 700; letter-spacing: .07em;
}
.lang-switch__current {
  padding: .4rem .75rem; line-height: 1;
  background: var(--navy); color: var(--white);
}
.nav .lang-switch a {
  padding: .4rem .75rem; line-height: 1;
  border-radius: 0;
  color: var(--ink-soft); background: var(--white);
  font-weight: 700; font-size: .78rem; letter-spacing: .07em;
}
.nav .lang-switch a:hover { color: var(--orange); background: var(--cream); }

/* Dropdown */
.nav__item--has-menu { position: relative; }
/* Matches `.nav a, .nav .nav__trigger` (0,2,0) so inline-flex wins over block. */
.nav .nav__trigger { display: inline-flex; align-items: center; gap: .45rem; }

/* `display: inline-block` is required: as a plain inline box the width and
   height are ignored and the two borders collapse into a vertical line. */
.nav__trigger::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--ease);
}
.nav__item--has-menu.is-open .nav__trigger::after { transform: rotate(-135deg) translateY(1px); }

/* `.nav ul` (0,1,1) outranks a bare `.nav__menu` (0,1,0), so these rules are
   scoped to `.nav .nav__menu` (0,2,0) to keep the closed state winning. */
/* `top: 100%` (no gap) is deliberate: a gap between the trigger and the panel
   fires mouseleave as the pointer travels down, closing the menu mid-click. */
.nav .nav__menu {
  position: absolute; top: 100%; left: 0;
  min-width: 258px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: .4rem;
  display: none;
  flex-direction: column;
  gap: 0;
}
.nav .nav__item--has-menu.is-open .nav__menu { display: flex; }
.nav__menu li { width: 100%; }
.nav .nav__menu a { padding: .6rem .85rem; font-weight: 500; font-size: .93rem; }
.nav .nav__menu a:hover { background: var(--cream); }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex; align-items: center;
  min-height: clamp(460px, 74vh, 640px);
  background-color: var(--navy);
  /* Drop a photo at assets/img/hero.jpg to replace the gradient below. */
  background-image:
    linear-gradient(180deg, rgba(20,44,70,.82) 0%, rgba(27,58,92,.78) 55%, rgba(45,110,142,.72) 100%),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--gold) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: clamp(4rem, 10vw, 6.5rem) 1.5rem; }
.hero__eyebrow {
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--gold); margin-bottom: 1.5rem;
}
/* The hero headline is the mission quote itself, so it carries the h1. */
.hero__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  line-height: 1.45;
  color: var(--white);
  max-width: 30ch;
  margin: 0 auto;
  animation: rise 700ms ease both;
}
.hero__quote--long { max-width: 46ch; }
.hero__sub {
  max-width: 60ch; margin: 1.5rem auto 2.25rem;
  color: rgba(255,255,255,.86); font-size: 1.075rem;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__quote { animation: none; }
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

/* --- Page banner (interior pages) --------------------------------------- */
.page-banner {
  background: var(--navy);
  background-image: linear-gradient(115deg, var(--navy-deep) 0%, var(--navy) 55%, var(--teal) 140%);
  color: var(--white);
  padding: clamp(3rem, 7vw, 4.75rem) 0;
  border-bottom: 5px solid var(--orange);
}
.page-banner h1 { color: var(--white); margin-bottom: .35rem; }
.page-banner p { color: rgba(255,255,255,.85); max-width: 62ch; font-size: 1.1rem; margin: 0; }
.page-banner .eyebrow { color: var(--gold); }

.breadcrumb { font-size: .875rem; color: rgba(255,255,255,.7); margin: 0 0 1rem; }
.breadcrumb a { color: rgba(255,255,255,.9); }
.breadcrumb a:hover { color: var(--gold); }

/* --- Cards / grids ------------------------------------------------------ */
.grid { display: grid; gap: 1.75rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.card:nth-child(2) { border-top-color: var(--orange); }
.card:nth-child(3) { border-top-color: var(--gold); }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--ink-soft); }
.card .arrow-link { margin-top: auto; padding-top: 1.25rem; }

.card__icon {
  width: 46px; height: 46px; margin-bottom: 1.15rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--teal); color: var(--white);
}
.card:nth-child(2) .card__icon { background: var(--orange); }
.card:nth-child(3) .card__icon { background: var(--gold); }

/* --- Package / service blocks ------------------------------------------- */
.package {
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.package:nth-of-type(even) { border-left-color: var(--orange); }
.package__num {
  display: inline-block;
  font-family: var(--font-serif); font-size: .95rem; font-weight: 700;
  color: var(--orange); letter-spacing: .1em; margin-bottom: .35rem;
}
.package h3 { margin-bottom: .35rem; }
.package__best {
  font-size: .95rem; color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  padding-bottom: .9rem; margin-bottom: 1.1rem;
}
.package__best strong { color: var(--navy); }
.package h4 { color: var(--navy); margin: 0 0 .6rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }

.check-list { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.check-list li { position: relative; padding-left: 1.75rem; margin-bottom: .7rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--gold); transform: rotate(45deg);
}
.check-list li:last-child { margin-bottom: 0; }
.check-list strong { color: var(--navy); }

.price-note {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  padding: .85rem 1.15rem;
  font-size: .95rem;
  color: var(--ink-soft);
  margin-top: 1.25rem;
}
.price-note strong { color: var(--navy); }

.note {
  font-size: .9rem; color: var(--ink-soft); font-style: italic;
}

/* --- Why-choose strip --------------------------------------------------- */
.why-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.why-list--3 { grid-template-columns: repeat(3, 1fr); }
.why-list li { padding-left: 1.25rem; border-left: 3px solid var(--gold); }
.why-list strong { display: block; color: var(--white); font-size: 1.05rem; margin-bottom: .25rem; }
.section--cream .why-list strong { color: var(--navy); }

/* --- About / media object ----------------------------------------------- */
.bio {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.bio__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border-bottom: 6px solid var(--orange);
  position: sticky; top: 108px;
}
.bio__name { margin-bottom: .15rem; }
.bio__title {
  color: var(--teal); font-weight: 600; letter-spacing: .04em;
  margin-bottom: 1.75rem;
}

.pull-quote {
  border-left: 4px solid var(--gold);
  padding: .35rem 0 .35rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--navy);
}

/* --- Resources ---------------------------------------------------------- */
.resource-list { list-style: none; margin: 0; padding: 0; }
.resource-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}
.resource-list li:last-child { border-bottom: 0; }
.resource-list a { font-weight: 600; }
.resource-list span { display: block; font-size: .95rem; color: var(--ink-soft); }

details.faq {
  border-bottom: 1px solid var(--rule);
  padding: .35rem 0;
}
details.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 2.5rem 1rem 0;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute; right: .5rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--orange); line-height: 1;
}
details.faq[open] summary::after { content: "\2013"; }
details.faq .faq__body { padding: 0 1rem 1.15rem 0; color: var(--ink-soft); }

/* --- Forms -------------------------------------------------------------- */
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; }
.field label {
  font-weight: 600; font-size: .92rem; color: var(--navy);
  margin-bottom: .4rem;
}
.field label .opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  padding: .8rem .9rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45,110,142,.15);
  outline: none;
}
.form__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form__status { font-size: .95rem; color: var(--teal); font-weight: 600; }

.aside-box {
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.6rem;
}
.aside-box h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.aside-box p { font-size: .97rem; color: var(--ink-soft); }

/* --- Closing CTA -------------------------------------------------------- */
.cta {
  position: relative;
  background-color: var(--navy-deep);
  /* Drop a photo at assets/img/cta.jpg to replace the gradient below. */
  background-image:
    linear-gradient(120deg, rgba(20,44,70,.90) 0%, rgba(45,110,142,.82) 100%),
    url("images/cta.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: clamp(3.5rem, 9vw, 5.5rem) 0;
}
.cta h2 { color: var(--white); max-width: 22ch; margin: 0 auto .75rem; }
.cta p { color: rgba(255,255,255,.86); max-width: 54ch; margin: 0 auto 2rem; font-size: 1.1rem; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  padding: 3.25rem 0 2rem;
  font-size: .95rem;
}
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: var(--gold); }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer__logo img { height: 46px; width: auto; margin-bottom: 1rem; }
.footer h4 {
  color: var(--white); font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.footer__nav ul { list-style: none; margin: 0; padding: 0; }
.footer__nav li { margin-bottom: .55rem; }
.social-link {
  display: flex; align-items: center; gap: .6rem;
  width: fit-content;
  margin-bottom: .7rem;
  font-weight: 600; color: var(--white);
}
.social-link svg { flex-shrink: 0; }
.social-link:hover { color: var(--gold); }
.footer__eeo { margin-top: 1.25rem; font-size: .875rem; line-height: 1.6; color: rgba(255,255,255,.65); }
.footer__bottom {
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 960px) {
  .grid--3, .why-list--3 { grid-template-columns: repeat(2, 1fr); }
  .bio { grid-template-columns: 1fr; }
  .bio__photo { position: static; max-width: 320px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }

  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-lift);
    padding: .75rem 1.5rem 1.5rem;
    display: none;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .site-header.is-open .nav { display: block; }
  .site-header__inner { position: relative; }

  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > ul > li { border-bottom: 1px solid var(--rule); }
  .nav > ul > li:last-child { border-bottom: 0; }
  .nav a, .nav .nav__trigger { padding: .95rem .25rem; width: 100%; text-align: left; }
  .nav a.is-current { box-shadow: none; }

  .nav__trigger { justify-content: space-between; }
  .nav .nav__menu {
    position: static; display: none; box-shadow: none;
    border: 0; border-left: 3px solid var(--gold); border-radius: 0;
    min-width: 0; padding: 0 0 .75rem .9rem; margin-bottom: .5rem;
  }
  .nav .nav__menu a { padding: .7rem .25rem; }
  .nav__item--cta { margin: 1rem 0 0; }
  .nav__item--cta a { text-align: center; border-radius: var(--radius); }

  .nav__item--lang { margin-top: 1rem; }
  .nav .lang-switch { margin-left: 0; }
  .nav .lang-switch a { width: auto; padding: .55rem 1rem; text-align: center; }
  .lang-switch__current { padding: .55rem 1rem; }
}

@media (max-width: 680px) {
  body { font-size: 1rem; }
  .grid--3, .grid--2, .why-list--3, .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .brand img { height: 42px; }
  .brand { gap: .55rem; }
  .brand__name { font-size: 1.3rem; }
  .brand__sub  { font-size: .84rem; }
  .brand__tag  { font-size: .5rem; letter-spacing: .22em; }
  .package { padding: 1.6rem 1.25rem; }
  .site-header__inner { min-height: 72px; }
  @media (max-width: 820px) { .nav { max-height: calc(100vh - 72px); } }
}

/* --- Print -------------------------------------------------------------- */
@media print {
  .site-header, .cta, .site-footer, .nav-toggle { display: none; }
  body { font-size: 11pt; }
}
