/* ==========================================================================
   Base: reset, typography, links, focus, prose
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nc-header-bar, var(--nc-header-h)) + 1rem); } /* Bricks sets 62.5%; the design system is rem-based on 16px */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--nc-bg);
  color: var(--nc-text);
  font-family: var(--nc-font-text);
  font-variant-numeric: lining-nums; /* the display serif (Newsreader) defaults to old-style figures; prices, dates and phone numbers read as lining figures everywhere */
  font-size: var(--nc-text-md);
  line-height: var(--nc-leading-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
img { font-style: italic; background-color: var(--nc-sand-100); } /* alt text shows nicely while loading */
.nc-header img, .nc-footer img, .nc-logo img, img[src*="logo"] { background-color: transparent; } /* transparent brand marks on navy */
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--nc-line); margin: var(--nc-space-8) 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
address { font-style: normal; }
::selection { background: var(--nc-orange-100); color: var(--nc-navy-900); }

h1, h2, h3, h4, .nc-h1, .nc-h2, .nc-h3, .nc-h4 {
  font-family: var(--nc-font-display);
  font-weight: 600;
  line-height: var(--nc-leading-snug);
  letter-spacing: var(--nc-tracking-tight);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1, .nc-h1 { font-size: var(--nc-h1); line-height: var(--nc-leading-tight); }
h2, .nc-h2 { font-size: var(--nc-h2); line-height: 1.1; }
h3, .nc-h3 { font-size: var(--nc-h3); }
h4, .nc-h4 { font-size: var(--nc-h4); font-family: var(--nc-font-text); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 var(--nc-stack); }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 600; }
small, .nc-small { font-size: var(--nc-text-sm); }
a { color: var(--nc-link); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--nc-orange-600); }
.nc-on-dark a:not([class]) { color: var(--nc-link-on-dark); }
/* Focus ring: navy on light backgrounds, peach on navy (each ≥ 3:1 against its background — WCAG 1.4.11) */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--nc-navy-800); outline-offset: 3px; border-radius: var(--nc-radius-sm); box-shadow: 0 0 0 3px #fff;
}
.nc-on-dark :focus-visible, .nc-header :focus-visible, .nc-footer :focus-visible, .nc-hero :focus-visible, .nc-home-hero :focus-visible, .nc-cta :focus-visible, .nc-section--dark :focus-visible, .nc-card--dark :focus-visible, .bricks-mobile-menu-wrapper :focus-visible, .nc-mobile-nav :focus-visible, .nc-sticky-bar :focus-visible {
  outline-color: var(--nc-focus); box-shadow: 0 0 0 3px var(--nc-navy-900);
}
/* A fixed bottom bar must not cover the element that just received keyboard focus (WCAG 2.2 SC 2.4.11) */
@media (max-width: 47.99em) { html:has(.nc-sticky-bar) { scroll-padding-bottom: 5.5rem; } }
.nc-skip { position: absolute; left: var(--nc-space-4); top: -100px; z-index: 1000; background: var(--nc-navy-900); color: #fff; padding: .75rem 1rem; border-radius: var(--nc-radius); text-decoration: none; }
.nc-skip:focus { top: var(--nc-space-4); }
.nc-visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

