/**
 * The Holy Wife — extras.css
 *
 * Custom CSS that goes beyond what theme.json supports:
 *  - Nav scroll behavior + dark variant
 *  - Card hover transforms
 *  - Section dividers, labels, badges, tags
 *  - Fade-in animations
 *  - Responsive padding overrides
 *
 * theme.json owns colors/typography/spacing tokens. This file owns motion
 * and interaction polish.
 */

/* ── ROOT TOKENS (mirrored from theme.json for use in this file) ── */
:root {
  --thw-cream:      #F2E9E4;
  --thw-cream-dark: #E8DDD6;
  --thw-black:      #08090A;
  --thw-navy:       #2F3E55;
  --thw-blue:       #5F7590;
  --thw-light-blue: #E0E9F5;
  --thw-sage:       #DDE4DD;
  --thw-gold:       #C8A96E;
  --thw-muted:      #7A7A78;
}

/* ── GLOBAL ── */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* Pages with a hero handle their own top padding.
   Pages WITHOUT a hero (Shop, generic pages) need padding so the
   fixed nav doesn't overlap content. */
.page:not(.home) main > .wp-block-group:first-child:not(.thw-hero--home):not(.ab-hero):not(.ev-hero):not(.thw-coming-soon) {
  padding-top: 7rem;
}
/* Coming-soon hero has its own padding */
.thw-coming-soon { padding-top: 0; }

/* ── HERO (navy full-viewport with gradient glow + grain texture) ── */
.thw-hero--home {
  min-height: 100vh;
  background: var(--thw-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 5rem 5rem;
}
.thw-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 40%, rgba(95,117,144,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(242,233,228,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.thw-hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}
.thw-hero__inner {
  position: relative; z-index: 1;
  max-width: 720px; text-align: center;
}
.thw-hero__label {
  color: rgba(95,117,144,0.8) !important;
  margin-bottom: 1.5rem;
}
.thw-hero__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.8rem, 7vw, 5.5rem) !important;
  color: var(--thw-cream) !important;
  margin-bottom: 1.5rem;
}
.thw-hero__title em {
  font-style: italic;
  color: rgba(95,117,144,0.85);
}
.thw-hero__sub {
  font-family: 'Libre Baskerville', serif !important;
  font-size: 1rem !important;
  color: rgba(242,233,228,0.55) !important;
  max-width: 460px;
  margin: 0 auto 2.5rem;
}
.thw-hero__actions .wp-block-button__link {
  transition: all 0.25s;
}
.thw-btn-primary .wp-block-button__link {
  background: var(--thw-navy) !important;
  color: var(--thw-cream) !important;
  border: 1px solid rgba(242,233,228,0.4);
}
.thw-btn-primary .wp-block-button__link:hover {
  background: var(--thw-blue) !important;
}
.thw-btn-ghost-light .wp-block-button__link {
  background: transparent !important;
  color: var(--thw-cream) !important;
  border: 1px solid rgba(242,233,228,0.4) !important;
}
.thw-btn-ghost-light .wp-block-button__link:hover {
  background: rgba(242,233,228,0.12) !important;
  border-color: rgba(242,233,228,0.7) !important;
}

/* Hero scroll indicator */
.thw-hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 1;
}
.thw-hero__scroll p {
  color: rgba(242,233,228,0.3) !important;
}
.thw-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(242,233,228,0.3), transparent);
  animation: thw-scroll-pulse 2s infinite;
}
@keyframes thw-scroll-pulse { 0%,100%{opacity:0.3} 50%{opacity:0.8} }

/* ── AQUINAS QUOTE BAND ── */
.thw-aquinas {
  background: var(--thw-navy);
  padding: 2.5rem 5rem;
  border-bottom: 1px solid rgba(95,117,144,0.2);
}
.thw-aquinas__inner {
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.thw-aquinas__cross {
  font-size: 1rem;
  color: rgba(95,117,144,0.5);
  flex-shrink: 0;
}
.thw-aquinas__text { text-align: center; }
.thw-aquinas__quote {
  font-family: 'Libre Baskerville', serif !important;
  font-style: italic;
  font-size: clamp(0.82rem, 1.4vw, 0.98rem) !important;
  color: rgba(242,233,228,0.75) !important;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.thw-aquinas__attr {
  font-size: 0.6rem !important;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(95,117,144,0.6) !important;
  margin-top: 0.5rem;
  font-weight: 400;
}

/* ── PILLARS (4-card grid) ── */
.thw-pillars {
  padding: 6rem 5rem;
  background: var(--thw-cream);
}
.thw-pillars__header { text-align: center; margin-bottom: 3.5rem; }
.thw-pillars__sub {
  font-family: 'Libre Baskerville', serif !important;
  color: var(--thw-muted) !important;
  font-size: 0.9rem !important;
}
.thw-pillar {
  background: white;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(95,117,144,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.thw-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(47,62,85,0.09);
}
.thw-pillar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--thw-light-blue), var(--thw-blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.thw-pillar:hover::after { transform: scaleX(1); }
.thw-pillar__icon { font-size: 1.5rem; margin-bottom: 1rem; }
.thw-pillar__title {
  font-size: 1.1rem !important;
  color: var(--thw-navy) !important;
  margin-bottom: 0.6rem;
}
.thw-pillar__desc {
  font-size: 0.8rem !important;
  color: var(--thw-muted) !important;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.thw-pillar__link {
  font-size: 0.62rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.thw-pillar__link a {
  color: var(--thw-blue);
  display: flex; align-items: center; gap: 0.4rem;
}
.thw-pillar__link a:hover { color: var(--thw-navy); }

/* ── LABEL (the small uppercase tag used as section eyebrows) ── */
.label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--thw-blue);
  margin-bottom: 0.85rem;
}

/* ── SECTION DIVIDER ── */
.thw-divider {
  padding: 3.5rem 0;
}
.thw-divider__ornament {
  position: relative;
  display: inline-block;
  padding: 0 1.5rem;
  font-size: 0.75rem;
  color: var(--thw-blue);
  opacity: 0.55;
}
.thw-divider__ornament::before,
.thw-divider__ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 220px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(95,117,144,0.22), transparent);
}
.thw-divider__ornament::before { right: 100%; }
.thw-divider__ornament::after  { left: 100%; }

/* ── NAV ── */
.thw-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.1rem 3.5rem;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
/* Home page: nav starts transparent over dark hero, light text */
.home .thw-nav,
body.home .thw-nav {
  background: transparent;
}
.home .thw-nav .wp-block-navigation a,
.home .thw-nav .wp-block-navigation-item a,
.home .thw-nav .thw-nav__logo a,
.home .thw-nav .wp-block-site-title a,
.home .thw-nav .wp-block-site-logo a {
  color: var(--thw-cream) !important;
  opacity: 0.75;
}
.home .thw-nav .wp-block-navigation-item a:hover { opacity: 1; }
.home .thw-nav .thw-nav__cta .wp-block-button__link {
  background: rgba(242,233,228,0.15) !important;
  color: var(--thw-cream) !important;
  opacity: 1;
}
.home .thw-nav .thw-nav__cta .wp-block-button__link:hover {
  background: rgba(242,233,228,0.25) !important;
}

/* Scrolled state: cream blur on all pages */
.thw-nav.is-scrolled {
  background: rgba(242,233,228,0.94) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(95,117,144,0.12);
  padding: 0.8rem 3.5rem;
}
.thw-nav.is-scrolled .wp-block-navigation a,
.thw-nav.is-scrolled .wp-block-navigation-item a,
.thw-nav.is-scrolled .thw-nav__logo a,
.thw-nav.is-scrolled .wp-block-site-title a {
  color: var(--thw-navy) !important;
  opacity: 0.65 !important;
}
.thw-nav.is-scrolled .wp-block-navigation-item a:hover { opacity: 1 !important; }
.thw-nav.is-scrolled .thw-nav__cta .wp-block-button__link {
  background: var(--thw-navy) !important;
  color: var(--thw-cream) !important;
  opacity: 1 !important;
}

/* Dark nav variant (Mission page) */
.page-dark .thw-nav {
  background: rgba(47,62,85,0.92);
  backdrop-filter: blur(12px);
}
.page-dark .thw-nav .wp-block-navigation a,
.page-dark .thw-nav .thw-nav__logo a { color: var(--thw-cream) !important; }

.thw-nav__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
}
.thw-nav__logo a {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--thw-navy);
}

/* ══════════════════════════════════════════════════════════════ */
/* WORDPRESS NAVIGATION BLOCK OVERRIDES                         */
/* Forces inline links on desktop, styled overlay on mobile     */
/* ══════════════════════════════════════════════════════════════ */

/* ── DESKTOP (>900px): force inline horizontal links ── */
@media (min-width: 901px) {
  /* Show the responsive container as inline, not overlay */
  .wp-block-navigation__responsive-container {
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  .wp-block-navigation__responsive-dialog {
    position: static !important;
    width: auto !important;
    max-width: none !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  .wp-block-navigation__responsive-container .wp-block-navigation__container {
    display: flex !important;
    flex-direction: row !important;
    gap: 2.25rem;
    align-items: center;
  }
  /* Style each nav link */
  .wp-block-navigation .wp-block-navigation-item a {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    font-weight: 400 !important;
    color: var(--thw-navy) !important;
    opacity: 0.65;
    transition: opacity 0.2s;
    text-decoration: none !important;
  }
  .wp-block-navigation .wp-block-navigation-item a:hover,
  .wp-block-navigation .wp-block-navigation-item.current-menu-item a {
    opacity: 1;
  }
  /* Hide hamburger + close on desktop */
  .wp-block-navigation__responsive-container-open,
  .wp-block-navigation__responsive-container-close {
    display: none !important;
  }
}

/* ── MOBILE (<900px): hamburger + styled overlay ── */
@media (max-width: 900px) {
  /* Hide CTA button on mobile */
  .thw-nav__cta-wrap { display: none !important; }

  /* Hamburger button: 3 lines */
  .wp-block-navigation__responsive-container-open {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 20px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    position: relative;
  }
  .wp-block-navigation__responsive-container-open svg {
    display: none !important;
  }
  .wp-block-navigation__responsive-container-open::before,
  .wp-block-navigation__responsive-container-open::after {
    content: '';
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--thw-navy);
    transition: all 0.3s;
  }
  /* Middle line via box-shadow on ::before */
  .wp-block-navigation__responsive-container-open::before {
    box-shadow: 0 6.5px 0 var(--thw-navy);
  }
  /* Light hamburger on dark hero */
  .home .wp-block-navigation__responsive-container-open::before,
  .home .wp-block-navigation__responsive-container-open::after {
    background: var(--thw-cream);
  }
  .home .wp-block-navigation__responsive-container-open::before {
    box-shadow: 0 6.5px 0 var(--thw-cream);
  }
  /* Scrolled: dark hamburger */
  .thw-nav.is-scrolled .wp-block-navigation__responsive-container-open::before,
  .thw-nav.is-scrolled .wp-block-navigation__responsive-container-open::after {
    background: var(--thw-navy) !important;
  }
  .thw-nav.is-scrolled .wp-block-navigation__responsive-container-open::before {
    box-shadow: 0 6.5px 0 var(--thw-navy) !important;
  }

  /* Overlay menu when open */
  .wp-block-navigation__responsive-container.is-menu-open {
    background: rgba(242,233,228,0.97) !important;
    backdrop-filter: blur(12px);
    padding: 5rem 2rem 2rem !important;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog {
    background: transparent !important;
    padding: 0 !important;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  /* Style overlay links */
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: var(--thw-navy) !important;
    padding: 0.9rem 0 !important;
    border-bottom: 1px solid rgba(95,117,144,0.08);
    display: block;
    opacity: 0.7;
    transition: opacity 0.2s;
    text-decoration: none !important;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:last-child a {
    border-bottom: none;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a:hover {
    opacity: 1;
  }

  /* Close button (X) */
  .wp-block-navigation__responsive-container-close {
    position: absolute !important;
    top: 1.2rem !important;
    right: 1.5rem !important;
    background: none !important;
    border: none !important;
    color: var(--thw-navy) !important;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
  }
  .wp-block-navigation__responsive-container-close svg {
    fill: var(--thw-navy) !important;
    width: 20px;
    height: 20px;
  }
}

/* ── COMING SOON ── */
.thw-coming-soon {
  min-height: 80vh;
  background: var(--thw-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 3rem 6rem;
  text-align: center;
}
.thw-coming-soon__icon {
  font-size: 1.5rem !important;
  color: var(--thw-blue) !important;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}
.thw-coming-soon__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  color: var(--thw-navy) !important;
  margin-bottom: 1rem;
  font-weight: 300 !important;
}
.thw-coming-soon__sub {
  font-family: 'Libre Baskerville', serif !important;
  font-style: italic;
  font-size: 0.95rem !important;
  color: var(--thw-muted) !important;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.thw-coming-soon__form { margin: 0 auto; }
.thw-coming-soon__form .mc4wp-form-fields {
  display: flex;
  gap: 0;
  justify-content: center;
}
.thw-coming-soon__form input[type="email"] {
  background: white;
  border: 1px solid rgba(95,117,144,0.25);
  border-right: none;
  padding: 0.85rem 1.2rem;
  font-size: 0.85rem;
  font-family: 'Raleway', sans-serif;
  color: var(--thw-black);
  outline: none;
  width: 260px;
}
.thw-coming-soon__form input[type="email"]:focus { border-color: var(--thw-blue); }
.thw-coming-soon__form input[type="submit"] {
  background: var(--thw-navy);
  color: var(--thw-cream);
  border: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}
.thw-coming-soon__form input[type="submit"]:hover { background: var(--thw-blue); }
.thw-coming-soon__privacy {
  font-size: 0.65rem !important;
  color: var(--thw-muted) !important;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .thw-coming-soon { padding: 8rem 2rem 4rem; }
  .thw-coming-soon__form .mc4wp-form-fields { flex-direction: column; }
  .thw-coming-soon__form input[type="email"] { width: 100%; border-right: 1px solid rgba(95,117,144,0.25); }
}

/* ── PROVERBS BAND (light blue #E0E9F5) ── */
.thw-proverbs {
  background: var(--thw-light-blue);
  padding: 4rem 5rem;
  text-align: center;
  border-top: 1px solid rgba(95,117,144,0.15);
  border-bottom: 1px solid rgba(95,117,144,0.15);
}
.thw-proverbs__cross {
  font-size: 1.2rem !important;
  color: var(--thw-blue) !important;
  opacity: 0.4;
  margin-bottom: 1rem;
}
.thw-proverbs__quote {
  font-family: 'Playfair Display', serif !important;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem) !important;
  color: var(--thw-navy) !important;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.55;
}
.thw-proverbs__ref {
  font-size: 0.65rem !important;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--thw-blue) !important;
  font-weight: 400;
}

/* ── PRODUCTS PREVIEW (home page) ── */
.thw-products {
  padding: 6rem 5rem;
  background: var(--thw-cream);
}
.thw-products__header { margin-bottom: 3rem; }
.thw-products__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  color: var(--thw-navy) !important;
}
.thw-products__grid { gap: 1.25rem !important; }
.thw-product-card__img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.thw-product-card__body { padding: 1.25rem; }
.thw-product-card__name {
  font-family: 'Playfair Display', serif !important;
  font-weight: 400;
  font-size: 0.9rem !important;
  color: var(--thw-navy) !important;
  margin-bottom: 0.3rem;
}
.thw-product-card__price {
  font-size: 0.8rem !important;
  color: var(--thw-muted) !important;
}
.thw-product-card__price--accent { color: var(--thw-blue) !important; }

/* ── EVENT GUIDE TEASER (navy 2-col) ── */
.thw-guide {
  background: var(--thw-navy);
  padding: 5rem;
  position: relative;
  overflow: hidden;
}
.thw-guide__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(95,117,144,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.thw-guide__cols { position: relative; z-index: 1; gap: 5rem !important; }
.thw-guide__text { position: relative; z-index: 1; }
.thw-guide__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  color: var(--thw-cream) !important;
  margin-bottom: 1rem;
}
.thw-guide__title em { font-style: italic; color: rgba(95,117,144,0.8); }
.thw-guide__desc {
  font-family: 'Libre Baskerville', serif !important;
  font-style: italic;
  font-size: 0.88rem !important;
  color: rgba(242,233,228,0.6) !important;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.thw-guide__items { margin-bottom: 2rem; }
.thw-guide__items li {
  font-size: 0.78rem;
  color: rgba(242,233,228,0.7);
  padding: 0.275rem 0;
  list-style: none;
}
.thw-guide__items li::before {
  content: '✦';
  color: var(--thw-blue);
  font-size: 0.55rem;
  margin-right: 0.65rem;
}
.label--light { color: rgba(242,233,228,0.5) !important; }

/* Guide book mockup */
.thw-guide__book {
  background: white;
  width: 240px;
  padding: 2.5rem 2rem;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.3), -5px -5px 20px rgba(242,233,228,0.05);
  text-align: center;
  position: relative;
  margin: 0 auto;
}
.thw-guide__book::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 12px;
  background: linear-gradient(to right, rgba(95,117,144,0.4), rgba(95,117,144,0.05));
}
.thw-guide__free-badge {
  position: absolute; top: -12px; right: -12px;
  background: var(--thw-blue); color: white;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.4rem 0.75rem; font-weight: 500;
  font-family: 'Raleway', sans-serif;
}
.thw-guide__book-title {
  font-family: 'Playfair Display', serif;
  font-weight: 300; font-size: 0.8rem;
  color: var(--thw-navy); line-height: 1.5;
  margin-bottom: 0.5rem;
}
.thw-guide__book-sub {
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--thw-blue); margin-bottom: 1.5rem;
  font-family: 'Raleway', sans-serif;
}
.thw-guide__book-lines { display: flex; flex-direction: column; gap: 0.4rem; }
.thw-guide__book-line { height: 1px; background: var(--thw-gray); }

/* ── EMAIL CAPTURE (light blue) ── */
.thw-email {
  padding: 5rem;
  background: var(--thw-light-blue);
  text-align: center;
}
.thw-email__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  color: var(--thw-navy) !important;
  margin-bottom: 0.75rem;
}
.thw-email__sub {
  font-family: 'Libre Baskerville', serif !important;
  font-style: italic;
  font-size: 0.88rem !important;
  color: var(--thw-muted) !important;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.thw-email__privacy {
  font-size: 0.65rem !important;
  color: var(--thw-muted) !important;
  margin-top: 0.85rem;
  letter-spacing: 0.05em;
}

/* ── PILLAR SUB-LABEL ── */
.thw-pillar__sub-label {
  font-size: 0.58rem !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--thw-blue) !important;
  font-weight: 400;
  margin-bottom: 0.4rem;
  font-family: 'Raleway', sans-serif;
}

/* ── CARDS ── */
.thw-product-card,
.thw-event-card,
.thw-vendor-card {
  border: 1px solid rgba(95,117,144,0.10);
  padding: 0;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.thw-product-card:hover,
.thw-event-card:hover,
.thw-vendor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(47,62,85,0.09);
}
.thw-product-card .wp-block-cover { min-height: 200px; }
.thw-product-card h4 { padding: 1.25rem 1.25rem 0; }
.thw-product-card p  { padding: 0 1.25rem; }
.thw-product-card p:last-child { padding-bottom: 1.25rem; }

.thw-event-card,
.thw-vendor-card { padding: 1.75rem; }
.thw-event-card h4,
.thw-vendor-card h4 { margin-top: 0; }

/* ── BADGES ── */
.thw-badge {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  margin-right: 0.4rem;
}
.thw-badge--blue   { background: var(--thw-blue);  color: white; }
.thw-badge--navy   { background: var(--thw-navy);  color: var(--thw-cream); }
.thw-badge--cream  { background: var(--thw-cream-dark); color: var(--thw-navy); }
.thw-badge--gold   { background: var(--thw-gold); color: white; }

/* ── TAGS (vendor sub-categories, free-text) ── */
.thw-tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  margin: 0.15rem;
  border: 1px solid currentColor;
  color: var(--thw-blue);
}

/* ── FOOTER ── */
.thw-footer {
  background: var(--thw-navy);
  color: var(--thw-cream);
  padding: 4rem 5rem 2.5rem;
}
.thw-footer__grid {
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242,233,228,0.1);
}
.thw-footer__brand-name {
  font-family: 'Playfair Display', serif !important;
  font-weight: 300;
  font-size: 1rem !important;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--thw-cream) !important;
  margin-bottom: 1rem;
}
.thw-footer__tagline {
  font-family: 'Libre Baskerville', serif !important;
  font-style: italic;
  font-size: 0.8rem !important;
  color: rgba(242,233,228,0.55) !important;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.thw-footer__col-title {
  font-size: 0.6rem !important;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(242,233,228,0.4) !important;
  margin-bottom: 1.1rem;
  font-family: 'Raleway', sans-serif;
}
.thw-footer__list { list-style: none; padding: 0; }
.thw-footer__list li { margin: 0.6rem 0; }
.thw-footer__list a {
  color: rgba(242,233,228,0.6) !important;
  font-size: 0.78rem;
  transition: color 0.2s;
  font-weight: 300;
}
.thw-footer__list a:hover { color: var(--thw-cream) !important; }
.thw-footer__bottom {
  font-size: 0.65rem;
  color: rgba(242,233,228,0.3);
  letter-spacing: 0.1em;
}
.thw-footer__bottom p { color: rgba(242,233,228,0.3) !important; font-size: 0.65rem !important; }
.thw-footer__cross { font-size: 1rem !important; color: rgba(242,233,228,0.2) !important; }
@media (max-width: 768px) {
  .thw-footer { padding: 3rem 1.5rem 2rem; }
  .thw-footer__grid { grid-template-columns: 1fr 1fr !important; gap: 2rem; }
  .thw-footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
@media (max-width: 500px) {
  .thw-footer__grid { grid-template-columns: 1fr !important; }
}

/* ── OPT-IN BAND ── */
.thw-optin-band {
  padding: 4rem 5rem;
}
.thw-optin .mc4wp-form-fields {
  display: flex;
  gap: 0;
}
.thw-optin input[type="email"] {
  flex: 1;
  background: white;
  border: 1px solid rgba(95,117,144,0.20);
  padding: 0.85rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.83rem;
  color: var(--thw-black);
  outline: none;
}
.thw-optin input[type="email"]:focus { border-color: var(--thw-blue); }
.thw-optin input[type="submit"] {
  background: var(--thw-navy);
  color: var(--thw-cream);
  border: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  transition: background 0.25s;
}
.thw-optin input[type="submit"]:hover { background: var(--thw-blue); }

/* ── ANIMATIONS ── */
@keyframes thw-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.thw-fade-up    { animation: thw-fade-up 0.75s ease both; }
.thw-fade-up-2  { animation: thw-fade-up 0.75s 0.15s ease both; }
.thw-fade-up-3  { animation: thw-fade-up 0.75s 0.30s ease both; }

/* ══════════════════════════════════════════════════════════════ */
/* EVENTS PAGE                                                  */
/* ══════════════════════════════════════════════════════════════ */

/* ── EVENTS HERO ── */
.ev-hero {
  background: var(--thw-navy);
  padding: 9rem 5rem 5rem;
  position: relative; overflow: hidden;
}
.ev-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(95,117,144,0.22) 0%, transparent 65%);
}
.ev-hero-inner { position: relative; z-index: 1; }
.ev-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem) !important;
  color: var(--thw-cream) !important;
  margin-bottom: 1rem;
}
.ev-hero-title em { font-style: italic; color: rgba(95,117,144,0.85); }
.ev-hero-sub {
  font-family: 'Libre Baskerville', serif !important;
  font-style: italic;
  font-size: 0.9rem !important;
  color: rgba(242,233,228,0.6) !important;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.ev-hero-badges { gap: 0.75rem !important; }
.ev-hero-badge {
  background: rgba(242,233,228,0.08);
  border: 1px solid rgba(242,233,228,0.15);
  color: rgba(242,233,228,0.6);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  font-family: 'Raleway', sans-serif;
}

/* ── EVENTS OPT-IN BAND ── */
.ev-optin {
  background: var(--thw-light-blue);
  padding: 3.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(95,117,144,0.12);
}
.ev-optin-text h3 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 300;
  font-size: 1.3rem !important;
  color: var(--thw-navy) !important;
  margin-bottom: 0.35rem;
}
.ev-optin-text p {
  font-size: 0.78rem !important;
  color: var(--thw-muted) !important;
  font-family: 'Libre Baskerville', serif !important;
  font-style: italic;
}
.ev-optin-form-wrap { flex-shrink: 0; }
.ev-optin-form-wrap .mc4wp-form-fields {
  display: flex;
  gap: 0;
}
.ev-optin-form-wrap input[type="email"] {
  background: white;
  border: 1px solid rgba(95,117,144,0.2);
  border-right: none;
  padding: 0.8rem 1.1rem;
  font-size: 0.83rem;
  color: var(--thw-black);
  outline: none;
  width: 220px;
  font-family: 'Raleway', sans-serif;
}
.ev-optin-form-wrap input[type="email"]:focus { border-color: var(--thw-blue); }
.ev-optin-form-wrap input[type="email"]::placeholder { color: #b5aea9; }
.ev-optin-form-wrap input[type="submit"] {
  background: var(--thw-navy);
  color: var(--thw-cream);
  border: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}
.ev-optin-form-wrap input[type="submit"]:hover { background: var(--thw-blue); }

/* ── EVENTS CONTENT AREA ── */
.ev-content {
  padding: 3rem 5rem 5rem;
}

@media (max-width: 900px) {
  .ev-hero { padding: 7rem 2rem 4rem; }
  .ev-optin { padding: 2.5rem 2rem; flex-direction: column; align-items: flex-start; }
  .ev-optin-form-wrap input[type="email"] { width: 100%; border-right: 1px solid rgba(95,117,144,0.2); }
  .ev-optin-form-wrap .mc4wp-form-fields { flex-direction: column; width: 100%; }
  .ev-content { padding: 2rem 1.5rem 4rem; }
}

/* ══════════════════════════════════════════════════════════════ */
/* MISSION / ABOUT PAGE                                         */
/* ══════════════════════════════════════════════════════════════ */

/* ── MISSION HERO ── */
.ab-hero {
  background: var(--thw-navy);
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 9rem 3rem 5rem;
  position: relative; overflow: hidden;
}
.ab-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(95,117,144,0.18) 0%, transparent 70%);
}
.ab-hero-inner { position: relative; z-index: 1; }
.ab-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
  color: var(--thw-cream) !important;
  margin-bottom: 1rem;
}
.ab-hero-title em { font-style: italic; color: rgba(95,117,144,0.85); }
.ab-hero-sub {
  font-family: 'Libre Baskerville', serif !important;
  font-style: italic;
  font-size: 0.95rem !important;
  color: rgba(242,233,228,0.6) !important;
  line-height: 1.8;
}

/* ── BRAND STORY ── */
.ab-story { padding: 6rem 5rem; }
.ab-story__cols { gap: 6rem !important; align-items: flex-start !important; }
.ab-story-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem) !important;
  color: var(--thw-navy) !important;
  margin-bottom: 1.5rem;
}
.ab-story-body {
  font-family: 'Libre Baskerville', serif !important;
  font-size: 0.88rem !important;
  color: #4a4a48 !important;
  line-height: 2;
  margin-bottom: 1.1rem;
}
.ab-story-signature {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-size: 1.5rem !important;
  color: var(--thw-blue) !important;
  margin-top: 1.5rem;
}

/* Proverbs sidebar box */
.ab-proverbs-box {
  background: var(--thw-navy);
  padding: 3rem;
  position: sticky; top: 120px;
}
.ab-proverbs-box-label {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(242,233,228,0.4); margin-bottom: 1.25rem;
  font-family: 'Raleway', sans-serif;
}
.ab-proverbs-box-quote {
  font-family: 'Playfair Display', serif;
  font-weight: 300; font-style: italic;
  font-size: 1.05rem; color: var(--thw-cream);
  line-height: 1.65; margin-bottom: 1rem;
}
.ab-proverbs-box-ref {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(95,117,144,0.7);
  font-family: 'Raleway', sans-serif;
}
.ab-proverbs-verses { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.ab-proverbs-verse { padding-left: 1rem; border-left: 2px solid rgba(95,117,144,0.3); }
.ab-proverbs-verse-text {
  font-family: 'Libre Baskerville', serif; font-style: italic;
  font-size: 0.78rem; color: rgba(242,233,228,0.55); line-height: 1.6;
}
.ab-proverbs-verse-ref {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(95,117,144,0.5); margin-top: 0.3rem;
  font-family: 'Raleway', sans-serif;
}

/* ── VALUES ── */
.ab-values {
  padding: 5rem;
  background: var(--thw-light-blue);
}
.ab-values-header { text-align: center; margin-bottom: 3.5rem; }
.ab-values-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem) !important;
  color: var(--thw-navy) !important;
  margin-bottom: 0.6rem;
}
.ab-values-sub {
  font-family: 'Libre Baskerville', serif !important;
  font-style: italic;
  font-size: 0.9rem !important;
  color: var(--thw-muted) !important;
  max-width: 540px;
  margin: 0.75rem auto 0;
  line-height: 1.8;
}
.ab-values-grid { gap: 1.5rem !important; margin-bottom: 0; }
.ab-values-grid--row2 { margin-top: 1.5rem; }
.ab-value-card {
  background: white !important;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(95,117,144,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ab-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(47,62,85,0.08);
}
.ab-value-icon { font-size: 1.2rem !important; margin-bottom: 0.85rem; }
.ab-value-title { font-size: 0.95rem !important; color: var(--thw-navy) !important; margin-bottom: 0.5rem; }
.ab-value-desc { font-size: 0.78rem !important; color: var(--thw-muted) !important; line-height: 1.7; }

/* Vocation capstone band */
.ab-vocation-capstone {
  background: var(--thw-navy);
  padding: 2.5rem 3rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.ab-vocation-capstone__icon {
  font-size: 1.5rem; color: rgba(242,233,228,0.3); flex-shrink: 0;
}
.ab-vocation-capstone__text { flex: 1; }
.ab-vocation-capstone__label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(242,233,228,0.4); margin-bottom: 0.5rem; font-weight: 400;
}
.ab-vocation-capstone__title {
  font-family: 'Playfair Display', serif; font-weight: 300;
  font-size: 1.1rem; color: var(--thw-cream); margin-bottom: 0.6rem;
}
.ab-vocation-capstone__desc {
  font-family: 'Libre Baskerville', serif; font-style: italic;
  font-size: 0.88rem; color: rgba(242,233,228,0.65); line-height: 1.8;
  max-width: 680px;
}

/* ── FOUNDER ── */
.ab-founder { padding: 6rem 5rem; }
.ab-founder__cols { gap: 6rem !important; align-items: center !important; }
.ab-founder-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem) !important;
  color: var(--thw-navy) !important;
  margin-bottom: 1rem;
}
.ab-founder-body {
  font-family: 'Libre Baskerville', serif !important;
  font-size: 0.88rem !important;
  color: #4a4a48 !important;
  line-height: 2;
  margin-bottom: 1rem;
}
.ab-founder-sig {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-size: 1.4rem !important;
  color: var(--thw-blue) !important;
  margin-top: 1rem;
}
.ab-romans {
  font-family: 'Libre Baskerville', serif !important;
  font-style: italic;
  font-size: 0.78rem !important;
  color: var(--thw-muted) !important;
  margin-top: 0.5rem;
}

/* TRUST framework box */
.ab-trust {
  background: var(--thw-navy);
  padding: 3rem 3rem 2rem;
}
.ab-trust-label {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(242,233,228,0.4); margin-bottom: 1.5rem; display: block;
  font-family: 'Raleway', sans-serif;
}
.ab-trust-items { display: flex; flex-direction: column; gap: 0; }
.ab-trust-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(242,233,228,0.06);
}
.ab-trust-item:last-child { border-bottom: none; }
.ab-trust-letter {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--thw-blue);
  font-weight: 300; width: 32px; flex-shrink: 0; line-height: 1;
}
.ab-trust-word {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; color: var(--thw-cream);
  margin-bottom: 0.15rem;
}
.ab-trust-desc {
  font-size: 0.73rem; color: rgba(242,233,228,0.5); line-height: 1.5;
  font-family: 'Raleway', sans-serif;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .thw-nav,
  .thw-nav.is-scrolled { padding: 1rem 1.5rem; }
  .thw-hero--home { padding: 8rem 2rem 4rem; }
  .thw-pillars { padding: 4rem 1.5rem; }
  .thw-pillars__grid { flex-wrap: wrap; }
  .thw-pillars__grid > .wp-block-column { flex-basis: 48% !important; }
  .thw-proverbs { padding: 3rem 2rem; }
  .thw-products { padding: 4rem 1.5rem; }
  .thw-products__grid { flex-wrap: wrap; }
  .thw-products__grid > .wp-block-column { flex-basis: 48% !important; }
  .thw-products__header { flex-direction: column !important; align-items: flex-start !important; gap: 1rem; }
  .thw-guide { padding: 4rem 2rem; }
  .thw-guide__cols { flex-direction: column !important; gap: 3rem !important; }
  .thw-email { padding: 4rem 2rem; }
  .thw-footer,
  .thw-optin-band { padding-left: 2rem; padding-right: 2rem; }
  .thw-divider__ornament::before,
  .thw-divider__ornament::after { width: 80px; }
  .thw-aquinas { padding: 2rem 1.5rem; }
  /* Mission responsive */
  .ab-story { padding: 4rem 2rem; }
  .ab-story__cols { flex-direction: column !important; gap: 3rem !important; }
  .ab-proverbs-box { position: static; }
  .ab-values { padding: 4rem 2rem; }
  .ab-values-grid { flex-wrap: wrap; }
  .ab-values-grid > .wp-block-column { flex-basis: 48% !important; }
  .ab-founder { padding: 4rem 2rem; }
  .ab-founder__cols { flex-direction: column !important; gap: 3rem !important; }
}
@media (max-width: 600px) {
  .thw-optin .mc4wp-form-fields { flex-direction: column; }
  .thw-email .mc4wp-form-fields { flex-direction: column; }
}
@media (max-width: 500px) {
  .thw-products__grid > .wp-block-column { flex-basis: 100% !important; }
  .thw-pillars__grid > .wp-block-column { flex-basis: 100% !important; }
  .ab-values-grid > .wp-block-column { flex-basis: 100% !important; }
}
