/*
Theme Name: BWRT Practitioner
Theme URI: https://maryalice.ie
Author: Mary Alice Miller
Description: One-page WordPress theme for a BWRT practitioner site, with a fixed top-right navigator that hops between sections as you scroll.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: bwrt-practitioner
*/

:root{
  --ivory:       #F7F1EA;
  --ivory-deep:  #EFE6DB;
  --ink:         #3B2E33;
  --ink-muted:   #7C6B71;
  --mauve:       #5A475F;
  --mauve-deep:  #3E2C36;
  --mauve-mid:   #6E505C;
  --blush:       #CBA79E;
  --blush-deep:  #B98A80;
  --gold:        #C9A96E;
  --hairline:    rgba(59,46,51,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body{
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.4em;
  font-weight: 600;
}

p{ color: var(--ink-muted); }

a{ color: var(--blush); }

.eyebrow{
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mauve);
  display: block;
  margin-bottom: 12px;
}

/* ---------------------------------------------
   NAVIGATOR — fixed top-right pill, hops between sections
--------------------------------------------- */
.navigator{
  position: fixed;
  top: 24px;
  right: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(90, 71, 95, 0.94);
  border: 1px solid rgba(203,167,158,0.35);
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
}

.navigator__item{
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  opacity: 0.75;
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 999px;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.navigator__item:hover{ opacity: 1; background: rgba(255,255,255,0.12); }

/* the hopping pill that lands behind the active label */
.navigator__pointer{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 999px;
  background: var(--blush);
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navigator__item.is-active{ opacity: 1; color: var(--mauve-deep); font-weight: 600; }

.navigator__item--dropdown{ display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.navigator__caret{ transition: transform 0.2s ease; flex-shrink: 0; }
.navigator__item--dropdown.is-open .navigator__caret{ transform: rotate(180deg); }

.navigator__dropdown{
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 0;
  background: rgba(90,71,95,0.97);
  border: 1px solid rgba(203,167,158,0.35);
  border-radius: 10px;
  padding: 6px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 998;
}

.navigator__dropdown.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.navigator__dropdown a{
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  border-radius: 6px;
  white-space: nowrap;
}

.navigator__dropdown a:hover{ background: rgba(255,255,255,0.12); }

@media (max-width: 720px){
  .navigator{
    top: 12px; left: 10px; right: 10px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 18px;
  }
  .navigator__item{ font-size: 12px; padding: 6px 10px; }

  /* the sliding pointer can't track a wrapped two-row layout, so hide it
     and highlight the active label with a solid fill instead */
  .navigator__pointer{ display: none; }
  .navigator__item.is-active{
    background: var(--blush);
    color: var(--mauve-deep);
    font-weight: 600;
  }
}

/* ---------------------------------------------
   SECTIONS
--------------------------------------------- */
section{
  padding: 72px 8vw 100px;
  max-width: 1180px;
  margin: 0 auto;
  border-bottom: 1px solid var(--hairline);
}

section:last-of-type{ border-bottom: none; }

#services, #what-is-bwrt, #faq, #about, #contact{ padding-top: 24px; }

#services{ padding-bottom: 50px; }
#what-is-bwrt{ padding-top: 10px; }
#contact{ border-bottom: none; }
#testimonials-cta{ padding-top: 0; padding-bottom: 70px; }

/* ==================================================================
   NMP PAGE — dark, premium landing page. Scoped to .nmp-page so the
   rest of the site (including header/footer) is untouched.
   ================================================================== */
.nmp-page{
  --nmp-bg:        #1B1420;
  --nmp-bg-alt:    #251A2C;
  --nmp-text:      #F3EAE6;
  --nmp-text-mid:  #D9CBD4;
  --nmp-text-muted:#AB99A6;
  --nmp-gold:      #C9A96E;
  --nmp-gold-deep: #B08F53;
  --nmp-border:    rgba(255,255,255,0.09);

  background:
    radial-gradient(ellipse 55% 65% at 50% 50%, rgba(120,80,138,0.55) 0%, rgba(120,80,138,0.2) 55%, transparent 75%),
    var(--nmp-bg);
  color: var(--nmp-text-mid);
}

.nmp-page .container{ width: min(1100px, 92%); margin: 0 auto; }
.nmp-page section{ padding: 70px 0; }
.nmp-page h1, .nmp-page h2, .nmp-page h3{ color: var(--nmp-text); font-family: var(--font-display); }
.nmp-page h2{ font-size: 34px; text-align: center; margin: 0 0 40px; }
.nmp-page h3{ font-size: 20px; margin: 0 0 10px; font-family: var(--font-body); font-weight: 700; }
.nmp-page p{ font-size: 17px; line-height: 1.7; }
.nmp-page strong{ color: var(--nmp-text); }
.nmp-page em{ color: var(--nmp-gold); font-style: italic; }

/* Return-to buttons need to read on a dark page, not disappear into it */
.nmp-page .btn-return{
  background: transparent;
  border: 1px solid var(--nmp-gold);
  color: var(--nmp-gold);
}
.nmp-page .btn-return:hover{ background: var(--nmp-gold); color: var(--nmp-bg); }

.nmp-hero{ padding-top: 60px; padding-bottom: 10px; }
.nmp-tag{
  display: inline-block;
  padding: 7px 18px;
  border-radius: 50px;
  background: var(--nmp-gold);
  color: var(--nmp-bg);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.nmp-hero h1{ font-size: 42px; line-height: 1.15; margin: 0 0 20px; text-align: left; }

.nmp-hero__grid{
  display: flex;
  align-items: center;
  gap: 50px;
}
.nmp-hero__body{ text-align: left; flex: 1 1 auto; min-width: 0; }
.nmp-hero__body h2{ font-size: 22px; font-weight: 400; color: var(--nmp-text-mid); text-align: left; margin: 0 0 24px; font-family: var(--font-display); font-style: italic; }
.nmp-hero__body p{ margin: 0 0 14px; }
.nmp-page .lead{ font-size: 19px; color: var(--nmp-text); font-weight: 600; }

.nmp-jumpnav{
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 240px;
}
.nmp-jumpnav a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--nmp-border);
  color: var(--nmp-text);
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s;
}
.nmp-jumpnav a:hover{ border-color: var(--nmp-gold); color: var(--nmp-gold); }
.nmp-jumpnav a::after{ content: "\2193"; color: var(--nmp-gold); font-size: 12px; }

.nmp-page [id^="nmp-"]{ scroll-margin-top: 30px; }

@media (max-width: 900px){
  .nmp-hero__grid{ flex-direction: column; align-items: stretch; gap: 24px; }
  .nmp-jumpnav{ flex-direction: row; flex-wrap: wrap; flex: none; }
}


.nmp-page .btn-primary{
  display: inline-block;
  margin-top: 24px;
  padding: 15px 34px;
  border-radius: 50px;
  background: var(--nmp-gold);
  color: var(--nmp-bg);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.2s;
}
.nmp-page .btn-primary:hover{ background: var(--nmp-gold-deep); transform: translateY(-2px); }

.nmp-cards{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.nmp-card{
  background: rgba(37,26,44,0.6);
  border: 1px solid var(--nmp-border);
  border-radius: 16px;
  padding: 30px;
  transition: 0.2s;
}
.nmp-card:hover{ border-color: var(--nmp-gold); transform: translateY(-4px); }
.nmp-card__icon{ font-size: 22px; margin-bottom: 10px; color: var(--nmp-gold); }
.nmp-card ul{ list-style: none; padding: 0; margin: 0; }
.nmp-card li{ padding: 9px 0; border-bottom: 1px solid var(--nmp-border); font-size: 15px; }
.nmp-card li:last-child{ border-bottom: none; }
.nmp-card p{ margin-top: 16px; font-size: 15px; color: var(--nmp-text-muted); }
.nmp-card__closer{
  margin-top: 20px !important;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 27px !important;
  font-weight: 600;
  color: var(--nmp-gold) !important;
}

.nmp-process{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.nmp-process article{
  background: rgba(37,26,44,0.6);
  border-left: 4px solid var(--nmp-gold);
  border-radius: 12px;
  padding: 26px 30px;
}
.nmp-process article.nmp-process__full{ grid-column: 1 / -1; }
.nmp-process p{ margin: 0; font-size: 15px; color: var(--nmp-text-muted); }

.nmp-page h2:has(+ .intro){ margin-bottom: 14px; }
.nmp-page .intro{ text-align: center; max-width: 700px; margin: 0 auto 34px; }

.nmp-accordion{ display: flex; flex-direction: column; gap: 14px; max-width: 920px; margin: 0 auto; }
.nmp-accordion-item{
  background: rgba(37,26,44,0.6);
  border: 1px solid var(--nmp-border);
  border-radius: 12px;
  overflow: hidden;
}
.nmp-accordion-item button{
  width: 100%;
  background: none;
  border: none;
  color: var(--nmp-text);
  padding: 20px 46px 20px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.nmp-accordion-item button::after{
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--nmp-gold);
}
.nmp-accordion-item.is-open button::after{ content: "\2212"; }
.nmp-accordion-content{ display: none; padding: 0 24px 22px; }
.nmp-accordion-item.is-open .nmp-accordion-content{ display: block; }
.nmp-accordion-content p{ font-size: 15px; color: var(--nmp-text-muted); margin: 0 0 12px; }
.nmp-accordion-content p:last-child{ margin-bottom: 0; }
.nmp-accordion-content strong{ color: var(--nmp-text); }
.nmp-accordion-content em{ color: var(--nmp-gold); }

.nmp-cta{ text-align: center; background: rgba(37,26,44,0.6); }
.nmp-cta p{ max-width: 640px; margin: 0 auto 10px; }
.nmp-cta blockquote{
  margin: 40px auto 0;
  max-width: 580px;
  font-family: var(--font-display);
  font-size: 21px;
  font-style: italic;
  color: var(--nmp-gold);
  line-height: 1.6;
}

@media (max-width: 1024px){
  .nmp-accordion-item button{ font-size: 15px; padding: 18px 40px 18px 20px; }
}

@media (max-width: 900px){
  .nmp-cards{ grid-template-columns: 1fr; }
  .nmp-process{ grid-template-columns: 1fr; }
  .nmp-hero h1{ font-size: 30px; }
  .nmp-hero__body h2{ font-size: 18px; }
  .nmp-page h2{ font-size: 26px; }
  .nmp-page section{ padding: 50px 0; }
}

#what-is-bwrt, #about{ max-width: 1400px; }

.section-head h2{ font-size: 40px; }
.section-head .sub{ font-size: 17px; color: var(--ink-muted); margin-bottom: 30px; }

/* Banner heading — leaf-flanked rule with an italic display line, used to
   break up sections with a bit more character than a plain h2. */
.banner-heading{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.banner-heading__rule{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.banner-heading__line{
  height: 1px;
  width: 56px;
  background: var(--blush);
  opacity: 0.7;
}

.banner-heading__leaf{ width: 22px; height: 22px; color: var(--mauve); flex-shrink: 0; }

.banner-heading__text{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--mauve);
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 600px){
  .banner-heading__line{ width: 32px; }
}

/* HOME */
.hero{
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: url('http://maryalice.ie/wp-content/uploads/2026/07/®.png');
  background-size: cover;
  background-position: center;
}

/* Large invisible click zone over the "Discover BWRT" area baked into the image.
   Positioned by percentage so it roughly tracks the image at different screen sizes;
   generously sized so near-misses still register. */
.hero__discover{
  position: absolute;
  left: 0;
  top: 30%;
  width: 62%;
  height: 70%;
  display: block;
}

@media (max-width: 900px){
  .hero__discover{ top: 40%; width: 90%; height: 60%; }
}

@media (max-width: 900px){
  .hero{
    background-size: 920px auto;
    background-position: -50px 30px;
    background-repeat: no-repeat;
    min-height: 580px;
  }

  .section-head h2, .full-card h2{ line-height: 1.15; }
}

/* SERVICES GRID */
.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.service-card{
  background: #fff;
  border-left: 4px solid var(--blush);
  padding: 28px 26px;
  border-radius: 2px;
}

.service-card.wide{ grid-column: span 2; }
.service-card.full{ grid-column: span 3; }

.service-card--nmp{
  background:
    radial-gradient(ellipse 55% 140% at 50% 50%, rgba(120,80,138,0.55) 0%, rgba(120,80,138,0.15) 55%, transparent 75%),
    #1B1420;
  border-left: 4px solid var(--gold);
  color: #F3EAE6;
}
.service-card--nmp__eyebrow{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  color: var(--gold);
  margin: 0 0 8px;
}
.service-card--nmp h4{ color: #fff; }
.service-card--nmp p{ color: #D9CBD4; }
.service-card--nmp .service-card__link,
.service-card--nmp .btn{ color: #1B1420; }

.service-card__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mauve);
}

.service-card__link span{ transition: transform 0.25s ease; }
.service-card__link:hover span{ transform: translateX(4px); }

.service-card h4{ font-size: 24px; margin-bottom: 10px; line-height: 1.15; }
.service-card__icon-img{ width: 44px; height: auto; display: block; margin-bottom: 12px; }

.service-card__flag-heading{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px !important;
}
.service-card__flag-icon{ width: 36px; height: auto; display: block; }
.service-card__flag-heading + h4{ margin-top: 0; }
.service-card p{ font-size: 15px; margin: 0; }

@media (max-width: 900px){
  .service-grid{ grid-template-columns: 1fr; }
  .service-card.wide{ grid-column: span 1; }
  .service-card.full{ grid-column: span 1; }
}

/* THREE-COLUMN INFO BLOCKS (What is BWRT / About Me) */
.trio{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 10px;
}

.trio__col{ padding: 24px; }
.trio__col.filled{ background: var(--mauve-deep); color: #fff; border-radius: 2px; }
.trio__col.filled h2, .trio__col.filled h3{ color: #fff; }
.trio__col.filled p{ color: rgba(255,255,255,0.88); }

.trio__col h3{
  font-size: clamp(20px, 2.1vw, 30px);
  margin-top: 0;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.trio__tag{ font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.trio__col.filled .trio__tag{ color: #fff; }
#what-is-bwrt .trio__tag{ font-style: italic; }
#about .trio__tag{ font-style: italic; }

.trio__col hr{
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 14px 0 18px;
}
.trio__col.filled hr{ border-top-color: rgba(255,255,255,0.3); }

@media (max-width: 900px){
  .trio{ grid-template-columns: 1fr; }
}

.full-card{
  margin-top: 30px;
  background: var(--ivory-deep);
  padding: 40px;
  border-radius: 2px;
  border-left: 4px solid var(--blush);
}
.full-card h2{ font-size: 34px; }
.full-card h2:first-child{ margin-top: 0; }
.full-card > *:last-child{ margin-bottom: 0; }

.signature{
  font-family: 'Sacramento', cursive;
  font-size: 38px;
  color: var(--mauve);
  margin-top: 24px;
  line-height: 1;
}

/* FAQ */
.faq-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.faq-card{
  background: #fff;
  border-left: 4px solid var(--blush);
  padding: 26px;
}

.faq-card.wide{ grid-column: span 2; }

.faq-card h4{ font-size: 22px; margin-bottom: 8px; }
.faq-card p{ font-size: 15px; margin: 0; }

.faq-card__icon{ display: none; }

@media (max-width: 900px){
  .faq-card{ cursor: pointer; }

  .faq-card h4{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0;
  }

  .faq-card__icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--blush);
    color: var(--mauve);
    font-size: 16px;
    line-height: 1;
    transition: transform 0.25s ease;
  }

  .faq-card__icon::before{ content: "+"; }

  .faq-card.is-open .faq-card__icon{ transform: rotate(135deg); }

  .faq-card p{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.3s ease;
  }

  .faq-card.is-open p{
    max-height: 400px;
    opacity: 1;
    margin-top: 12px;
  }
}

@media (max-width: 900px){
  .faq-grid{ grid-template-columns: 1fr; }
  .faq-card.wide{ grid-column: span 1; }
}

/* TESTIMONIALS (shared footer.php — appears on every page) */
.testimonials-page{
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial{
  margin: 0;
  background: var(--mauve);
  border: 1px solid rgba(203,167,158,0.3);
  border-radius: 10px;
  padding: 30px 20px;
}

.testimonial__stars{
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.legal .testimonial p{
  font-family: var(--font-display);
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  color: #FFF3E0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
  margin: 0 0 14px;
}

.testimonial p:last-of-type{ margin-bottom: 16px; }

.testimonial cite{
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.testimonial cite .flag{ text-transform: none; }

/* Review snippet callouts (see bwrt_review_snippet() in functions.php) */
.review-snippet{
  grid-column: 1 / -1;
  width: 82%;
  max-width: 640px;
  margin: 10px auto;
  background: var(--blush);
  clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
  padding: 16px 34px;
  text-align: center;
}

.review-snippet__stars{
  color: var(--mauve-deep);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.review-snippet .review-snippet__quote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: #241A1F;
  margin: 0 0 6px;
  line-height: 1.4;
}

.review-snippet .review-snippet__attr{
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #241A1F;
  margin: 0;
}

.review-snippet__meta{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.review-snippet .review-snippet__name{
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #241A1F;
  margin: 0;
}

.review-snippet .review-snippet__link{
  display: inline-block;
  background: var(--ivory);
  color: var(--mauve-deep);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 30px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.22);
  transition: transform 0.15s, box-shadow 0.15s;
}
.review-snippet .review-snippet__link:hover{
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.28);
}

/* every flag — country or Pride — is clipped to the same fixed box so
   top/bottom edges line up exactly regardless of how each glyph renders */
.flag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 18px;
  overflow: hidden;
  vertical-align: middle;
}

.flag--emoji{
  font-size: 22px;
  line-height: 1;
}

.flag--pride{
  border-radius: 1px;
  margin-top: 3px;
  background: linear-gradient(
    to bottom,
    #E40303 0%, #E40303 16.66%,
    #FF8C00 16.66%, #FF8C00 33.32%,
    #FFED00 33.32%, #FFED00 49.98%,
    #008026 49.98%, #008026 66.64%,
    #004DFF 66.64%, #004DFF 83.3%,
    #750787 83.3%, #750787 100%
  );
}

.review-snippet__flags--pride{ display: none; } /* superseded by .flag--pride */

.review-snippet--plain .review-snippet__quote{ font-size: 17px; }


.review-snippet--cta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  clip-path: none;
  border-radius: 70px;
  padding: 26px 46px;
  background: var(--mauve);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.review-snippet--cta:hover{ background: var(--mauve-mid); transform: translateY(-2px); }

.review-snippet--cta .review-snippet__cta-stars{
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
}

.review-snippet--cta .review-snippet__cta-text{ display: flex; flex-direction: column; align-items: center; }

.review-snippet--cta .review-snippet__quote{
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 29px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 6px;
  white-space: nowrap;
}
.review-snippet--cta .review-snippet__attr{
  display: block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 700px){
  .review-snippet--cta{ flex-wrap: wrap; gap: 12px; padding: 22px 26px; }
  .review-snippet--cta .review-snippet__quote{ font-size: 22px; white-space: normal; }
  .review-snippet--cta .review-snippet__attr{ white-space: normal; }
}

.btn-return{ background: var(--mauve-deep); color: #fff; }
.btn-return:hover{ background: #2c1f27; color: #fff; }

@media (max-width: 700px){
  .review-snippet{ width: 96%; padding: 14px 22px; }
  .review-snippet__quote{ font-size: 16px; }
}

/* CONTACT / FOOTER */
.site-footer{
  background: var(--mauve-deep);
  color: #fff;
  padding: 24px 8vw;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logoleft links logoright" ". . caption";
  align-items: center;
  column-gap: 16px;
  row-gap: 8px;
}

.site-footer .footer-links{
  grid-area: links;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.footer-links__col{
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.footer-links__col--divider{
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 28px;
}

.site-footer__logo-left{ grid-area: logoleft; width: 140px; display: block; border-radius: 4px; }

.site-footer__logo-right{ grid-area: logoright; width: 30px; display: block; justify-self: center; }

.site-footer__caption{ grid-area: caption; color: #fff; margin: 0; font-size: 13px; text-align: center; line-height: 1.5; }

@media (max-width: 700px){
  .site-footer{
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "links links"
      "logoleft logoright"
      ". caption";
    justify-items: center;
  }
  .site-footer .footer-links{
    flex-direction: row;
    gap: 20px;
  }
}

.btn{
  display: inline-block;
  padding: 14px 30px;
  background: var(--blush);
  color: var(--mauve-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  border: none;
}

.btn:hover{ background: var(--blush-deep); color: var(--mauve-deep); }

.footer-links a{
  color: var(--blush);
  font-size: 13px;
  opacity: 0.9;
}

.footer-links a:hover{ opacity: 1; color: #fff; }

/* PRIVACY PAGE (page-privacy.php) */
.legal{
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 8vw 60px;
}
.legal h1{ font-size: 40px; }

.lgbtq-hero-heading{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.lgbtq-hero-heading__flag{ width: 90px; height: auto; flex-shrink: 0; display: block; }

.lgbtq-hero-heading__title{
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  margin: 0;
}

@media (max-width: 700px){
  .lgbtq-hero-heading{
    flex-direction: column;
    align-items: flex-start;
  }
}
.legal h2{ font-size: 26px; margin-top: 40px; }
.legal p{ color: var(--ink-muted); }

/* LEVEL 1 GUIDE PAGE */
.guide__title{
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.15;
  white-space: nowrap;
  max-width: none;
}

.guide h2{ line-height: 1.15; }

.guide__subnote{
  margin: 0 0 4px !important;
  font-size: 14px !important;
  color: var(--mauve) !important;
}

.guide__subnav{
  position: sticky;
  top: 92px;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--mauve-deep);
  border-radius: 14px;
  padding: 14px;
  margin: 28px 0 40px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
}

.guide__subnav-item{
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid rgba(203,167,158,0.5);
  color: var(--blush);
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.guide__subnav-item:hover{ background: rgba(203,167,158,0.18); }

.guide__subnav-item.is-active{
  background: var(--blush);
  border-color: var(--blush);
  color: var(--mauve-deep);
  font-weight: 700;
}

.guide__subnav-item--home{
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.guide__subnav-item--home:hover{ background: #fff; color: var(--mauve-deep); }

.guide__category{ scroll-margin-top: 90px; }

@media (max-width: 700px){
  .guide__title{ white-space: normal; line-height: 1.1; }
  .guide__subnav{
    top: 100px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
