/* ============================================================
   PureForm Naturals — Child Theme Main CSS
   style-main.css
   All design tokens, typography, layout, and component styles.
   Loaded after Astra parent + after Customizer CSS.
   Do NOT edit parent theme files. Edit this file only.
   ============================================================ */

/* ── 1. DESIGN TOKENS ────────────────────────────────────────
   Single source of truth for every color, font, radius, spacing.
   Reference these variables everywhere — never hardcode hex values.
   ─────────────────────────────────────────────────────────── */
:root {
  /* Color palette */
  --pf-navy:     #1a3a4a;
  --pf-ocean:    #2e6a8a;
  --pf-mineral:  #6aaec8;
  --pf-mist:     #b8d8e8;
  --pf-foam:     #e8eff4;
  --pf-sand:     #f5efe6;
  --pf-white:    #fdfcfa;
  --pf-gold:     #c4a97a;
  --pf-gold-dk:  #a0844e;
  --pf-ink:      #0f2333;
  --pf-slate:    #3a5a6a;
  --pf-haze:     #8aacbc;
  --pf-pale:     rgba(15,35,51,.55);

  /* Typography */
  --pf-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --pf-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --pf-mono:    'DM Mono', 'SF Mono', 'Fira Mono', monospace;

  /* Spacing rhythm */
  --pf-sp-xs:  8px;
  --pf-sp-sm:  16px;
  --pf-sp-md:  24px;
  --pf-sp-lg:  40px;
  --pf-sp-xl:  64px;
  --pf-sp-2xl: 88px;

  /* Border radius — editorial: tight corners, no pill shapes */
  --pf-r-btn:  3px;
  --pf-r-card: 6px;
  --pf-r-badge:3px;
  --pf-r-input:3px;

  /* Shadows */
  --pf-shadow-card:  0 2px 12px rgba(15,35,51,.06), 0 1px 3px rgba(15,35,51,.04);
  --pf-shadow-hover: 0 8px 28px rgba(26,58,74,.12), 0 2px 8px rgba(26,58,74,.06);
}

/* ── 2. GLOBAL RESET ─────────────────────────────────────────
   Override Astra's defaults cleanly without !important abuse.
   ─────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family:    var(--pf-body);
  font-weight:    300;
  font-size:      1rem;
  line-height:    1.75;
  color:          var(--pf-slate);
  background:     var(--pf-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── 3. TYPOGRAPHY SCALE ─────────────────────────────────────
   Cormorant Garamond for all headings (display face).
   DM Sans for body, buttons, UI.
   DM Mono for labels, eyebrows, metadata only.
   ─────────────────────────────────────────────────────────── */
h1, h2, h3, .pf-heading {
  font-family:  var(--pf-display);
  color:        var(--pf-ink);
  line-height:  1.12;
  font-weight:  300;
  letter-spacing: -0.01em;
}
/* Only apply margin to non-Elementor headings */
:not(.elementor-widget) > h1,
:not(.elementor-widget) > h2,
:not(.elementor-widget) > h3 {
  margin: 0 0 var(--pf-sp-sm);
}

h4, h5, h6 {
  font-family:  var(--pf-body);
  color:        var(--pf-ink);
  line-height:  1.3;
  font-weight:  600;
  margin:       0 0 var(--pf-sp-xs);
}

h1 { font-size: clamp(2.4rem, 5vw,   4rem);   }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw,   1.8rem); }
h4 { font-size: 1rem;      }
h5 { font-size: 0.9375rem; }
h6 { font-size: 0.875rem;  }

p {
  font-family:  var(--pf-body);
  font-size:    0.9375rem;
  font-weight:  300;
  line-height:  1.75;
  color:        var(--pf-slate);
}
/* Margin only on body content paragraphs, not Elementor widget text */
.entry-content p,
.pf-post-disclosure p,
.pf-medical-disclaimer p {
  margin: 0 0 var(--pf-sp-sm);
}
.entry-content p:last-child { margin-bottom: 0; }

a {
  color:           var(--pf-ocean);
  text-decoration: none;
  transition:      color .18s ease;
}

a:hover { color: var(--pf-navy); }

strong, b {
  font-weight: 600;
  color:       var(--pf-ink);
}

em, i {
  font-style: italic;
}

/* Eyebrow utility class */
.pf-eyebrow {
  display:        block;
  font-family:    var(--pf-mono);
  font-size:      0.6875rem;
  font-weight:    500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color:          var(--pf-gold);
  margin-bottom:  var(--pf-sp-xs);
}

/* ── 4. LAYOUT UTILITIES ─────────────────────────────────────*/
.pf-container {
  max-width:  1160px;
  margin:     0 auto;
  padding:    0 var(--pf-sp-lg);
}

.pf-section {
  padding: var(--pf-sp-xl) var(--pf-sp-lg);
}

.pf-section--tight {
  padding: var(--pf-sp-md) var(--pf-sp-lg);
}

.pf-section--large {
  padding: var(--pf-sp-2xl) var(--pf-sp-lg);
}

/* ── 5. DISCLOSURE BAR ───────────────────────────────────────
   Already rendered by sandbox PHP. Style here only.
   ─────────────────────────────────────────────────────────── */
.pf-disclosure-bar {
  background:    var(--pf-foam);
  border-bottom: 1px solid var(--pf-mist);
  padding:       10px var(--pf-sp-lg);
  text-align:    center;
  font-family:   var(--pf-body);
  font-size:     0.75rem;
  font-weight:   400;
  color:         var(--pf-slate);
  line-height:   1.5;
  position:      relative;
  z-index:       9999;
}

.pf-disclosure-bar a {
  color:           var(--pf-ocean);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pf-disclosure-bar strong {
  font-weight: 600;
  color:       var(--pf-navy);
}

/* ── 6. NAVIGATION ───────────────────────────────────────────
   Override Astra nav defaults to match PureForm brand.
   ─────────────────────────────────────────────────────────── */
.ast-primary-header-bar,
.main-header-bar {
  background:    var(--pf-white) !important;
  border-bottom: 1px solid var(--pf-foam) !important;
  box-shadow:    none !important;
}

.site-header .main-navigation a,
.main-header-bar .main-navigation a,
.ast-primary-menu > li > a {
  font-family:    var(--pf-body) !important;
  font-size:      0.875rem !important;
  font-weight:    400 !important;
  color:          var(--pf-slate) !important;
  letter-spacing: 0.01em !important;
  padding:        0 14px !important;
  transition:     color .18s ease !important;
}

.ast-primary-menu > li > a:hover,
.ast-primary-menu > li.current-menu-item > a {
  color: var(--pf-navy) !important;
}

/* Logo */
.site-logo-img img,
.custom-logo {
  max-height: 48px;
  width:      auto;
}

/* ── 7. BUTTONS ──────────────────────────────────────────────
   Two styles: primary (navy) and ghost (outlined).
   Sharp corners — editorial, not consumer.
   ─────────────────────────────────────────────────────────── */
.pf-btn {
  display:       inline-flex;
  align-items:   center;
  gap:           6px;
  padding:       11px 22px;
  border-radius: var(--pf-r-btn);
  font-family:   var(--pf-body);
  font-size:     0.875rem;
  font-weight:   600;
  cursor:        pointer;
  transition:    background .18s ease, border-color .18s ease, color .18s ease;
  text-decoration: none;
  border:        1.5px solid transparent;
  line-height:   1;
}

.pf-btn--primary {
  background: var(--pf-navy);
  color:      var(--pf-white);
  border-color: var(--pf-navy);
}

.pf-btn--primary:hover {
  background:   var(--pf-ocean);
  border-color: var(--pf-ocean);
  color:        var(--pf-white);
}

.pf-btn--gold {
  background:  var(--pf-gold);
  color:       var(--pf-white);
  border-color:var(--pf-gold);
}

.pf-btn--gold:hover {
  background:   var(--pf-gold-dk);
  border-color: var(--pf-gold-dk);
  color:        var(--pf-white);
}

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

.pf-btn--ghost:hover {
  border-color: var(--pf-navy);
  color:        var(--pf-navy);
}

.pf-btn--ghost-light {
  background:   transparent;
  color:        var(--pf-white);
  border-color: rgba(253,252,250,.3);
}

.pf-btn--ghost-light:hover {
  border-color: var(--pf-white);
}

/* Elementor buttons — align with PureForm style */
.elementor-button {
  border-radius: var(--pf-r-btn) !important;
  font-family:   var(--pf-body) !important;
  font-weight:   600 !important;
  letter-spacing: 0.02em !important;
  transition:    background .18s ease, border-color .18s ease !important;
}

/* ── 8. CARDS ────────────────────────────────────────────────
   Process cards, trust cards, product cards, article cards.
   ─────────────────────────────────────────────────────────── */
.pf-card {
  background:    var(--pf-white);
  border:        1px solid var(--pf-foam);
  border-radius: var(--pf-r-card);
  padding:       var(--pf-sp-md);
  transition:    box-shadow .2s ease, border-color .2s ease;
}

.pf-card:hover {
  box-shadow:   var(--pf-shadow-hover);
  border-color: var(--pf-mist);
}

/* Process step cards */
.pf-step-card {
  background:    var(--pf-white);
  border:        1px solid var(--pf-foam);
  border-radius: var(--pf-r-card);
  padding:       28px 22px;
}

.pf-step-card .step-num {
  font-family:    var(--pf-mono);
  font-size:      0.6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color:          var(--pf-gold);
  display:        block;
  margin-bottom:  var(--pf-sp-xs);
}

.pf-step-card .step-title {
  font-family: var(--pf-body);
  font-size:   0.9375rem;
  font-weight: 600;
  color:       var(--pf-ink);
  margin:      0 0 6px;
  line-height: 1.3;
}

.pf-step-card .step-desc {
  font-size:   0.8125rem;
  font-weight: 300;
  color:       var(--pf-slate);
  line-height: 1.7;
  margin:      0;
}

/* Trust signal cards (dark background) */
.pf-trust-card {
  background:    rgba(14,35,51,.6);
  border:        1px solid rgba(255,255,255,.06);
  padding:       28px 22px;
  transition:    background .2s ease;
}

.pf-trust-card:hover {
  background: rgba(46,106,138,.25);
}

.pf-trust-card h3,
.pf-trust-card h4 {
  font-family:  var(--pf-body);
  font-size:    0.9375rem;
  font-weight:  600;
  color:        var(--pf-white);
  margin-bottom: 8px;
  line-height:  1.3;
}

.pf-trust-card p {
  font-size:   0.8125rem;
  color:       var(--pf-haze);
  line-height: 1.7;
  font-weight: 300;
  margin:      0;
}

/* Product / affiliate cards (Top Picks page) */
.pf-product-card {
  background:    var(--pf-white);
  border:        1px solid var(--pf-mist);
  border-radius: var(--pf-r-card);
  padding:       var(--pf-sp-md);
  display:       flex;
  flex-direction:column;
  gap:           var(--pf-sp-sm);
  transition:    box-shadow .2s ease;
}

.pf-product-card:hover {
  box-shadow: var(--pf-shadow-hover);
}

.pf-product-badge {
  display:        inline-block;
  font-family:    var(--pf-mono);
  font-size:      0.6875rem;
  font-weight:    500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding:        4px 10px;
  border-radius:  var(--pf-r-badge);
}

.pf-product-badge--gold {
  background: #fef3c7;
  color:      #92400e;
}

.pf-product-badge--green {
  background: #d1fae5;
  color:      #065f46;
}

.pf-product-badge--blue {
  background: #dbeafe;
  color:      #1e40af;
}

/* Category cards */
.pf-cat-card {
  background:    var(--pf-white);
  border:        1px solid var(--pf-foam);
  border-radius: var(--pf-r-card);
  padding:       28px var(--pf-sp-sm);
  text-align:    center;
  position:      relative;
  overflow:      hidden;
  transition:    box-shadow .2s ease, border-color .2s ease;
  cursor:        pointer;
}

.pf-cat-card::after {
  content:    '';
  position:   absolute;
  bottom:     0; left: 0; right: 0;
  height:     2px;
  background: var(--pf-ocean);
  transform:  scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.pf-cat-card:hover {
  box-shadow:   var(--pf-shadow-hover);
  border-color: var(--pf-mist);
}

.pf-cat-card:hover::after {
  transform: scaleX(1);
}

/* Article / blog post cards */
.pf-article-card {
  background:    var(--pf-white);
  border:        1px solid var(--pf-foam);
  border-radius: var(--pf-r-card);
  overflow:      hidden;
  transition:    box-shadow .2s ease, transform .2s ease;
}

.pf-article-card:hover {
  box-shadow: var(--pf-shadow-hover);
  transform:  translateY(-2px);
}

.pf-article-card .pf-card-img {
  aspect-ratio: 16/9;
  overflow:     hidden;
  background:   var(--pf-foam);
}

.pf-article-card .pf-card-img img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.pf-article-card:hover .pf-card-img img {
  transform: scale(1.03);
}

.pf-article-card .pf-card-body {
  padding: var(--pf-sp-sm) var(--pf-sp-md) var(--pf-sp-md);
}

.pf-article-tag {
  display:        inline-block;
  font-family:    var(--pf-mono);
  font-size:      0.6875rem;
  font-weight:    500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color:          var(--pf-ocean);
  background:     var(--pf-foam);
  padding:        3px 8px;
  border-radius:  var(--pf-r-badge);
  margin-bottom:  var(--pf-sp-xs);
}

.pf-article-card h3 {
  font-size:     1.0625rem;
  font-weight:   400;
  line-height:   1.35;
  margin-bottom: 8px;
}

.pf-article-meta {
  font-family: var(--pf-mono);
  font-size:   0.6875rem;
  color:       var(--pf-haze);
  display:     flex;
  gap:         12px;
}

/* ── 9. FORMS ────────────────────────────────────────────────
   WPForms overrides to match PureForm brand.
   ─────────────────────────────────────────────────────────── */
.wpforms-form label.wpforms-field-label {
  font-family:    var(--pf-body) !important;
  font-size:      0.6875rem !important;
  font-weight:    600 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color:          var(--pf-slate) !important;
  margin-bottom:  5px !important;
}

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form textarea,
.wpforms-form select {
  width:       100% !important;
  padding:     11px 14px !important;
  border:      1.5px solid var(--pf-mist) !important;
  border-radius: var(--pf-r-input) !important;
  font-family: var(--pf-body) !important;
  font-size:   0.9375rem !important;
  font-weight: 300 !important;
  color:       var(--pf-ink) !important;
  background:  var(--pf-sand) !important;
  outline:     none !important;
  box-shadow:  none !important;
  transition:  border-color .18s ease, background .18s ease !important;
  appearance:  none !important;
}

.wpforms-form input:focus,
.wpforms-form textarea:focus {
  border-color: var(--pf-ocean) !important;
  background:   var(--pf-white) !important;
}

.wpforms-form .wpforms-submit-container {
  margin-top: var(--pf-sp-xs) !important;
}

.wpforms-form button[type="submit"],
.wpforms-form input[type="submit"] {
  width:          100% !important;
  background:     var(--pf-navy) !important;
  color:          var(--pf-white) !important;
  border:         1.5px solid var(--pf-navy) !important;
  border-radius:  var(--pf-r-btn) !important;
  padding:        13px var(--pf-sp-md) !important;
  font-family:    var(--pf-body) !important;
  font-size:      0.9375rem !important;
  font-weight:    600 !important;
  letter-spacing: .02em !important;
  cursor:         pointer !important;
  transition:     background .18s ease !important;
}

.wpforms-form button[type="submit"]:hover {
  background: var(--pf-ocean) !important;
  border-color: var(--pf-ocean) !important;
}

.wpforms-confirmation-container-full {
  background:    var(--pf-foam) !important;
  border:        1px solid var(--pf-mist) !important;
  border-radius: var(--pf-r-card) !important;
  padding:       20px 24px !important;
  color:         var(--pf-ink) !important;
  font-size:     0.9375rem !important;
  line-height:   1.65 !important;
}

.wpforms-form .wpforms-field-error {
  font-size:   0.75rem !important;
  color:       #c0392b !important;
  margin-top:  4px !important;
}

/* ── 10. ICON LIST ───────────────────────────────────────────
   Elementor icon list widget overrides.
   ─────────────────────────────────────────────────────────── */
.elementor-icon-list-item .elementor-icon-list-text {
  font-family: var(--pf-body);
  font-size:   0.875rem;
  font-weight: 300;
  line-height: 1.6;
}

/* ── 11. BLOG / ARTICLE BODY ─────────────────────────────────
   Styles for post content area on single post pages.
   Applied to .entry-content and .post-content.
   ─────────────────────────────────────────────────────────── */
.entry-content {
  font-family: var(--pf-body);
  font-size:   1rem;
  font-weight: 300;
  line-height: 1.8;
  color:       var(--pf-slate);
  max-width:   720px;
}

.entry-content h2 {
  font-family:  var(--pf-display);
  font-size:    clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight:  400;
  color:        var(--pf-navy);
  margin:       2rem 0 0.75rem;
  line-height:  1.2;
}

.entry-content h3 {
  font-family: var(--pf-display);
  font-size:   clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 400;
  color:       var(--pf-navy);
  margin:      1.5rem 0 0.5rem;
}

.entry-content p {
  margin-bottom: 1.3rem;
  color:         var(--pf-slate);
}

.entry-content a {
  color:           var(--pf-ocean);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content blockquote {
  border-left:  3px solid var(--pf-gold);
  padding-left: var(--pf-sp-sm);
  margin:       var(--pf-sp-md) 0;
  font-family:  var(--pf-display);
  font-size:    1.1rem;
  font-style:   italic;
  font-weight:  300;
  color:        var(--pf-navy);
  line-height:  1.7;
}

.entry-content ul,
.entry-content ol {
  padding-left: var(--pf-sp-md);
  margin-bottom: var(--pf-sp-sm);
}

.entry-content li {
  margin-bottom: 6px;
  line-height:   1.65;
}

/* Inline affiliate disclosure box */
.pf-post-disclosure {
  background:   var(--pf-foam);
  border:       1px solid var(--pf-mist);
  border-left:  3px solid var(--pf-ocean);
  border-radius:0 var(--pf-r-card) var(--pf-r-card) 0;
  padding:      12px 16px;
  margin:       0 0 var(--pf-sp-md);
  font-size:    0.8125rem;
  color:        var(--pf-slate);
  line-height:  1.6;
}

/* Medical disclaimer at post bottom */
.pf-medical-disclaimer {
  background:   var(--pf-sand);
  border:       1px solid rgba(196,169,122,.3);
  border-radius:var(--pf-r-card);
  padding:      16px 20px;
  margin-top:   var(--pf-sp-xl);
  font-size:    0.8125rem;
  color:        var(--pf-pale);
  line-height:  1.65;
}

/* ── 12. FOOTER ──────────────────────────────────────────────
   Override Astra footer defaults.
   ─────────────────────────────────────────────────────────── */
#colophon,
.site-footer,
.footer-widget-area {
  background: var(--pf-ink) !important;
  color:      rgba(253,252,250,.4) !important;
}

.footer-widget-area .widget-title {
  font-family:    var(--pf-mono) !important;
  font-size:      0.6875rem !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color:          rgba(253,252,250,.3) !important;
  margin-bottom:  var(--pf-sp-sm) !important;
}

.footer-widget-area a {
  color:      rgba(253,252,250,.4) !important;
  font-size:  0.8125rem !important;
  font-weight:300 !important;
  transition: color .18s ease !important;
}

.footer-widget-area a:hover {
  color: var(--pf-white) !important;
}

.ast-small-footer,
.footer-bar-wrap {
  background:  var(--pf-ink) !important;
  border-top:  1px solid rgba(255,255,255,.06) !important;
}

.ast-small-footer .ast-footer-copyright,
.footer-bar-wrap p {
  font-family:    var(--pf-mono) !important;
  font-size:      0.6875rem !important;
  color:          rgba(253,252,250,.2) !important;
  letter-spacing: .04em !important;
}

/* ── 13. SECTION BACKGROUNDS ─────────────────────────────────
   Utility classes for alternating section colors.
   Reference via Elementor's Custom CSS class field.
   ─────────────────────────────────────────────────────────── */
.pf-bg-navy   { background: var(--pf-navy)  !important; }
.pf-bg-ocean  { background: var(--pf-ocean) !important; }
.pf-bg-foam   { background: var(--pf-foam)  !important; }
.pf-bg-sand   { background: var(--pf-sand)  !important; }
.pf-bg-white  { background: var(--pf-white) !important; }
.pf-bg-ink    { background: var(--pf-ink)   !important; }

/* Text color utilities for dark backgrounds */
.pf-on-dark h1, .pf-on-dark h2, .pf-on-dark h3 { color: var(--pf-white);   }
.pf-on-dark h4, .pf-on-dark h5, .pf-on-dark h6 { color: var(--pf-white);   }
.pf-on-dark p   { color: var(--pf-haze);   }
.pf-on-dark em  { color: var(--pf-mineral); }
.pf-on-dark .pf-eyebrow { color: var(--pf-gold); }

/* ── 14. TRUST TICKER STRIP ──────────────────────────────────
   Ocean-blue strip below hero.
   ─────────────────────────────────────────────────────────── */
.pf-trust-strip {
  background:   var(--pf-ocean);
  padding:      12px var(--pf-sp-lg);
  display:      flex;
  flex-wrap:    wrap;
  gap:          var(--pf-sp-lg);
  align-items:  center;
  justify-content: center;
}

.pf-trust-strip-item {
  font-family:    var(--pf-body);
  font-size:      0.75rem;
  font-weight:    600;
  color:          rgba(253,252,250,.85);
  display:        flex;
  align-items:    center;
  gap:            6px;
  white-space:    nowrap;
}

.pf-trust-strip-item::before {
  content:     '✓';
  color:       var(--pf-gold);
  font-weight: 700;
  font-size:   0.875rem;
}

/* ── 15. ELEMENTOR GLOBAL OVERRIDES ──────────────────────────
   Fix Elementor defaults that conflict with our design system.
   ─────────────────────────────────────────────────────────── */

/* Ensure all Elementor text inherits from our type system */
.elementor-widget-heading .elementor-heading-title {
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* Elementor section default padding reset */
.elementor-section.elementor-section-boxed > /* .elementor-container max-width handled by Elementor internally */

/* Widget spacing managed by Elementor gap settings per section */

/* ── 16. RESPONSIVE ──────────────────────────────────────────
   Mobile-first overrides. Test at 375px, 768px, 1024px.
   ─────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  :root {
    --pf-sp-xl:  48px;
    --pf-sp-2xl: 64px;
  }
}

@media (max-width: 767px) {
  :root {
    --pf-sp-lg:  20px;
    --pf-sp-xl:  40px;
    --pf-sp-2xl: 56px;
  }

  .pf-trust-strip {
    gap: 16px;
    padding: 12px 20px;
  }

  .pf-disclosure-bar {
    font-size: 0.6875rem;
    padding:   8px 16px;
  }

  .entry-content {
    max-width: 100%;
  }

  /* Stack Elementor rows on mobile */
  .elementor-column-gap-default .elementor-column {
    padding: 0 8px;
  }
}

/* ── 17. PRINT ───────────────────────────────────────────────*/
@media print {
  .pf-disclosure-bar,
  .pf-trust-strip,
  nav,
  #colophon { display: none; }

  body {
    font-size: 12pt;
    color:     #000;
  }
}

/* ── 18. ACCESSIBILITY ───────────────────────────────────────*/
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration:   .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration:  .01ms !important;
    scroll-behavior:      auto !important;
  }
}

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



/* Top-level containers must always fill full page width */
.elementor-section-wrap > .e-con,
.elementor > .elementor-inner > .e-con,
body .elementor > .e-con {
  --width: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  flex-shrink: 0 !important;
  flex-grow: 1 !important;
}

/* ==========================================================
   LAYOUT FIX: Remove Astra ast-container width constraint
   on Elementor full-width page template.
   Astra inlines max-width:1240px on .ast-container which
   boxes in all Elementor sections on page-builder pages.
   ========================================================== */

/* On Elementor page-builder pages, remove Astra container constraints */
body.ast-page-builder-template #content > .ast-container,
body.elementor-template-full-width #content > .ast-container,
body.elementor-template-header-footer #content > .ast-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    display: block !important;
}

/* The Elementor page div must also be full width */
body.ast-page-builder-template .elementor,
body.elementor-template-full-width .elementor {
    width: 100% !important;
    max-width: 100% !important;
}

/* site-content must not constrain width either */
body.ast-page-builder-template .site-content,
body.elementor-template-full-width .site-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

/* site-content #primary must be full width (elementor_header_footer removes it,
   but if it exists do not let it constrain) */
body.ast-page-builder-template .site-content #primary,
body.elementor-template-full-width .site-content #primary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
