/*!
Theme Name: Kadence Child — Flor Elena Robledo
Template:   kadence
Version:    1.1.0
Description: Child theme for florelenarobledo.com. Design tokens from design/design-tokens.md. Do not edit the parent theme.
*/

/* ─────────────────────────────────────────────
   GLOBAL RESETS & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html,
body {
  background-color: #FAF6F0 !important;
}

body {
  font-family: 'Inter', sans-serif;
  background: #FAF6F0;
  color: #1E0E10;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

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

/* ─────────────────────────────────────────────
   SITE WRAPPER
───────────────────────────────────────────── */
#wrapper.site {
  max-width: 1380px;
  margin: 0 auto;
  background: #FAF6F0;
  overflow: clip;
  position: relative;
  box-shadow:
    -40px 0 80px rgba(0,0,0,.28),
     40px 0 80px rgba(0,0,0,.28);
}

/* ─────────────────────────────────────────────
   ACCENT STRIP  (5-colour 4 px bar, top of page)
───────────────────────────────────────────── */
.flor-accent-strip {
  display: flex;
  height: 4px;
  width: 100%;
}
.flor-accent-strip .as-pink   { flex: 1; background: #E8A0B0; }
.flor-accent-strip .as-purple { flex: 1; background: #C25878; }
.flor-accent-strip .as-gold   { flex: 1; background: #8B2A3A; }
.flor-accent-strip .as-lilac  { flex: 1; background: #5C1A2A; }
.flor-accent-strip .as-grey   { flex: 1; background: #E0D4CC; }

/* ─────────────────────────────────────────────
   SITE NAV
───────────────────────────────────────────── */
.flor-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 88px;
  border-bottom: 1px solid #E0D4CC;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.flor-nav-logo img {
  height: 52px;
  width: auto;
  opacity: .9;
}
.flor-nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: #1E0E10;
  letter-spacing: .02em;
}

.flor-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.flor-nav-links a {
  font-size: 11px;
  color: #6B6B6B;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
}
.flor-nav-links a:hover,
.flor-nav-links .current-menu-item > a {
  color: #1E0E10;
}

.flor-nav-cta {
  background: #5C1A2A;
  color: #fff !important;
  padding: 10px 22px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background .2s;
  white-space: nowrap;
}
.flor-nav-cta:hover { background: #8B2A3A; }

/* ─────────────────────────────────────────────
   LOGO IDENTITY SECTION  (homepage only, below nav)
───────────────────────────────────────────── */
.flor-logo-section {
  text-align: center;
  padding: 88px 40px 72px;
  background: #FAF6F0;
  border-bottom: 1px solid #E0D4CC;
  position: relative;
}
.flor-logo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: #E0D4CC;
}

.flor-logo-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.flor-logo-img-wrap img {
  width: 420px;
  max-width: 90%;
  height: auto;
}
.flor-logo-text-large {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-style: italic;
  color: #1E0E10;
  margin-bottom: 22px;
  line-height: 1;
}

.flor-logo-descriptor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.flor-logo-descriptor span {
  font-size: 10px;
  letter-spacing: .18em;
  color: #AAA;
  text-transform: uppercase;
  font-weight: 500;
}
.flor-logo-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #C25878;
  display: inline-block;
  flex-shrink: 0;
}

.flor-logo-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.flor-pill {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
}
.flor-pill-pink   { background: #F8EAEC; color: #8B2A3A; }
.flor-pill-pink:hover   { background: #C25878; color: #fff; }
.flor-pill-gold   { background: #F8F2E4; color: #7A6030; }
.flor-pill-gold:hover   { background: #9A7A3A; color: #fff; }
.flor-pill-grey   { background: #F5F0EA; color: #666; }
.flor-pill-grey:hover   { background: #E0D4CC; color: #1E0E10; }
.flor-pill-purple { background: #F5EAE8; color: #8B2A3A; }
.flor-pill-purple:hover { background: #B03050; color: #fff; }

/* ─────────────────────────────────────────────
   ABOUT PAGE — hero
───────────────────────────────────────────── */
.flor-about-hero {
  background: #FAF6F0;
  border-bottom: 1px solid #E0D4CC;
  padding: 72px 64px 60px;
}
.flor-about-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-style: italic;
  color: #1E0E10;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 14px;
}
.flor-about-subhead {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: #9A7A3A;
  font-weight: 400;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE — two-column story section
───────────────────────────────────────────── */
.flor-about-story {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid #E0D4CC;
}
.flor-about-story-left {
  padding: 72px 68px 72px 64px;
}
.flor-about-story-label {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9A7A3A;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E0D4CC;
  display: flex;
  align-items: center;
  gap: 12px;
}
.flor-about-story-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E0D4CC;
}
.flor-about-story-body p {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 22px;
}
.flor-about-story-body p:last-child { margin-bottom: 0; }
.flor-about-story-body em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #1E0E10;
  font-weight: 400;
}

/* Portrait column — sticky portrait crop */
.flor-about-story-right {
  overflow: visible;    /* sticky requires visible ancestor overflow */
  position: relative;
}
.flor-about-story-right img {
  position: sticky;
  top: 108px;           /* 88px nav + 20px breathing room */
  width: 100%;
  aspect-ratio: 4 / 5;  /* portrait frame: crops to flattering height, no vertical clip */
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE — CTAs + platform pills
───────────────────────────────────────────── */
.flor-about-lower {
  padding: 56px 64px;
  border-bottom: 1px solid #E0D4CC;
  background: #FAF6F0;
}
.flor-about-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.flor-about-platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.flor-about-platforms-label {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #BBB;
  margin-right: 6px;
  white-space: nowrap;
}
.flor-platform-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #E0D4CC;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6B6B6B;
  transition: all .2s;
  white-space: nowrap;
}
.flor-platform-pill:hover {
  border-color: #C25878;
  color: #C25878;
}

/* ─────────────────────────────────────────────
   ABOUT BAND — two-column portrait + dark panel
───────────────────────────────────────────── */
.flor-about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}

/* Left: full-bleed photo with wine overlay */
.flor-ab-image {
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center 20%;
  background-color: #3A0A12;
}
.flor-ab-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 5, 10, .65);
}
.flor-ab-image-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px;
}
.flor-ab-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 88px;
  color: #C25878;
  line-height: .8;
  margin-bottom: 18px;
  user-select: none;
}
.flor-ab-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #FAF6F0;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
}
.flor-ab-quote-attr {
  font-size: 11px;
  color: #C8A0A8;
  margin-top: 20px;
  letter-spacing: .06em;
}

/* Right: deep-wine panel */
.flor-ab-content {
  background: #3A0A12;
  padding: 88px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flor-ab-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.flor-ab-eyebrow-line::before,
.flor-ab-eyebrow-line::after {
  content: '';
  flex: 0 0 20px;
  height: 1px;
  background: #C25878;
  opacity: .5;
}
.flor-ab-eyebrow-line span {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #C25878;
  font-weight: 600;
}
.flor-ab-heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-style: italic;
  color: #FAF6F0;
  margin-bottom: 22px;
  line-height: 1.2;
}
.flor-ab-text {
  font-size: 13px;
  color: #C09098;
  line-height: 1.85;
  margin-bottom: 30px;
}
.flor-ab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.flor-ab-tag {
  font-size: 10px;
  padding: 7px 16px;
  border-radius: 50px;
  letter-spacing: .06em;
  font-weight: 500;
}
.flor-ab-tag--purple { background: rgba(194,88,120,.15); color: #F0C0C8; border: 1px solid rgba(194,88,120,.3); }
.flor-ab-tag--pink   { background: rgba(139,42,58,.15);  color: #E8B0B8; border: 1px solid rgba(139,42,58,.3);  }
.flor-ab-tag--gold   { background: rgba(154,122,58,.12); color: #C8A050; border: 1px solid rgba(154,122,58,.25); }

/* Outline button variant for dark wine backgrounds */
.flor-btn-outline--wine {
  color: #E8A0B0 !important;
  border-color: rgba(232,160,176,.45);
  align-self: flex-start;
}
.flor-btn-outline--wine:hover {
  background: rgba(232,160,176,.12) !important;
  color: #FAF6F0 !important;
  border-color: rgba(232,160,176,.7);
}

.flor-ab-logo-wrap { margin-top: 28px; }
.flor-ab-logo-wrap img { height: 52px; width: auto; opacity: .7; }

/* ─────────────────────────────────────────────
   NEWSLETTER BAR
───────────────────────────────────────────── */
.flor-nl-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 64px;
  background: #fff;
  border-bottom: 1px solid #E0D4CC;
  flex-wrap: wrap;
  gap: 20px;
}

.flor-nl-left p {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  color: #1E0E10;
  margin: 0;
}
.flor-nl-left span {
  font-size: 11px;
  color: #BBB;
  margin-top: 4px;
  display: block;
  letter-spacing: .03em;
}

.flor-nl-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.flor-nl-input {
  padding: 11px 20px;
  border: 1px solid #E0D4CC;
  font-size: 12px;
  border-radius: 50px;
  width: 180px;
  background: #FAF6F0;
  color: #1E0E10;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.flor-nl-input:focus { border-color: #C25878; }
.flor-nl-input::placeholder { color: #BBB; }

.flor-nl-btn {
  background: #C25878;
  color: #fff;
  padding: 11px 26px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
}
.flor-nl-btn:hover { background: #8B2A3A; }

/* ─────────────────────────────────────────────
   CONTENT AREA — two-column (main + sidebar)
───────────────────────────────────────────── */
.flor-content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  border-bottom: 1px solid #E0D4CC;
}

/* ── Main feed ── */
.flor-main-feed {
  padding: 72px 68px;
  border-right: 1px solid #E0D4CC;
  min-width: 0; /* prevent grid blowout */
}

.flor-section-label-sm {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9A7A3A;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E0D4CC;
  display: flex;
  align-items: center;
  gap: 12px;
}
.flor-section-label-sm::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E0D4CC;
}

/* Featured post block */
.flor-featured-post {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #E0D4CC;
}
.flor-featured-post--last {
  border-bottom: none;
  padding-bottom: 0;
}

.flor-featured-thumb {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
}
.flor-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.flor-post-type {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.flor-post-type-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.flor-post-title {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  font-style: italic;
  color: #1E0E10;
  line-height: 1.4;
  margin-bottom: 14px;
}
.flor-post-title a { color: #1E0E10; transition: color .2s; }
.flor-post-title a:hover { color: #B03050; }

.flor-post-excerpt {
  font-size: 13px;
  color: #6B6B6B;
  line-height: 1.8;
  margin-bottom: 16px;
}
.flor-post-meta {
  font-size: 10px;
  color: #CCC;
  letter-spacing: .04em;
}
.flor-post-read-more {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
}
.flor-post-read-more:hover { opacity: .75; }

/* 2-up post grid */
.flor-post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #E0D4CC;
}

.flor-small-post .flor-post-title {
  font-size: 16px;
  margin-bottom: 8px;
}
.flor-small-post .flor-post-excerpt {
  font-size: 12px;
  line-height: 1.7;
}

/* ── Sidebar ── */
.flor-sidebar {
  padding: 72px 40px;
}

.flor-sb-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid #E0D4CC;
}
.flor-sb-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.flor-sb-label {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #1E0E10;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E0D4CC;
}

.flor-sb-bio-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  color: #1E0E10;
  margin-bottom: 6px;
}
.flor-sb-accent {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  margin: 10px 0 14px;
  background: #C25878;
}
.flor-sb-bio-text {
  font-size: 12px;
  color: #6B6B6B;
  line-height: 1.75;
}

/* Categories list */
.flor-sb-cats {
  list-style: none;
  margin: 0;
  padding: 0;
}
.flor-sb-cats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ECDDD5;
}
.flor-sb-cats li:last-child { border-bottom: none; }
.flor-sb-cats li a {
  font-size: 12px;
  color: #555;
  transition: color .2s;
}
.flor-sb-cats li a:hover { color: #C25878; }
.flor-sb-cats li .flor-sb-cat-count {
  font-size: 10px;
  color: #CCC;
}

/* Popular posts */
.flor-sb-popular {
  list-style: none;
  margin: 0;
  padding: 0;
}
.flor-sb-popular li {
  padding: 14px 0;
  border-bottom: 1px solid #ECDDD5;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.flor-sb-popular li:last-child { border-bottom: none; }

.flor-sb-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #E8E0D5;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.flor-sb-pop-title {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-style: italic;
  color: #1E0E10;
  line-height: 1.4;
}
.flor-sb-pop-meta {
  font-size: 10px;
  color: #CCC;
  margin-top: 5px;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.flor-footer {
  background: #1E0808;
  padding: 80px 64px 32px;
}

.flor-footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.75fr 0.75fr;
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid #2A0E14;
}

.flor-footer-logo-wrap {
  margin-bottom: 20px;
}
.flor-footer-logo-wrap img {
  height: 72px;
  width: auto;
}
.flor-footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-style: italic;
  color: #FAF6F0;
  line-height: 1;
  margin-bottom: 20px;
  opacity: .85;
}

.flor-footer-accent {
  width: 32px;
  height: 2px;
  background: #C25878;
  margin-bottom: 20px;
  border-radius: 2px;
}

.flor-footer-tagline {
  font-size: 13px;
  color: #B08888;
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 20px;
}

/* Social icon row — SVG icons, one consolidated row */
.flor-footer-social-icons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.flor-footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9A7070;
  transition: color .2s;
  line-height: 1;
}
.flor-footer-social-icons a:hover { color: #E8A0B0; }
.flor-footer-social-icons svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.flor-footer-cols {
  display: contents; /* dissolves wrapper; link columns become direct 4-col grid items */
}

.flor-footer-col h4 {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C25878;
  font-weight: 600;
  margin-bottom: 20px;
}
.flor-footer-col a {
  display: block;
  font-size: 12px;
  color: #B08888;
  margin-bottom: 11px;
  transition: color .2s;
  letter-spacing: .02em;
}
.flor-footer-col a:hover { color: #E8A0B0; }

.flor-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.flor-footer-copy {
  font-size: 10px;
  color: #8A6065;
  letter-spacing: .04em;
}
.flor-footer-bottom .flor-footer-copy a,
.flor-footer-bottom .flor-footer-copy a:visited {
  color: #8A6065 !important;
  text-decoration: none !important;
}
.flor-footer-bottom .flor-footer-copy a:hover {
  color: #8A6065 !important;
  text-decoration: underline !important;
}

.flor-footer-credit {
  font-size: 10px;
  color: #5C3A3E;
  letter-spacing: .04em;
}

.flor-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.flor-footer-links a {
  font-size: 10px;
  color: #8A6065;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}
.flor-footer-links a:hover { color: #B08888; }

/* ─────────────────────────────────────────────
   HERO — golden-ratio grid (1fr 1.618fr)
───────────────────────────────────────────── */
.flor-hero {
  display: grid;
  grid-template-columns: 1fr 1.618fr;
  min-height: 600px;
  border-bottom: 1px solid #E0D4CC;
}

.flor-hero-left {
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #E0D4CC;
}

/* Eyebrow: "Journalist · Wife · Mom · Leader" */
.flor-hero-eyebrow {
  font-size: 10px;
  letter-spacing: .18em;
  color: #C25878;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Stacked identity words in Playfair italic */
.flor-hero-stacked {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flor-hero-word {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  color: #1E0E10;
  font-weight: 400;
  line-height: 1.25;
  padding: 2px 0;
}

.flor-hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #1E0E10;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.flor-hero-tagline span { display: block; }

.flor-hero-body {
  font-size: 13px;
  color: #6B6B6B;
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 380px;
}

.flor-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.flor-btn-primary {
  background: #5C1A2A;
  color: #fff;
  padding: 14px 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 50px;
  display: inline-block;
  transition: background .2s;
}
.flor-btn-primary:hover { background: #8B2A3A; color: #fff; }

.flor-btn-outline {
  background: transparent;
  color: #C25878;
  padding: 13px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid #C25878;
  display: inline-block;
  transition: all .2s;
}
.flor-btn-outline:hover { background: #F8EAEC; color: #8B2A3A; }

/* Hero photo — fills the right column completely */
.flor-hero-photo {
  overflow: hidden;
  position: relative;
  background: #E0D4CC;
}
.flor-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 15%;
  display: block;
}

/* ─────────────────────────────────────────────
   THREE TRACK CARDS
───────────────────────────────────────────── */
.flor-tracks-wrap {
  background: #FAF6F0;
  border-bottom: 1px solid #E0D4CC;
}

.flor-tracks-header {
  text-align: center;
  padding: 40px 40px 28px;
}
.flor-tracks-eyebrow {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #C25878;
  margin-bottom: 12px;
}
.flor-tracks-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-style: italic;
  color: #1E0E10;
  line-height: 1.2;
  margin-bottom: 10px;
}
.flor-tracks-sub {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  color: #BBB;
}

.flor-tracks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* Individual track card */
.flor-track {
  display: block;
  overflow: hidden;
  position: relative;
  min-height: 360px;
  text-decoration: none;
}

.flor-track-bg {
  position: absolute;
  inset: 0;
}
.flor-track-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* Brightness/saturation filters per track — keeps white text readable */
.flor-track--podcast .flor-track-bg img { filter: brightness(.36) saturate(.65); }
.flor-track--news    .flor-track-bg img { filter: brightness(.32) saturate(.60); }
.flor-track--blog    .flor-track-bg img { filter: brightness(.34) saturate(.65); }

/* Top colour accent bar */
.flor-track-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 3;
}
.flor-track--podcast .flor-track-accent { background: #B03050; }
.flor-track--news    .flor-track-accent { background: #9A7A3A; }
.flor-track--blog    .flor-track-accent { background: #C25878; }

/* Content sits above the darkened photo */
.flor-track-content {
  position: relative;
  z-index: 2;
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.flor-track:last-child .flor-track-content { border-right: none; }

.flor-track-label {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.flor-track--podcast .flor-track-label { color: #E8A0B0; }
.flor-track--news    .flor-track-label { color: #D4B870; }
.flor-track--blog    .flor-track-label { color: #F0C0C8; }

.flor-track-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-style: italic;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.flor-track-desc {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 22px;
}

.flor-track-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  align-self: flex-start;
}
.flor-track--podcast .flor-track-btn { background: #F8EAEC; color: #5C1A2A; }
.flor-track--news    .flor-track-btn { background: #F8F2E4; color: #7A6030; }
.flor-track--blog    .flor-track-btn { background: #F8EAEC; color: #5C1A2A; }

/* Hover lift */
.flor-track:hover .flor-track-bg img { transform: scale(1.03); transition: transform .5s ease; }
.flor-track-bg img { transition: transform .5s ease; }

/* ─────────────────────────────────────────────
   MOBILE MENU — hamburger + full-screen overlay
───────────────────────────────────────────── */

/* Hamburger button (hidden on desktop) */
.flor-nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.flor-nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #5C1A2A;
  border-radius: 2px;
  transition: transform .25s, opacity .25s, width .25s;
  transform-origin: center;
}

/* Full-screen overlay */
.flor-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #1E0E10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.flor-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Close (×) button */
.flor-mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  color: rgba(250, 246, 240, .45);
  cursor: pointer;
  padding: 8px;
  line-height: 0;
  transition: color .2s;
}
.flor-mobile-close:hover,
.flor-mobile-close:focus-visible { color: #FAF6F0; outline: none; }

/* Nav links — refined Playfair, tighter cluster */
.flor-mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.flor-mobile-links li { margin-bottom: 0; }
.flor-mobile-links a {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: rgba(250, 246, 240, .6);
  letter-spacing: .01em;
  display: block;
  padding: 9px 24px;
  transition: color .2s;
}
.flor-mobile-links a:hover,
.flor-mobile-links a:focus-visible { color: #FAF6F0; outline: none; }

/* CTA button */
.flor-mobile-cta {
  display: inline-block;
  margin-top: 28px;
  background: #B03050;
  color: #FAF6F0 !important;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background .2s;
}
.flor-mobile-cta:hover { background: #8B2A3A; }

/* Social icons row */
.flor-mobile-social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  align-items: center;
}
.flor-mobile-social a {
  color: rgba(250, 246, 240, .3);
  line-height: 0;
  transition: color .2s;
}
.flor-mobile-social a:hover { color: rgba(250, 246, 240, .75); }
.flor-mobile-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — basic mobile nav collapse
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .flor-nav {
    padding: 0 24px;
    height: 64px;
  }
  .flor-nav-links  { display: none; }   /* replaced by mobile overlay */
  .flor-nav-hamburger { display: flex; }

  /* Hero stacks vertically on tablet */
  .flor-hero {
    grid-template-columns: 1fr;
  }
  .flor-hero-photo {
    min-height: 320px;
  }
  .flor-hero-left {
    border-right: none;
    border-bottom: 1px solid #E0D4CC;
    padding: 48px 32px;
  }

  /* Tagline: collapse spans to inline flow on narrow viewports */
  .flor-hero-tagline span { display: inline; }
  .flor-tagline-break { display: none; }

  /* Tracks stack 1-column */
  .flor-tracks {
    grid-template-columns: 1fr;
  }
  .flor-track-content {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  /* About page */
  .flor-about-hero  { padding: 48px 24px 40px; }
  .flor-about-h1    { font-size: 48px; }
  .flor-about-subhead { font-size: 16px; }
  .flor-about-story { grid-template-columns: 1fr; }
  .flor-about-story-left { padding: 48px 24px; border-bottom: 1px solid #E0D4CC; }
  .flor-about-story-right { min-height: 380px; }
  .flor-about-story-right img { position: static; aspect-ratio: 3 / 2; }
  .flor-about-lower { padding: 48px 24px; }
  .flor-about-band { grid-template-columns: 1fr; }
  .flor-ab-image   { min-height: 360px; }
  .flor-ab-image-quote { padding: 48px 32px; }
  .flor-ab-content { padding: 60px 32px; }

  /* Newsletter bar stacks */
  .flor-nl-bar { padding: 28px 24px; flex-direction: column; align-items: flex-start; }

  /* Content area stacks */
  .flor-content-wrap { grid-template-columns: 1fr; }
  .flor-main-feed { padding: 48px 32px; border-right: none; border-bottom: 1px solid #E0D4CC; }
  .flor-sidebar { padding: 48px 32px; }
  .flor-post-grid { grid-template-columns: 1fr; gap: 40px; }

  .flor-footer {
    padding: 56px 24px 24px;
  }
  .flor-footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .flor-footer-nl-form {
    flex-direction: row;
    gap: 10px;
  }
  .flor-footer-nl-input,
  .flor-footer-nl-btn {
    width: auto;
  }
  .flor-footer-nl-input { flex: 1; }
  .flor-footer-cols {
    /* display:contents — children stack naturally in 1-col mobile grid */
  }
}

@media (max-width: 600px) {
  .flor-hero-left { padding: 40px 24px; }
  .flor-hero-word { font-size: 22px; }
  .flor-tracks-title { font-size: 28px; }
}

/* ─────────────────────────────────────────────
   BE BOLD PAGE
───────────────────────────────────────────── */

/* ── Hero: single ivory column ── */
.bb-hero {
  background: #FAF6F0;
  border-bottom: 1px solid #E0D4CC;
}

/* Top block — eyebrow / title / subhead */
.bb-hero-top {
  padding: 72px 80px 56px;
  border-bottom: 1px solid #E0D4CC;
  max-width: 960px;
}
.bb-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #B03050;
  margin-bottom: 16px;
  display: block;
}
.bb-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-style: italic;
  font-weight: 400;
  color: #1E0E10;
  line-height: 1.02;
  margin: 0 0 20px;
}
.bb-hero-subhead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: #9A7A3A;
  line-height: 1.5;
  margin: 0;
}

/* About the Show — stacked: eyebrow+rule on top, body below full-width */
.bb-hero-about {
  padding: 40px 80px 56px;
}
.bb-hero-about-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.bb-hero-about-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #6B6B6B;
  white-space: nowrap;
}
.bb-section-rule {
  flex: 1;
  height: 1px;
  background: #E0D4CC;
}
.bb-hero-about-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin: 0 0 16px;
  max-width: 680px;
}
.bb-hero-about-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #6B6B6B !important;
  font-size: 14px !important;
  margin-bottom: 32px !important;
}
.bb-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Primary filled button (Watch on YouTube) */
.bb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #B03050;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 12px 24px;
  text-decoration: none;
  transition: background .2s ease;
}
.bb-btn-primary:hover { background: #8B2A3A; color: #fff; }

/* Outline button (Spotify / Apple) */
.bb-btn-outline {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5C1A2A;
  border: 1.5px solid #5C1A2A;
  border-radius: 50px;
  padding: 11px 22px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.bb-btn-outline:hover {
  background: #5C1A2A;
  color: #fff;
}

/* ── Episodes section ── */
.bb-episodes {
  background: #FAF6F0;
  border-bottom: 1px solid #E0D4CC;
}
.bb-episodes-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 48px 80px 20px;
  margin-bottom: 0;
}
.bb-section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #6B6B6B;
  white-space: nowrap;
}
.bb-section-eyebrow--wine { color: #B03050; }
.bb-ep-list {
  display: flex;
  flex-direction: column;
}

/* ── Individual episode row ── */
.bb-ep-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  padding: 28px 80px;
  border-top: 1px solid #E0D4CC;
  align-items: center;
  transition: background .15s ease;
}
.bb-ep-list > .bb-ep-row:first-child { border-top: none; }
.bb-ep-row:hover { background: #F5EFE6; }

/* Thumbnail column — fixed 16:9, inset from row padding */
.bb-ep-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #1E0808;
  border-radius: 6px;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.bb-ep-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.bb-ep-row:hover .bb-ep-thumb img { transform: scale(1.03); }
.bb-ep-thumb-blank {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #B03050, #3A0A12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-ep-thumb-blank span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(250,246,240,.4);
}

/* Play overlay on thumbnail hover */
.bb-ep-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(30, 8, 8, .42);
  transition: opacity .2s ease;
  border-radius: 6px;
}
.bb-ep-thumb:hover .bb-ep-play { opacity: 1; }
.bb-ep-play svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}

/* Metadata column */
.bb-ep-meta {
  padding: 0 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bb-ep-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bb-ep-show-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #B03050;
}
/* Language pills */
.bb-ep-lang {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 3px 10px;
}
.bb-ep-lang--en   { background: #F8EAEC; color: #8B2A3A; }
.bb-ep-lang--es   { background: #F8F2E4; color: #7A6030; }
.bb-ep-lang--esen { background: #F0ECF8; color: #5C1A2A; }

.bb-ep-season {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 12px;
  color: #BBB;
  margin-top: -2px;
}
.bb-ep-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: #1E0E10;
  line-height: 1.35;
  margin: 2px 0 0;
}
.bb-ep-title a {
  color: inherit;
  text-decoration: none;
}
.bb-ep-title a:hover { color: #B03050; }
.bb-ep-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #777;
  line-height: 1.75;
  margin: 2px 0 0;
  max-width: 560px;
}
.bb-ep-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.bb-ep-date {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #BBB;
  letter-spacing: .04em;
}
.bb-ep-watch-link {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5C1A2A;
  text-decoration: none;
  transition: color .2s ease;
}
.bb-ep-watch-link:hover { color: #B03050; }

/* Empty state */
.bb-ep-empty {
  padding: 64px;
  text-align: center;
  font-size: 14px;
  color: #6B6B6B;
}
.bb-ep-empty a { color: #C25878; }

/* ─────────────────────────────────────────────
   SHARED FILTER ENGINE
   Used by Be Bold, Bold News, The Journal.
   --flor-accent is set per-page via JS.
───────────────────────────────────────────── */
.flor-filter-bar {
  --flor-accent: #B03050;
  padding: 14px 80px;
  background: #FAF6F0;
  border-bottom: 1px solid #E0D4CC;
  display: flex;
  flex-direction: column;
}

/* Top row: search + toggle + clear in one line */
.flor-filter-top-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Search wrap */
.flor-filter-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 340px;
}
.flor-filter-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #B9A99E;
  pointer-events: none;
}
.flor-filter-bar .flor-filter-input {
  width: 100%;
  background: #F5EFE6;
  border: 1.5px solid #E0D4CC;
  border-radius: 50px;
  padding: 9px 16px 9px 46px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #1E0E10;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.flor-filter-bar .flor-filter-input:focus { border-color: var(--flor-accent); }
.flor-filter-bar .flor-filter-input::placeholder { color: #B9A99E; }
.flor-filter-bar .flor-filter-input::-webkit-search-cancel-button { cursor: pointer; opacity: .5; }

/* Filters toggle pill */
.flor-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid #D5C9C0;
  color: #5C1A2A;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.flor-filter-toggle:hover,
.flor-filter-toggle.is-open,
.flor-filter-toggle.has-active {
  border-color: var(--flor-accent);
  color: var(--flor-accent);
}
.flor-toggle-count { font-weight: 700; }
.flor-toggle-chevron { transition: transform .2s; flex-shrink: 0; }
.flor-filter-toggle.is-open .flor-toggle-chevron { transform: rotate(180deg); }

/* Clear text-link */
.flor-filter-clear {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #9A7A3A;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s;
  white-space: nowrap;
}
.flor-filter-clear:hover { color: var(--flor-accent); }

/* Collapsible pill panel */
.flor-filter-panel {
  display: none;
  flex-direction: column;
  gap: 9px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #EDE5DC;
}
.flor-filter-panel.is-open { display: flex; }

/* Filter groups */
.flor-filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.flor-filter-group-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9A7A3A;
  white-space: nowrap;
  min-width: 64px;
}
.flor-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Filter pill — outline = inactive */
.flor-fpill {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
  background: transparent;
  border: 1.5px solid #D5C9C0;
  color: #5C1A2A;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.flor-fpill:hover { border-color: var(--flor-accent); color: var(--flor-accent); }
.flor-fpill.is-active { background: var(--flor-accent); border-color: var(--flor-accent); color: #fff; }
.flor-fpill.is-active:hover { filter: brightness(.88); }

/* Hidden rows */
.flor-hidden { display: none !important; }
.bb-ep-row.flor-first-visible,
.bn-card.flor-first-visible,
.tj-card.flor-first-visible { border-top: none !important; }

/* No-results state */
.flor-filter-empty {
  padding: 48px 80px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  text-align: center;
}
.flor-filter-empty-reset {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: #C25878;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

/* Responsive — classic bar mode */
@media (max-width: 900px) {
  .flor-filter-bar { padding: 14px 40px; }
}
@media (max-width: 640px) {
  .flor-filter-bar { padding: 12px 24px; }
  .flor-filter-search-wrap { flex: 1; max-width: none; }
  .flor-filter-group { flex-direction: column; align-items: flex-start; gap: 7px; }
  .flor-filter-group-label { min-width: auto; }
  .flor-filter-empty { padding: 40px 24px; }
}

/* ── Inline filter mode: label + controls on one row ──────────
   Used when florFilterConfig.inlineWithAnchor = true.
   JS adds .flor-filter-inline to the anchor element and inserts
   the top-row controls INTO it; the panel expands below.
──────────────────────────────────────────────────────────────── */
.bb-episodes-header.flor-filter-inline {
  padding: 16px 80px;
  border-bottom: 1px solid #E0D4CC;
}
.bb-episodes-header.flor-filter-inline .bb-section-rule {
  display: none;
}
.bb-episodes-header.flor-filter-inline .flor-filter-top-row {
  margin-left: auto;
  flex-shrink: 0;
}

/* Panel as a sibling below the inline header row */
.bb-episodes-header.flor-filter-inline + .flor-filter-panel {
  padding: 14px 80px 16px;
  margin-top: 0;
  border-top: none;
  border-bottom: 1px solid #E0D4CC;
  background: #FAF6F0;
}

/* Input specificity: needed because Kadence overrides bare input selectors */
.flor-filter-inline .flor-filter-input {
  width: 100%;
  background: #F5EFE6;
  border: 1.5px solid #E0D4CC;
  border-radius: 50px;
  padding: 9px 16px 9px 46px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #1E0E10;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.flor-filter-inline .flor-filter-input:focus { border-color: var(--flor-accent); }
.flor-filter-inline .flor-filter-input::placeholder { color: #B9A99E; }
.flor-filter-inline .flor-filter-input::-webkit-search-cancel-button { cursor: pointer; opacity: .5; }

/* Responsive — inline mode */
@media (max-width: 900px) {
  .bb-episodes-header.flor-filter-inline { padding: 28px 40px 14px; }
  .bb-episodes-header.flor-filter-inline + .flor-filter-panel { padding: 12px 40px 14px; }
}
@media (max-width: 640px) {
  .bb-episodes-header.flor-filter-inline {
    flex-wrap: wrap;
    padding: 24px 24px 12px;
    gap: 10px;
  }
  .bb-episodes-header.flor-filter-inline .flor-filter-top-row {
    margin-left: 0;
    width: 100%;
  }
  .bb-episodes-header.flor-filter-inline + .flor-filter-panel { padding: 12px 24px 14px; }
}

/* ── Bold News inline filter mode ────────────────────────────────────────
   .bn-stories already provides 80px horizontal padding, so no extra needed.
   :has() removes the section's top padding so the header's 16px provides
   all vertical spacing — symmetric with Be Bold's 16px/16px balance.
──────────────────────────────────────────────────────────────────────────── */
.bn-stories:has(.bn-stories-header.flor-filter-inline) { padding-top: 0; }
.bn-stories-header.flor-filter-inline {
  padding: 16px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #E0D4CC;
}
.bn-stories-header.flor-filter-inline .bn-section-rule {
  display: none;
}
.bn-stories-header.flor-filter-inline .flor-filter-top-row {
  margin-left: auto;
  flex-shrink: 0;
}
.bn-stories-header.flor-filter-inline + .flor-filter-panel {
  padding: 14px 0 16px;
  margin-top: 0;
  border-top: none;
  border-bottom: 1px solid #E0D4CC;
  background: transparent;
  margin-bottom: 32px;
}

/* ── The Journal inline filter mode ──────────────────────────────────────
   .tj-articles already provides 80px horizontal padding, so no extra needed.
   :has() removes section top padding so the label's 8px provides all space.
──────────────────────────────────────────────────────────────────────────── */
.tj-articles:has(.tj-section-label.flor-filter-inline) { padding-top: 0; }
.tj-section-label.flor-filter-inline {
  display: flex;
  align-items: center;
  padding: 8px 0;
  margin-bottom: 0;
}
.tj-section-label.flor-filter-inline .flor-filter-top-row {
  margin-left: auto;
  flex-shrink: 0;
}
/* Panel sits between label and article list; provides gap to list when open */
.tj-section-label.flor-filter-inline + .flor-filter-panel {
  padding: 14px 0 16px;
  margin-top: 0;
  border-top: none;
  border-bottom: 1px solid #E0D4CC;
  background: transparent;
  margin-bottom: 28px;
}
/* Restore gap between label/panel and the article list in all states */
.tj-section-label.flor-filter-inline + .flor-filter-panel + .tj-article-list {
  margin-top: 28px;
}

/* Responsive — Bold News + Journal inline overrides */
@media (max-width: 900px) {
  .bn-stories-header.flor-filter-inline { padding: 14px 0; }
  .tj-section-label.flor-filter-inline  { padding: 10px 0; }
}
@media (max-width: 640px) {
  .bn-stories-header.flor-filter-inline,
  .tj-section-label.flor-filter-inline {
    flex-wrap: wrap;
    gap: 10px;
  }
  .bn-stories-header.flor-filter-inline .flor-filter-top-row,
  .tj-section-label.flor-filter-inline .flor-filter-top-row {
    margin-left: 0;
    width: 100%;
  }
  .bn-stories-header.flor-filter-inline + .flor-filter-panel { margin-bottom: 24px; }
  .tj-section-label.flor-filter-inline  + .flor-filter-panel { margin-bottom: 20px; }
  .tj-section-label.flor-filter-inline + .flor-filter-panel + .tj-article-list { margin-top: 20px; }
}

/* ── Shorts: ivory with horizontal scroll row ── */
.bb-shorts {
  background: #FAF6F0;
  border-top: 1px solid #E0D4CC;
  padding: 48px 80px 64px;
}
.bb-shorts-header {
  margin-bottom: 32px;
}
.bb-shorts-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #777;
  margin: 10px 0 0;
  max-width: 480px;
  line-height: 1.6;
}

/* Horizontal scrollable row of short cards */
.bb-shorts-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #E0D4CC transparent;
}
.bb-shorts-row::-webkit-scrollbar { height: 4px; }
.bb-shorts-row::-webkit-scrollbar-track { background: transparent; }
.bb-shorts-row::-webkit-scrollbar-thumb { background: #E0D4CC; border-radius: 4px; }

/* Each short thumbnail card — portrait 9:16 ratio */
.bb-short-card {
  position: relative;
  flex: 0 0 auto;
  width: 110px;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  background: #1E0808;
}
.bb-short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}
.bb-short-card:hover img { transform: scale(1.06); }
.bb-short-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(30,8,8,.45);
  transition: opacity .2s ease;
}
.bb-short-card:hover .bb-short-overlay { opacity: 1; }

.bb-shorts-footer {
  margin-top: 28px;
  text-align: right;
}

/* ── Be Bold responsive ── */
@media (max-width: 900px) {
  .bb-hero-top { padding: 56px 40px 48px; }
  .bb-hero-title { font-size: 56px; }
  .bb-hero-about { padding: 32px 40px 48px; }
  .bb-episodes-header { padding: 40px 40px 32px; }
  .bb-ep-row { grid-template-columns: 200px 1fr; padding: 24px 40px; }
  .bb-ep-meta { padding: 0 0 0 28px; }
  .bb-shorts { padding: 48px 40px 56px; }
}
@media (max-width: 600px) {
  .bb-hero-top { padding: 48px 24px 40px; }
  .bb-hero-title { font-size: 44px; }
  .bb-hero-subhead { font-size: 17px; }
  .bb-hero-about { padding: 28px 24px 40px; }
  .bb-episodes-header { padding: 32px 24px 24px; }
  .bb-ep-row { grid-template-columns: 1fr; padding: 24px 24px; }
  .bb-ep-thumb { aspect-ratio: 16 / 9; width: 100%; border-radius: 6px; }
  .bb-ep-meta { padding: 16px 0 0; }
  .bb-ep-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .bb-shorts { padding: 40px 24px 48px; }
  .bb-short-card { width: 90px; }
  .bb-shorts-footer { text-align: left; }
}

/* ─────────────────────────────────────────────
   BOLD NEWS PAGE
───────────────────────────────────────────── */

/* ── Hero ── */
.bn-hero {
  background: #FAF6F0;
  border-bottom: 1px solid #E0D4CC;
}
.bn-hero-eyebrow-row {
  padding: 56px 80px 48px;
}
.bn-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9A7A3A;
  display: block;
}
.bn-hero-about {
  padding: 0 80px 56px;
}
.bn-hero-about-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.bn-about-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9A7A3A;
  white-space: nowrap;
}
.bn-section-rule {
  flex: 1;
  height: 1px;
  background: #E0D4CC;
}
.bn-hero-about-body p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin: 0 0 16px;
  max-width: 680px;
}
.bn-hero-about-italic {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  color: #6B6B6B !important;
  font-size: 14px !important;
  margin-bottom: 32px !important;
}
.bn-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.bn-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #5C1A2A;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 12px 28px;
  text-decoration: none;
  transition: background .2s ease;
}
.bn-btn-primary:hover { background: #3A0A12; color: #fff; }
.bn-btn-outline {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #C25878;
  border: 1.5px solid #C25878;
  border-radius: 50px;
  padding: 11px 26px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.bn-btn-outline:hover { background: #C25878; color: #fff; }

/* ── Latest Stories ── */
.bn-stories {
  background: #FAF6F0;
  padding: 48px 80px 64px;
}
.bn-stories-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.bn-section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #6B6B6B;
  white-space: nowrap;
}

/* Two-column card grid */
.bn-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start; /* cards can differ in height — align to top */
}

/* Individual card — no overflow:hidden so body can overlap image */
.bn-card {
  background: transparent;
  border-radius: 8px;
  overflow: visible;
  position: relative;
  transition: transform .2s ease;
}
.bn-card:hover { transform: translateY(-3px); }

/* Image area — rounded top corners only */
.bn-card-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1E0808;
  border-radius: 8px 8px 0 0;
}
.bn-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}
.bn-card:hover .bn-card-img-wrap img { transform: scale(1.04); }
.bn-card-img-blank {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #9A7A3A 0%, #5C1A2A 100%);
}

/* Category pill — bottom-left of image, above body overlap */
.bn-card-pill {
  position: absolute;
  bottom: 52px; /* sits above the overlapping body panel */
  left: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(92, 26, 42, .88);
  border-radius: 50px;
  padding: 4px 12px;
  line-height: 1.4;
  z-index: 2;
}

/* Card body — white panel inset & overlapping bottom of image */
.bn-card-body {
  position: relative;
  z-index: 1;
  margin: -44px 14px 0; /* 44px overlap, 14px inset from card sides */
  background: #FFFFFF;
  border-radius: 8px;
  padding: 20px 22px 18px;
  box-shadow: 0 4px 20px rgba(30,8,8,.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bn-card-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: #1E0E10;
  line-height: 1.4;
  margin: 0;
}
.bn-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.bn-card-title a:hover { color: #9A7A3A; }
.bn-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}
.bn-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}
.bn-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #BBB;
  letter-spacing: .03em;
}
.bn-card-watch {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9A7A3A;
  text-decoration: none;
  transition: color .2s ease;
}
.bn-card-watch:hover { color: #7A6030; }

/* Empty state */
.bn-empty {
  padding: 48px;
  text-align: center;
  font-size: 14px;
  color: #6B6B6B;
}
.bn-empty a { color: #C25878; }

/* ── Bottom CTA ── */
.bn-cta {
  background: #FAF6F0;
  border-top: 1px solid #E0D4CC;
  padding: 56px 80px;
  text-align: center;
}
.bn-cta-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: #9A7A3A;
  margin: 0 0 28px;
  line-height: 1.4;
}
.bn-cta-btn {
  display: inline-block;
  background: #5C1A2A;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 14px 32px;
  text-decoration: none;
  transition: background .2s ease;
}
.bn-cta-btn:hover { background: #3A0A12; color: #fff; }

/* ── Bold News responsive ── */
@media (max-width: 900px) {
  .bn-hero-eyebrow-row { padding: 48px 40px 40px; }
  .bn-hero-about { padding: 0 40px 48px; }
  .bn-stories { padding: 40px 40px 56px; }
  .bn-cta { padding: 48px 40px; }
  .bn-card-body { margin: -40px 12px 0; }
  .bn-card-pill { bottom: 50px; }
}
@media (max-width: 720px) {
  .bn-card-grid { grid-template-columns: 1fr; }
  .bn-card-body { margin: -44px 14px 0; }
}
@media (max-width: 600px) {
  .bn-hero-eyebrow-row { padding: 40px 24px 32px; }
  .bn-hero-about { padding: 0 24px 40px; }
  .bn-stories { padding: 32px 24px 48px; }
  .bn-cta { padding: 40px 24px; }
  .bn-cta-text { font-size: 17px; }
}

/* ─────────────────────────────────────────────
   THE JOURNAL — ARCHIVE (page-the-journal.php)
───────────────────────────────────────────── */

/* Hero */
.tj-hero {
  background: #F5EFE6;
  padding: 80px 80px 72px;
}
.tj-hero-eyebrow {
  color: #C25878;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tj-hero-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 52px;
  font-weight: 400;
  color: #1E0E10;
  margin: 0 0 16px;
  line-height: 1.1;
}
.tj-hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: #9A7A3A;
  margin: 0;
}

/* Intro text */
.tj-intro {
  padding: 72px 80px;
  max-width: 760px;
  border-bottom: 1px solid #E0D4CC;
}
.tj-intro p {
  font-size: 15px;
  color: #444444;
  line-height: 1.9;
  margin: 0;
}

/* Articles section */
.tj-articles {
  padding: 72px 80px 80px;
}
.tj-section-label {
  color: #6B6B6B;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid #E0D4CC;
  padding-bottom: 12px;
  margin-bottom: 28px;
}

/* Article list */
.tj-article-list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

/* Individual card */
.tj-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid #F0E8E0;
  align-items: center;
}
.tj-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.tj-card-img {
  display: block;
  width: 280px;
  height: 190px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}
.tj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.tj-card-img--blank {
  background: #EDE5D8;
}
.tj-card-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tj-card-label {
  color: #C25878;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.26px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tj-card-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 21px;
  font-weight: 700;
  color: #1E0E10;
  margin: 0 0 12px;
  line-height: 1.3;
}
.tj-card-title a {
  color: #1E0E10;
  text-decoration: none;
}
.tj-card-title a:hover { color: #C25878; }
.tj-card-excerpt {
  font-size: 13px;
  color: #888888;
  line-height: 1.7;
  margin: 0 0 16px;
}
.tj-card-date {
  display: block;
  font-size: 10px;
  color: #CCCCCC;
  font-weight: 400;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}
.tj-card-read-more {
  color: #C25878;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.tj-card-read-more:hover { color: #5C1A2A; }
.tj-no-posts {
  color: #888;
  font-style: italic;
}

.flor-archive-nav {
  padding-top: 16px;
  border-top: 1px solid #E0D4CC;
}
.flor-archive-nav .nav-links {
  display: flex;
  gap: 16px;
}
.flor-archive-nav .page-numbers {
  font-size: 13px;
  color: #C25878;
  text-decoration: none;
}
.flor-archive-nav .page-numbers.current {
  color: #5C1A2A;
  font-weight: 600;
}

/* Journal archive responsive */
@media (max-width: 900px) {
  .tj-hero { padding: 64px 40px 56px; }
  .tj-intro { padding: 56px 40px; }
  .tj-articles { padding: 56px 40px 64px; }
  .tj-card { grid-template-columns: 220px 1fr; }
  .tj-card-img { width: 220px; height: 150px; }
}
@media (max-width: 680px) {
  .tj-hero { padding: 48px 24px 40px; }
  .tj-hero-title { font-size: 38px; }
  .tj-intro { padding: 40px 24px; }
  .tj-articles { padding: 40px 24px 56px; }
  .tj-card { grid-template-columns: 1fr; }
  .tj-card-img { width: 100%; height: 200px; }
}

/* ─────────────────────────────────────────────
   THE JOURNAL — SINGLE ARTICLE (single.php)
───────────────────────────────────────────── */

#tjs-main {
  background: #FAF6F0;
}

/* Article header */
.tjs-header {
  background: #F5EFE6;
  border-bottom: 1px solid #E0D4CC;
  padding: 64px 80px 56px;
}
.tjs-header-inner {
  max-width: 720px;
}
.tjs-back {
  display: inline-block;
  color: #C25878;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 32px;
}
.tjs-back:hover { color: #5C1A2A; }
.tjs-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.tjs-cat {
  color: #C25878;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.26px;
  text-transform: uppercase;
}
.tjs-date {
  color: #CCCCCC;
  font-size: 10px;
}
.tjs-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 48px;
  font-weight: 400;
  color: #1E0E10;
  line-height: 1.15;
  margin: 0 0 20px;
}
.tjs-lede {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Featured image */
.tjs-hero-img {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}
.tjs-hero-img img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* Article body */
.tjs-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}
.tjs-content {
  font-size: 17px;
  color: #333333;
  line-height: 1.85;
}
.tjs-content p {
  margin: 0 0 24px;
}
.tjs-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  color: #1E0E10;
  margin: 48px 0 16px;
  line-height: 1.2;
}
.tjs-content h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: #1E0E10;
  margin: 36px 0 12px;
  line-height: 1.3;
}
.tjs-content a {
  color: #C25878;
  text-decoration: underline;
}
.tjs-content blockquote {
  border-left: 3px solid #C25878;
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: #5C1A2A;
  line-height: 1.5;
}
.tjs-content ul,
.tjs-content ol {
  padding-left: 24px;
  margin: 0 0 24px;
}
.tjs-content li { margin-bottom: 8px; }

/* Footer nav */
.tjs-footer-nav {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid #E0D4CC;
}
.tjs-back-footer {
  color: #C25878;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.tjs-back-footer:hover { color: #5C1A2A; }

/* Single article responsive */
@media (max-width: 900px) {
  .tjs-header { padding: 48px 40px 44px; }
  .tjs-title { font-size: 38px; }
  .tjs-body { padding: 48px 40px 64px; }
}
@media (max-width: 600px) {
  .tjs-header { padding: 40px 24px 36px; }
  .tjs-title { font-size: 30px; }
  .tjs-body { padding: 36px 24px 56px; }
  .tjs-content { font-size: 16px; }
}

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */

/* Hero */
.flor-contact-hero {
  background: #FAF6F0;
  border-bottom: 1px solid #E0D4CC;
  padding: 80px 64px 72px;
}
.flor-contact-hero-inner {
  max-width: 640px;
}
.flor-contact-eyebrow {
  font-size: 10px;
  letter-spacing: .18em;
  color: #C25878;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.flor-contact-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-style: italic;
  font-weight: 400;
  color: #1E0E10;
  line-height: 1.05;
  margin: 0 0 28px;
}
.flor-contact-intro {
  font-size: 17px;
  color: #555;
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}

/* Two-column body */
.flor-contact-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid #E0D4CC;
}

/* Right: detail lines */
.flor-contact-details {
  padding: 64px 48px;
  border-left: 1px solid #E0D4CC;
  background: #FAF6F0;
}
.flor-contact-section-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9A7A3A;
  margin-bottom: 28px;
}
.flor-contact-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.flor-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 28px;
  border-bottom: 1px solid #E0D4CC;
}
.flor-contact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.flor-contact-list-topic {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1E0E10;
}
.flor-contact-list-email {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: #C25878;
  text-decoration: none;
}
.flor-contact-list-email:hover {
  color: #5C1A2A;
  text-decoration: underline;
}
.flor-contact-note {
  font-size: 13px;
  color: #6B6B6B;
  font-style: italic;
  margin: 0;
}

/* Left: form */
.flor-contact-form-wrap {
  padding: 64px 56px;
  background: #FAF6F0;
}

/* ── Fluent Forms overrides ── */

/* Strip any white bg Fluent Forms adds to its wrapper */
.flor-contact-form-wrap .fluentform,
.flor-contact-form-wrap .ff-default {
  background: transparent !important;
}

/* Labels */
.flor-contact-form-wrap .ff-el-group label.ff-el-input--label {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: #1E0E10 !important;
  font-family: 'Inter', sans-serif !important;
  margin-bottom: 8px !important;
  display: block !important;
}

/* Text / email inputs — ivory pill */
.flor-contact-form-wrap .ff-el-input--content input[type="text"],
.flor-contact-form-wrap .ff-el-input--content input[type="email"] {
  width: 100% !important;
  border: 1px solid #E0D4CC !important;
  border-radius: 50px !important;
  padding: 13px 20px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #1E0E10 !important;
  background: #F5EFE6 !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}
.flor-contact-form-wrap .ff-el-input--content input[type="text"]:focus,
.flor-contact-form-wrap .ff-el-input--content input[type="email"]:focus {
  border-color: #C25878 !important;
  box-shadow: 0 0 0 3px rgba(194, 88, 120, .12) !important;
  outline: none !important;
}

/* Textarea — ivory, softly rounded */
.flor-contact-form-wrap .ff-el-input--content textarea {
  width: 100% !important;
  border: 1px solid #E0D4CC !important;
  border-radius: 16px !important;
  padding: 14px 20px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #1E0E10 !important;
  background: #F5EFE6 !important;
  box-shadow: none !important;
  outline: none !important;
  resize: vertical !important;
  min-height: 140px !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}
.flor-contact-form-wrap .ff-el-input--content textarea:focus {
  border-color: #C25878 !important;
  box-shadow: 0 0 0 3px rgba(194, 88, 120, .12) !important;
  outline: none !important;
}

/* Select / dropdown — ivory pill */
.flor-contact-form-wrap .ff-el-input--content select {
  width: 100% !important;
  border: 1px solid #E0D4CC !important;
  border-radius: 50px !important;
  padding: 13px 20px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #1E0E10 !important;
  background-color: #F5EFE6 !important;
  box-shadow: none !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 20px center !important;
  cursor: pointer !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}
.flor-contact-form-wrap .ff-el-input--content select:focus {
  border-color: #C25878 !important;
  box-shadow: 0 0 0 3px rgba(194, 88, 120, .12) !important;
  outline: none !important;
}

/* Field group spacing */
.flor-contact-form-wrap .ff-el-group {
  margin-bottom: 24px !important;
}

/* Error messages */
.flor-contact-form-wrap .error {
  font-size: 12px !important;
  color: #B03050 !important;
  margin-top: 4px !important;
}

/* Submit button */
.flor-contact-form-wrap .ff-btn-submit,
.flor-contact-form-wrap button[type="submit"],
.flor-contact-form-wrap .flor-ff-submit {
  background: #5C1A2A !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 14px 36px !important;
  cursor: pointer !important;
  transition: background .2s ease !important;
  margin-top: 8px !important;
}
.flor-contact-form-wrap .ff-btn-submit:hover,
.flor-contact-form-wrap button[type="submit"]:hover {
  background: #8B2A3A !important;
}

/* Confirmation message */
.flor-contact-form-wrap .ff-message-success {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: 20px !important;
  color: #5C1A2A !important;
  text-align: center !important;
  padding: 40px 20px !important;
}

/* Placeholder colour */
.flor-contact-form-wrap ::placeholder {
  color: #BBB !important;
}

/* Contact page responsive */
@media (max-width: 900px) {
  .flor-contact-hero { padding: 56px 32px 48px; }
  .flor-contact-h1   { font-size: 52px; }
  .flor-contact-body { grid-template-columns: 1fr; }
  .flor-contact-details  { border-left: none; border-top: 1px solid #E0D4CC; padding: 48px 32px; }
  .flor-contact-form-wrap { padding: 48px 32px; }
}
@media (max-width: 600px) {
  .flor-contact-hero { padding: 40px 24px 36px; }
  .flor-contact-h1   { font-size: 40px; }
  .flor-contact-details  { padding: 40px 24px; border-top: 1px solid #E0D4CC; border-left: none; }
  .flor-contact-form-wrap { padding: 40px 24px; }
}

/* ═══════════════════════════════════════════════
   FOOTER NEWSLETTER COLUMN
═══════════════════════════════════════════════ */
.flor-footer-nl-col h4 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C25878;
  margin: 0 0 20px;
}

.flor-footer-nl-blurb {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #B08888;
  line-height: 1.65;
  margin: 0 0 16px;
}

.flor-footer-nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flor-footer-nl-input {
  background-color: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  border-radius: 50px !important;
  padding: 9px 16px !important;
  color: #FAF6F0 !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .2s;
  box-shadow: none !important;
}

.flor-footer-nl-input:focus {
  border-color: rgba(194, 88, 120, 0.55) !important;
  background-color: rgba(255,255,255,0.10) !important;
}

.flor-footer-nl-input::placeholder {
  color: rgba(250, 246, 240, 0.35) !important;
}

.flor-footer-nl-btn {
  background: #C25878;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 9px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  transition: background .2s;
}

.flor-footer-nl-btn:hover    { background: #A8436A; }
.flor-footer-nl-btn:disabled { opacity: .6; cursor: default; }

/* Signup success / error message — shared between footer and homepage */
.flor-nl-msg {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  margin: 10px 0 0;
  line-height: 1.4;
}

.flor-nl-msg--ok  { color: #A8D5A2; }
.flor-nl-msg--err { color: #F8B0B0; }

/* Homepage bar: message sits below the input row on dark bg */
.flor-nl-form .flor-nl-msg {
  color: #E8D0D6;
}
.flor-nl-form .flor-nl-msg--ok  { color: #A8D5A2; }
.flor-nl-form .flor-nl-msg--err { color: #F8B0B0; }


/* ─────────────────────────────────────────────
   404 PAGE
───────────────────────────────────────────── */
.flor-404 {
  background: #FAF6F0;
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}
.flor-404-inner {
  max-width: 560px;
  width: 100%;
}
.flor-404-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #C25878;
  margin-bottom: 20px;
}
.flor-404-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 56px);
  font-style: italic;
  font-weight: 400;
  color: #1E0E10;
  line-height: 1.15;
  margin: 0 0 20px;
}
.flor-404-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6B6B6B;
  line-height: 1.7;
  margin: 0 0 36px;
}
.flor-404-home-btn {
  display: inline-block;
  background: #B03050;
  color: #FAF6F0;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  transition: background .2s;
  text-decoration: none;
}
.flor-404-home-btn:hover,
.flor-404-home-btn:focus {
  background: #8B2A3A;
  color: #FAF6F0;
}
.flor-404-tracks {
  margin-top: 48px;
}
.flor-404-tracks-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #9A7A3A;
  margin-bottom: 16px;
}
.flor-404-track-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.flor-404-track {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: #5C1A2A;
  text-decoration: none;
  border: 1px solid #E0D4CC;
  padding: 8px 20px;
  border-radius: 50px;
  transition: border-color .2s, color .2s;
}
.flor-404-track:hover,
.flor-404-track:focus {
  border-color: #C25878;
  color: #C25878;
}

@media (max-width: 600px) {
  .flor-404 { padding: 60px 20px; }
  .flor-404-track-links { gap: 8px; }
}

/* ─────────────────────────────────────────────
   LEGAL PAGES (Cookie Policy / Privacy Policy)
   Shared styles for .flor-legal-* components.
───────────────────────────────────────────── */

/* Page wrapper */
.flor-legal {
  background: #FAF6F0;
}

/* ── Hero banner ── */
.flor-legal-hero {
  background: #FAF6F0;
  border-bottom: 1px solid #E0D4CC;
  padding: 72px 64px 60px;
}
.flor-legal-hero-inner {
  max-width: 860px;
}
.flor-legal-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9A7A3A;
  margin: 0 0 18px;
}
.flor-legal-title {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: 64px;
  font-weight: 400 !important;
  color: #1E0E10;
  line-height: 1.08;
  margin: 0 0 18px;
}
.flor-legal-date {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: #9A7A3A;
  font-weight: 400;
  margin: 0;
}

/* ── Body / content column ── */
.flor-legal-body {
  padding: 72px 64px 96px;
}
.flor-legal-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Paragraphs */
.flor-legal-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #2A1A1E;
  line-height: 1.9;
  margin: 0 0 20px;
}
.flor-legal-content p:last-child { margin-bottom: 0; }

/* H2 — section headings (Playfair italic, deep wine)
   !important overrides Kadence's global heading font injection */
.flor-legal-content h2 {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: 30px;
  font-weight: 400 !important;
  color: #5C1A2A;
  line-height: 1.2;
  margin: 56px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E0D4CC;
}
.flor-legal-content h2:first-child { margin-top: 0; }

/* H3 — sub-section headings (Inter caps, mid-wine)
   !important same reason */
.flor-legal-content h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8B2A3A;
  margin: 40px 0 14px;
}

/* Email / inline links */
.flor-legal-content a,
.flor-legal-email {
  color: #5C1A2A;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .18s;
}
.flor-legal-content a:hover,
.flor-legal-email:hover {
  color: #C25878;
}

/* Placeholder notice (privacy policy draft state) */
.flor-legal-placeholder-notice {
  background: #F5EFE6;
  border-left: 3px solid #9A7A3A;
  padding: 16px 20px;
  font-style: italic;
  color: #6B5040 !important;
  border-radius: 0 4px 4px 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .flor-legal-hero { padding: 56px 40px 48px; }
  .flor-legal-title { font-size: 48px; }
  .flor-legal-body  { padding: 56px 40px 72px; }
}

@media (max-width: 600px) {
  .flor-legal-hero  { padding: 48px 24px 40px; }
  .flor-legal-title { font-size: 38px; }
  .flor-legal-body  { padding: 40px 24px 64px; }
  .flor-legal-content h2 { font-size: 24px; margin-top: 44px; }
}
