/* Cape Ann Symphony — Site-wide components (nav, footer, mega-menu)
   Loaded on every 2026 page. Depends on base.css tokens. */

/* =================== SPONSOR STRIP (marquee) ===================
   Sits above the footer site-wide. Reads from Perch `Sponsors`
   collection via sponsors/_footer_logo_item_2026.html (rendered twice
   in the track for a seamless translateX(-50%) loop). */
.cas-sponsors {
  background: var(--ink);
  padding: 36px 0 32px;
  overflow: hidden;
  position: relative;
}
.cas-sponsors__eyebrow {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 234, 218, 0.55);
  margin-bottom: 22px;
}
.cas-sponsors__viewport {
  position: relative;
}
.cas-sponsors__viewport::before,
.cas-sponsors__viewport::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.cas-sponsors__viewport::before { left: 0;  background: linear-gradient(to right, var(--ink), transparent); }
.cas-sponsors__viewport::after  { right: 0; background: linear-gradient(to left,  var(--ink), transparent); }
.cas-sponsors__track {
  display: flex;
  gap: 80px;
  align-items: center;
  width: max-content;
  animation: cas-sponsors-scroll 45s linear infinite;
}
.cas-sponsors__track:hover { animation-play-state: paused; }
.cas-sponsors__item {
  display: inline-flex;
  align-items: center;
  height: 128px;
}
.cas-sponsors__item a { display: inline-flex; align-items: center; }
.cas-sponsors__logo {
  height: 112px;
  width: auto;
  max-width: 440px;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 160ms ease;
}
.cas-sponsors__item a:hover .cas-sponsors__logo { opacity: 1; }
@keyframes cas-sponsors-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .cas-sponsors__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}
@media (max-width: 700px) {
  .cas-sponsors { padding: 28px 0 24px; }
  .cas-sponsors__track { gap: 56px; animation-duration: 35s; }
  .cas-sponsors__logo { height: 88px; max-width: 340px; }
}

/* =================== HEADER =================== */

/* Total rendered height of the sticky .cas-header. Lives on :root
   so siblings (e.g. .sup-subnav, future page-level subnavs) can
   consume it for their own sticky `top` offsets, since custom
   properties only cascade to descendants. Desktop value covers
   nav-utility (~36px) + nav-main (~92px) + border (1px); the
   mobile override below matches the slimmer ≤1024px layout where
   nav-utility is hidden and the logo + padding shrink. */
:root { --cas-header-h: 128px; }
@media (max-width: 1024px) {
  :root { --cas-header-h: 68px; }
}

.cas-header {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  position: sticky; top: 0; z-index: 50;
}

/* Utility bar above main nav */
.nav-utility { background: var(--ink); color: var(--bg); }
.nav-utility-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-family: "Inter", sans-serif; font-size: 13px;
  padding: 8px 32px; letter-spacing: 0.02em;
  max-width: 1280px; margin: 0 auto;
}
.nav-utility-inner a { color: var(--bg); opacity: 0.85; }
.nav-utility-inner a:hover { opacity: 1; }
.nav-utility-inner .celebrating { opacity: 0.85; }

/* Main nav bar */
.nav-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; gap: 24px;
  max-width: 1280px; margin: 0 auto;
}
.logo-lockup {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.logo-lockup img {
  height: 56px; width: auto; display: block;
}
.logo-lockup .wordmark {
  font-family: "Source Serif 4", "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.1;
  display: inline-flex; flex-direction: column;
  white-space: nowrap;
}
.logo-lockup .vh {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}

.nav-links { display: flex; gap: 2px; align-items: stretch; }

/* Top-level link / trigger */
.nav-top {
  font-family: "Inter", sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 14px 16px;
  color: var(--ink-2);
  border: none; background: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
  height: 100%;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.nav-top:hover, .nav-top[aria-expanded="true"] { color: var(--accent); }
.nav-top.is-active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-caret { font-size: 10px; opacity: 0.6; transition: transform 150ms; }
.nav-top[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }

/* Dropdown wrapper */
.nav-has-dd { position: relative; }

/* Mega-menu panel */
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 680px; max-width: calc(100vw - 48px);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-top: none;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.12);
  padding: 32px;
  z-index: 100;
  opacity: 0; pointer-events: none;
  visibility: hidden;
  transition: opacity 140ms ease-out, visibility 0s linear 140ms;
}
.nav-has-dd[data-align="left"] .nav-dropdown { left: 0; transform: none; }
.nav-has-dd[data-align="right"] .nav-dropdown { left: auto; right: 0; transform: none; }
.nav-dropdown.open {
  opacity: 1; pointer-events: auto; visibility: visible;
  transition: opacity 140ms ease-out, visibility 0s linear 0s;
}
.nav-dropdown-grid { display: grid; gap: 32px; }

.nav-dd-group-title {
  font-family: "Inter", sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.nav-dd-items { display: flex; flex-direction: column; gap: 2px; }
.nav-dd-item {
  display: flex; flex-direction: column; gap: 2px;
  text-align: left;
  padding: 8px 10px; margin: 0 -10px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 100ms;
}
.nav-dd-item:hover { background: var(--bg-elev); color: inherit; }
.nav-dd-label { font-family: "Inter", sans-serif; font-size: 15px; font-weight: 600; color: var(--ink); }
.nav-dd-desc  {
  font-family: "Inter", sans-serif; font-size: 13px; color: var(--ink-3); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Featured right-column slot (dark) */
.nav-dd-feature {
  background: var(--ink);
  color: var(--bg);
  padding: 24px;
  margin: -32px -32px -32px 0;
  display: flex; flex-direction: column; justify-content: space-between;
}
.nav-dd-feature .eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-light);
}
.nav-dd-feature-title {
  font-family: "Playfair Display", serif;
  font-size: 22px; line-height: 1.2;
  margin-top: 8px; color: var(--bg);
}
.nav-dd-feature p {
  font-family: "Inter", sans-serif; font-size: 13px;
  opacity: 0.8; margin-top: 10px; line-height: 1.5;
}
.nav-dd-feature .btn { margin-top: 20px; align-self: flex-start; }

/* ── Ticket Office — CSS "ticket" treatment (Tickets & help mega-menu) ──
   Stark black-and-white card with the torn-perforation edge motif
   borrowed from the .concert-ticketcard rail on /concerts. Sits on a
   dark field (.nav-dd-ticket-field) that bleeds to the panel edges
   like the other inverted mega-menu columns.
   The only colour on the card is the accent band at the top and bottom
   edges (2x the height of the perforation cut-outs). Card colours are
   hard-set (not var-driven) so the white/black stays put in both
   themes; the perforation dots track --ink so they punch a true "hole"
   through to the dark field behind in either theme. */
.nav-dd-ticket-field {
  background: var(--ink);
  margin: -32px -32px -32px 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nav-dd-ticket {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  background: #FFFFFF;
  /* --ticket-bar-color is set by nav.js on each menu open (easter egg —
     cycles a six-colour spectrum); --accent is the fallback. */
  border-top: 12px solid var(--ticket-bar-color, var(--accent));
  border-bottom: 12px solid var(--ticket-bar-color, var(--accent));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: border-color 200ms ease;
}
.nav-dd-ticket::before,
.nav-dd-ticket::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  background-image: radial-gradient(
    circle at 7px 6px,
    var(--ink) 0 3px,
    transparent 3.5px
  );
  background-size: 14px 12px;
  background-repeat: repeat-x;
  background-position: center;
  pointer-events: none;
}
.nav-dd-ticket::before { top: -18px; }
.nav-dd-ticket::after  { bottom: -18px; }

.nav-dd-ticket__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #15181C;
}
.nav-dd-ticket__title {
  font-family: "Playfair Display", serif;
  font-size: 22px; line-height: 1.2;
  margin-top: 8px;
  color: #15181C;
}
.nav-dd-ticket__desc {
  font-family: "Inter", sans-serif;
  font-size: 13px; line-height: 1.5;
  margin-top: 10px;
  color: #3A3F47;
}
.nav-dd-ticket__actions {
  display: flex; flex-direction: column; gap: 10px;
}
.nav-dd-ticket__actions .btn { width: 100%; }
.nav-dd-ticket__actions .btn-primary {
  background: #15181C;
  color: #FFFFFF;
  border: 1.5px solid #15181C;
}
.nav-dd-ticket__actions .btn-primary:hover {
  background: #FFFFFF;
  color: #15181C;
}
.nav-dd-ticket__actions .btn-outline {
  background: transparent;
  color: #15181C;
  border: 1.5px solid #15181C;
}
.nav-dd-ticket__actions .btn-outline:hover {
  background: #15181C;
  color: #FFFFFF;
}

/* Right-side actions */
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-user-badge {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy); color: var(--bg-elev);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Inter", sans-serif; font-size: 12px; font-weight: 600;
}
.nav-cart-count {
  background: var(--accent); color: var(--accent-ink);
  border-radius: 999px; padding: 1px 8px; font-size: 12px; margin-left: 4px;
  font-family: "Inter", sans-serif; font-weight: 600;
}

/* Header cart trigger (the <a> in .nav-actions that opens the slide-out).
   Distinct from .mini-cart, which styles the slide-out panel itself. */
.nav-cart-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink); text-decoration: none;
  padding: 6px 10px; border-radius: 4px;
  font-family: "Inter", sans-serif; font-size: 14px; font-weight: 500;
  line-height: 1; cursor: pointer;
  transition: background-color 120ms ease;
}
.nav-cart-trigger:hover,
.nav-cart-trigger:focus-visible {
  background: color-mix(in oklab, var(--ink) 8%, transparent);
}
.nav-cart-icon { font-size: 18px; line-height: 1; }
.nav-cart-trigger [data-cart-count] {
  background: var(--accent); color: var(--accent-ink);
  border-radius: 999px; padding: 1px 7px;
  font-size: 11px; font-weight: 700; line-height: 1.4;
  min-width: 18px; text-align: center;
}
.nav-cart-trigger [data-cart-count][hidden] { display: none; }
.nav-label { display: inline; }
.nav-cart-short { display: none; }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 2px;
  border: 1.5px solid var(--rule-2);
  background: transparent;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-burger span { display: flex; flex-direction: column; gap: 4px; }
.nav-burger span span { width: 20px; height: 2px; background: var(--ink); display: block; }

/* Mobile drawer */
.nav-drawer {
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--bg); border-top: 1px solid var(--rule);
  overflow-y: auto; z-index: 49;
  display: none;
}
.nav-drawer.open { display: block; }
.nav-drawer-inner { padding: 12px 18px 120px; }
.nav-drawer-item { border-bottom: 1px solid var(--rule); }
.nav-drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left; padding: 20px 4px;
  font-family: "Playfair Display", serif; font-size: 24px; font-weight: 500;
  color: var(--ink);
  background: none; border: none; cursor: pointer;
}
.nav-drawer-plus {
  font-size: 20px; color: var(--ink-3);
  font-family: "Inter", sans-serif;
  transition: transform 200ms;
}
.nav-drawer-item[data-open="true"] .nav-drawer-plus { transform: rotate(45deg); }
.nav-drawer-sub { display: none; padding: 0 4px 20px; }
.nav-drawer-item[data-open="true"] .nav-drawer-sub { display: block; }

/* Breakpoints */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-utility { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-label { display: none; }
  .nav-cart-short { display: inline; }
  .nav-main { padding: 12px 18px; gap: 10px; }
  .logo-lockup img { height: 44px; }
  .logo-lockup .wordmark { font-size: 14px; }
}

/* =================== FOOTER =================== */
.cas-footer {
  background: var(--bg-sunken);
  border-top: 1px solid var(--rule);
  padding: 72px 0 40px;
  margin-top: 0;
}
.cas-footer .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .footer-logo img { height: 56px; width: auto; display: block; }
.footer-brand .footer-logo .wordmark {
  font-size: 18px;
}
.footer-blurb {
  margin-top: 20px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.6;
  max-width: 340px;
  font-family: "Inter", sans-serif;
}
.footer-seal { width: 90px; height: auto; margin-top: 20px; display: block; }
.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  padding: 6px 0;
  color: var(--ink-2);
}
.footer-col ul li a { color: var(--ink-2); text-decoration: none; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col.plain ul li { color: var(--ink-3); }
.footer-legal {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-4);
  font-family: "Inter", sans-serif;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =================== NEWSLETTER (Symphon-e) ===================
   Shared by the footer band and the home-page strip.
   The form is injected by Constant Contact's signup-form-widget
   into <div class="ctct-inline-form">, which creates a DOM like:
     .ctct-inline-form
       .ctct-form-embed .form_0
         .ctct-form-defaults
           form.ctct-form-custom
             .ctct-form-field          (one per input)
               .ctct-form-label
               .ctct-form-element      (the input)
             .ctct-form-button
   We re-skin that injected markup with highly-specific selectors
   (.cas-newsletter-wrap ...) and !important where needed to
   override CC's own !important rules.
   ============================================================ */

/* Footer band */
.footer-newsletter {
  background: var(--bg-sunken, #F3EDE2);
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 56px 0;
}
.footer-newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px; align-items: center;
}
.footer-newsletter-copy .eyebrow { color: var(--accent); }
.footer-newsletter-copy h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 500;
  font-size: 30px; line-height: 1.15;
  color: var(--ink);
  margin: 10px 0 14px;
  text-wrap: pretty;
}
.footer-newsletter-copy p {
  font-family: "Inter", sans-serif;
  font-size: 15px; line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 46ch;
}

/* Home-page strip */
.home-newsletter {
  background: var(--bg);
  padding: 96px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.home-newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 72px; align-items: center;
}
.home-newsletter-copy .eyebrow { color: var(--accent); }
.home-newsletter-copy h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  font-size: 44px; line-height: 1.1;
  color: var(--ink);
  margin: 10px 0 18px;
  text-wrap: pretty;
  letter-spacing: -0.01em;
}
.home-newsletter-copy p {
  font-family: "Inter", sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--ink-2);
  margin: 0; max-width: 52ch;
}

/* ---- Re-skin the injected Constant Contact form ---- */
.cas-newsletter-wrap { width: 100%; }

/* Kill CC's dark wrapper background and its padding */
.cas-newsletter-wrap .ctct-form-embed,
.cas-newsletter-wrap .ctct-form-embed.form_0 {
  background: transparent !important;
}
.cas-newsletter-wrap .ctct-form-embed .ctct-form-defaults,
.cas-newsletter-wrap .ctct-form-embed.form_0 .ctct-form-defaults {
  background: transparent !important;
  padding: 0 !important;
  color: var(--ink) !important;
}
.cas-newsletter-wrap .ctct-form-custom {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--ink) !important;
}

/* Hide CC's own header/description — our surrounding copy replaces it */
.cas-newsletter-wrap .ctct-form-header,
.cas-newsletter-wrap .ctct-form-text {
  display: none !important;
}

/* Lay the form fields out in a horizontal row on desktop */
.cas-newsletter-wrap .ctct-form-custom {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr auto;
  grid-auto-rows: auto;
  gap: 12px;
  align-items: end;
}
.cas-newsletter-wrap .ctct-form-field {
  margin: 0 !important;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
/* Field labels → match our small-caps label style */
.cas-newsletter-wrap .ctct-form-label {
  font-family: "Inter", sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--ink-3) !important;
  margin-bottom: 6px !important;
  padding: 0 !important;
  background: transparent !important;
}
.cas-newsletter-wrap .ctct-form-required::after {
  content: " *";
  color: var(--accent);
}

/* The inputs — override CC's inline !important with our own */
.cas-newsletter-wrap .ctct-form-element {
  height: 46px !important;
  padding: 10px 14px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  color: var(--ink) !important;
  background: var(--bg) !important;
  border: 1px solid var(--rule) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  width: 100% !important;
  transition: border-color 150ms, box-shadow 150ms !important;
  display: block !important;
}
.cas-newsletter-wrap .ctct-form-element:focus {
  outline: none !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent) !important;
}

/* Submit button — full accent style */
.cas-newsletter-wrap .ctct-form-button {
  height: 46px !important;
  padding: 0 22px !important;
  background: var(--accent) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: background 150ms !important;
  align-self: end;
  min-width: 120px;
}
.cas-newsletter-wrap .ctct-form-button:hover {
  background: color-mix(in srgb, var(--accent) 88%, #000) !important;
}

/* GDPR / legal text */
.cas-newsletter-wrap #gdpr_text,
.cas-newsletter-wrap .ctct-gdpr-text {
  grid-column: 1 / -1;
  font-family: "Inter", sans-serif !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: var(--ink-4) !important;
  margin: 14px 0 0 !important;
  max-width: 72ch;
}
.cas-newsletter-wrap .ctct-form-footer-link {
  color: var(--ink-3) !important;
  text-decoration: underline !important;
}

/* Error + success messages */
.cas-newsletter-wrap .ctct-form-error,
.cas-newsletter-wrap .ctct-form-errorMessage {
  grid-column: 1 / -1;
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  color: #B42318 !important;
  margin: 4px 0 0 !important;
}
.cas-newsletter-wrap .ctct-form-success {
  grid-column: 1 / -1;
  background: color-mix(in srgb, #2E7D32 8%, var(--bg)) !important;
  border: 1px solid color-mix(in srgb, #2E7D32 30%, transparent) !important;
  padding: 16px !important;
  border-radius: 4px !important;
  font-family: "Inter", sans-serif !important;
  color: var(--ink) !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-newsletter-inner,
  .home-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-newsletter { padding: 72px 0; }
  .home-newsletter-copy h2 { font-size: 34px; }
}
@media (max-width: 680px) {
  .cas-newsletter-wrap .ctct-form-custom {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .cas-newsletter-wrap .ctct-form-button { width: 100%; }
  .footer-newsletter { padding: 40px 0; }
  .footer-newsletter-copy h3 { font-size: 24px; }
  .home-newsletter { padding: 56px 0; }
  .home-newsletter-copy h2 { font-size: 28px; }
}
