/* =========================================================================
   Regan Hillyer Reviews — styles
   Aspirational / luxury coaching aesthetic. Cormorant Garamond + Inter.
   ========================================================================= */

:root {
  --cream: #faf7f2;
  --cream-2: #f3ede3;
  --ink: #1c1a17;
  --ink-soft: #4a463f;
  --gold: #c2a36b;
  --gold-deep: #a8854a;
  --hairline: #e7e0d4;
  --star: #d6a93c;
  --white: #ffffff;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1140px;
  --shadow: 0 18px 50px -28px rgba(28, 26, 23, 0.35);
  --shadow-hover: 0 26px 60px -26px rgba(28, 26, 23, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--gold-deep); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 840px; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
}

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: #2a2722; color: var(--white); box-shadow: var(--shadow-hover); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}
.btn-ghost:hover { background: var(--cream-2); color: var(--ink); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink);
}
.btn-gold:hover { box-shadow: 0 20px 44px -20px rgba(168, 133, 74, 0.7); color: var(--ink); }

.btn-pill { padding: 0.6em 1.3em; }

/* ---------------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark { color: var(--gold); font-size: 1.05em; line-height: 1; }
.brand-name { letter-spacing: 0.01em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.site-nav a {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.site-nav a:hover, .site-nav a.active { color: var(--ink); }
.site-nav a.active { font-weight: 600; }
.nav-cta { color: var(--ink) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  margin: 0 auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------- Stars */
.stars { display: inline-flex; gap: 1px; line-height: 1; }
.star { color: var(--hairline); font-size: 1.05em; }
.star.filled { color: var(--star); }

/* ---------------------------------------------------------------- Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 92px 0 80px;
  background:
    radial-gradient(900px 420px at 50% -8%, rgba(194, 163, 107, 0.16), transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.rating-num { font-weight: 700; }
.rating-sep { color: var(--gold); }
.rating-count { color: var(--ink-soft); }

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  margin-bottom: 0.45em;
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 auto 2rem;
}
.hero-ctas { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.hero-note {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------- Stats band */
.stats-band {
  background: var(--ink);
  color: var(--cream);
  padding: 54px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat { padding: 6px 4px; }
.stat-value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35em;
}
.stat-label {
  display: block;
  font-size: 0.92rem;
  color: #cfc7b8;
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------- Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--cream-2); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-lead { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }
.section-action { text-align: center; margin-top: 48px; }

/* ---------------------------------------------------------------- Review cards */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.42em 0.85em;
  border-radius: 999px;
}
.pill-program {
  background: var(--cream-2);
  color: var(--gold-deep);
  border: 1px solid var(--hairline);
}
.review-headline {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.review-body {
  margin: 0 0 22px;
  padding: 0;
  border: none;
  color: var(--ink-soft);
  font-size: 1.01rem;
  quotes: "\201C" "\201D";
}
.review-body::before { content: open-quote; color: var(--gold); font-family: var(--serif); font-size: 1.2em; }
.review-body::after { content: close-quote; color: var(--gold); font-family: var(--serif); font-size: 1.2em; }
.review-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold) 0%, var(--cream-2) 100%);
  border: 1px solid var(--hairline);
}
.avatar-anon { color: var(--gold-deep); font-size: 1.25rem; }
.reviewer { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.reviewer-name { font-weight: 600; font-size: 0.96rem; }
.reviewer-meta { font-size: 0.82rem; color: var(--ink-soft); }
.verified {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(194, 163, 107, 0.12);
  border: 1px solid rgba(194, 163, 107, 0.4);
  border-radius: 999px;
  padding: 0.3em 0.6em;
  white-space: nowrap;
}
.verified-check { font-size: 0.9em; }

/* ---------------------------------------------------------------- Teasers */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.teaser-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.teaser-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); color: var(--ink); }
.teaser-card h3 { font-size: 1.5rem; margin: 14px 0 0.4em; }
.teaser-card p { color: var(--ink-soft); margin-bottom: 18px; }
.teaser-link { margin-top: auto; font-weight: 600; color: var(--gold-deep); }

/* ---------------------------------------------------------------- FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 600;
  padding: 18px 32px 18px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--gold-deep);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 0 20px; }
.faq-answer p { color: var(--ink-soft); margin: 0; }

/* ---------------------------------------------------------------- CTA band */
.cta-band {
  background:
    radial-gradient(700px 300px at 50% 120%, rgba(194, 163, 107, 0.22), transparent 70%),
    var(--ink);
  color: var(--cream);
  padding: 78px 0;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 2.8rem); }
.cta-band p { color: #cfc7b8; font-size: 1.1rem; margin-bottom: 1.8rem; }

/* ---------------------------------------------------------------- Page hero */
.page-hero {
  text-align: center;
  padding: 76px 0 56px;
  background:
    radial-gradient(800px 360px at 50% -10%, rgba(194, 163, 107, 0.14), transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-top: 0.3em; }
.page-hero .rating-pill { margin-bottom: 1.3rem; }
.page-lead { max-width: 680px; margin: 0 auto; color: var(--ink-soft); font-size: 1.1rem; }

/* ---------------------------------------------------------------- Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.6em 1.3em;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--ink); }
.filter-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.filter-empty { text-align: center; color: var(--ink-soft); font-style: italic; }

/* ---------------------------------------------------------------- Case studies */
.case-list { display: flex; flex-direction: column; gap: 40px; }
.case-study {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 40px 38px;
  box-shadow: var(--shadow);
  scroll-margin-top: 100px;
}
.case-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.case-meta { font-size: 0.86rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.case-title { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.case-client { color: var(--ink-soft); margin-bottom: 24px; font-size: 0.96rem; }
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 28px;
  text-align: center;
}
.metric-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1.1;
  margin-bottom: 0.25em;
}
.metric-label { font-size: 0.82rem; color: var(--ink-soft); }
.case-blocks { display: flex; flex-direction: column; gap: 22px; margin-bottom: 28px; }
.case-block h3 {
  font-size: 0.82rem;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5em;
}
.case-block p { color: var(--ink-soft); margin: 0; }
.case-quote {
  margin: 0;
  padding: 24px 28px;
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  font-family: var(--serif);
  font-size: 1.32rem;
  font-style: italic;
  color: var(--ink);
}
.case-quote cite {
  display: block;
  margin-top: 0.6em;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------- Footer */
.site-footer {
  background: var(--ink);
  color: #cfc7b8;
  padding: 64px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(231, 224, 212, 0.16);
}
.footer-brand .brand-name { color: var(--cream); font-family: var(--serif); font-size: 1.4rem; font-weight: 700; }
.footer-brand .brand-mark { color: var(--gold); margin-right: 0.4em; font-size: 1.3rem; }
.footer-tagline { margin-top: 14px; max-width: 360px; color: #aaa394; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.footer-col h4 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1em;
}
.footer-col a { display: block; color: #cfc7b8; font-size: 0.94rem; margin-bottom: 0.6em; }
.footer-col a:hover { color: var(--gold); }
.footer-disclaimer { padding-top: 28px; font-size: 0.82rem; color: #8f897c; line-height: 1.6; }
.footer-disclaimer strong { color: #b3ac9d; }
.footer-disclaimer a { color: var(--gold); }
.footer-copy { margin-top: 12px; }

/* ---------------------------------------------------------------- Responsive */
@media (max-width: 900px) {
  .review-grid, .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--hairline);
    padding: 12px 24px 24px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--hairline); }
  .nav-cta { margin-top: 14px; align-self: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .review-grid, .teaser-grid { grid-template-columns: 1fr; }
  .case-metrics { grid-template-columns: 1fr; gap: 14px; }
  .case-study { padding: 28px 22px; }
  .hero { padding: 64px 0 56px; }
}

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