
/* ============================================================
   JOY RESTORED — joyrestored.com
   Brand system: Newsreader (display) · Hanken Grotesk (body/UI)
   Palette: Warm Ivory #F5F1E9 · Ocean Blue #1B568D
            Sage #8DAFA2 · Deep Sea #254E68
   Gradient (hero panels only): Deep Sea → Sage
   ============================================================ */

:root {
  --ivory: #F5F1E9;
  --ocean: #1B568D;
  --sage: #8DAFA2;
  --deep: #254E68;
  --ink: #24333E;
  --white: #FFFFFF;
  --sage-tint: #E4ECE8;
  --ivory-deep: #EDE7DA;
  --grad: linear-gradient(135deg, #254E68 0%, #3A6B78 55%, #8DAFA2 100%);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(37, 78, 104, 0.12);
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Type ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.12;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); font-weight: 400; }

h1 em, h2 em {
  font-style: italic;
  font-weight: 300;
}

.label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ocean);
}

.label--sage { color: var(--sage); }
.label--light { color: rgba(255, 255, 255, 0.75); }

.lede {
  font-size: 1.28rem;
  font-weight: 300;
  color: #3D4F5C;
  max-width: 46ch;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 36px;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--ocean);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(27, 86, 141, 0.28);
}
.btn--primary:hover { background: #174a7b; }

.btn--light {
  background: var(--white);
  color: var(--deep);
  box-shadow: 0 10px 24px rgba(20, 40, 55, 0.25);
}

.btn--ghost {
  border: 1.7px solid var(--ocean);
  color: var(--ocean);
}
.btn--ghost:hover { background: rgba(27, 86, 141, 0.07); }

.btn--ghost-light {
  border: 1.7px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.12); }

.btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.textlink {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocean);
  text-decoration: none;
  border-bottom: 1.7px solid var(--sage);
  padding-bottom: 4px;
}
.textlink:hover { border-color: var(--ocean); }

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(245, 241, 233, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(37, 78, 104, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--deep);
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--ocean); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.82rem;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--deep);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1.7px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover { color: var(--ocean); }
.nav-links a.active { color: var(--ocean); border-bottom-color: var(--sage); }

.nav-links .nav-cta {
  background: var(--ocean);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 999px;
  border-bottom: none;
}
.nav-links .nav-cta:hover { background: #174a7b; color: var(--white); }

.nav-toggle { display: none; }

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--deep);
  transition: transform 0.2s ease;
}
.nav-toggle-label span { top: 10px; }
.nav-toggle-label span::before { top: -9px; }
.nav-toggle-label span::after { top: 9px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--grad);
  color: var(--white);
  overflow: hidden;
}

.hero .ripple {
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 120px 28px 130px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero h1 { color: var(--white); max-width: 15ch; margin: 22px 0 26px; }

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
  max-width: 50ch;
  margin-bottom: 42px;
}

.hero--sub .hero-inner { padding: 96px 28px 100px; }

/* ---------- Sections ---------- */

section { padding: 96px 0; }

.section-head { max-width: 62ch; margin-bottom: 56px; }
.section-head h2 { margin: 16px 0 18px; }

.section-alt { background: var(--white); }
.section-sage { background: var(--sage-tint); }

.centered { text-align: center; }
.centered .section-head { margin-left: auto; margin-right: auto; }

/* ---------- Cards & grids ---------- */

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}

.card h3 { margin: 18px 0 14px; }
.card p { color: #3D4F5C; font-size: 1.05rem; }
.card .textlink { display: inline-block; margin-top: 24px; }

.card--feature {
  position: relative;
  overflow: hidden;
  background: var(--grad);
  color: var(--white);
}
.card--feature h3, .card--feature p { color: var(--white); }
.card--feature p { color: rgba(255,255,255,0.88); }
.card--feature .textlink { color: var(--white); border-color: rgba(255,255,255,0.6); }
.card--feature .ripple-corner {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  opacity: 0.3;
}

.icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 86, 141, 0.08);
}
.card--feature .icon-circle { background: rgba(255, 255, 255, 0.14); }

.icon-circle svg { width: 27px; height: 27px; }

/* ---------- Split layout ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split h2 { margin: 16px 0 20px; }
.split p + p { margin-top: 18px; }

.portrait-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grad);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.portrait-frame .ripple { width: 420px; height: 420px; opacity: 0.4; }
.portrait-frame .placeholder-note {
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.portrait-frame .monogram {
  font-family: var(--serif);
  font-style: italic;
  font-size: 6.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- Quote band ---------- */

.quote-band {
  background: var(--deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.quote-band .ripple {
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px; height: 640px;
  opacity: 0.18;
}
.quote-band blockquote {
  position: relative;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.35;
  max-width: 26ch;
  margin: 0 auto;
  text-align: center;
}
.quote-band cite {
  display: block;
  margin-top: 28px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ---------- Steps / numbered ---------- */

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.step {
  counter-increment: step;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.step::before {
  content: "0" counter(step);
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--sage);
  display: block;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: 1.02rem; color: #3D4F5C; }

/* ---------- Pricing / packages ---------- */

.package {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 46px 40px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--sage);
}
.package--featured { border-top-color: var(--ocean); }

.package .price {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--deep);
  margin: 20px 0 4px;
}
.package .price small {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #6B7B85;
}
.package ul {
  list-style: none;
  margin: 26px 0 34px;
  flex-grow: 1;
}
.package li {
  padding: 10px 0 10px 34px;
  position: relative;
  font-size: 1.02rem;
  color: #3D4F5C;
  border-bottom: 1px solid rgba(141, 175, 162, 0.25);
}
.package li:last-child { border-bottom: none; }
.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.7px solid var(--sage);
  background: radial-gradient(circle, var(--sage) 0 4px, transparent 4.5px);
}
.package .btn { align-self: flex-start; }

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ocean);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 18px;
}

/* ---------- FAQ ---------- */

.faq { max-width: 780px; margin: 0 auto; }

.faq details {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  font-family: var(--serif);
  font-size: 1.22rem;
  color: var(--deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.7rem;
  color: var(--sage);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 30px 26px;
  font-size: 1.04rem;
  color: #3D4F5C;
}

/* ---------- Podcast ---------- */

.episode {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 34px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.episode .ep-art {
  flex-shrink: 0;
  width: 86px; height: 86px;
  border-radius: 14px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
}
.episode .ep-art svg { width: 34px; height: 34px; }

.episode .ep-meta { flex-grow: 1; }
.episode .ep-num {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}
.episode h3 { margin: 6px 0 6px; font-size: 1.3rem; }
.episode p { font-size: 0.98rem; color: #3D4F5C; }

.platform-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.platform-row a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  text-decoration: none;
  border: 1.7px solid rgba(37, 78, 104, 0.3);
  border-radius: 999px;
  padding: 12px 24px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.platform-row a:hover { border-color: var(--ocean); color: var(--ocean); }

/* ---------- Contact ---------- */

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 52px 48px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 9px;
}

input, textarea, select {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  border: 1.7px solid rgba(37, 78, 104, 0.18);
  border-radius: 12px;
  padding: 15px 18px;
  transition: border-color 0.15s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--ocean);
}
textarea { resize: vertical; min-height: 150px; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--grad);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band .ripple {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 560px; height: 560px;
  opacity: 0.25;
}
.cta-band h2 { color: var(--white); max-width: 22ch; margin: 16px auto 20px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 52ch; margin: 0 auto 40px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.site-footer .brand { color: var(--white); font-size: 1.1rem; }
.site-footer .brand span { color: var(--sage); }
.site-footer .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--sage);
  margin-top: 18px;
  max-width: 30ch;
}

.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 12px; }
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.98rem;
}
.site-footer a:hover { color: var(--white); }

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Utility ---------- */

.mt-1 { margin-top: 18px; }
.mt-2 { margin-top: 36px; }
.mt-3 { margin-top: 56px; }
.note {
  font-size: 0.88rem;
  color: #6B7B85;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .grid-2, .grid-3, .steps, .split, .form-grid { grid-template-columns: 1fr; }
  .split { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-inner { padding: 84px 28px 92px; }
  section { padding: 72px 0; }

  .nav-toggle-label { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid rgba(37, 78, 104, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(37, 78, 104, 0.08);
  }
  .nav-links .nav-cta { border-radius: 0; text-align: center; }
  .nav-toggle:checked ~ .nav-links { max-height: 480px; }
  .episode { flex-direction: column; align-items: flex-start; }
}


/* ---------- Brand lockup & monogram ---------- */
.brand-logo{ display:inline-flex; align-items:center; gap:12px; text-decoration:none; white-space:nowrap; }
.jr-mark{ --sz:40px; flex-shrink:0; width:var(--sz); height:var(--sz); border-radius:50%;
  background:linear-gradient(140deg,#254E68 0%,#2F6270 55%,#8DAFA2 100%);
  display:inline-flex; align-items:center; justify-content:center; box-shadow:0 4px 12px rgba(37,78,104,0.22); }
.jr-j{ font-family:"Caveat",cursive; font-weight:700; color:#FFFFFF; line-height:1; }
.jr-r{ font-family:"Newsreader",serif; font-weight:500; color:#FFFFFF; line-height:1; }
.jr-mark .jr-j{ font-size:calc(var(--sz)*0.64); margin-right:-1px; transform:translateY(1px); }
.jr-mark .jr-r{ font-size:calc(var(--sz)*0.5); }
.brand-word{ display:inline-flex; align-items:baseline; gap:4px; }
.brand-joy{ font-family:"Caveat",cursive; font-weight:700; font-size:1.95rem; line-height:0.9; color:var(--ocean); }
.brand-restored{ font-family:var(--sans); font-weight:700; font-size:0.98rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--sage); }
.site-footer .brand-joy{ color:#FFFFFF; }
.site-footer .brand-restored{ color:var(--sage); }
.site-footer .brand-logo{ margin-bottom:2px; }
@media (max-width:600px){
  .nav .jr-mark{ --sz:34px; }
  .nav .brand-joy{ font-size:1.6rem; }
  .nav .brand-restored{ font-size:0.82rem; }
}
/* Monogram used as podcast art */
.ep-art .ep-mono{ display:inline-flex; align-items:baseline; }
.ep-art .jr-j{ font-size:2.7rem; margin-right:-1px; transform:translateY(3px); }
.ep-art .jr-r{ font-size:2.05rem; }

/* ---------- Hero choices ---------- */
.choice-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin:46px 0 40px; }
.choice{ display:flex; flex-direction:column; align-items:flex-start; background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.22); border-radius:18px; padding:28px 26px; text-decoration:none; color:#FFFFFF;
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  transition:transform .18s ease, background .18s ease, border-color .18s ease; }
.choice:hover{ transform:translateY(-4px); background:rgba(255,255,255,0.17); border-color:rgba(255,255,255,0.42); }
.choice--featured{ background:rgba(255,255,255,0.18); border-color:rgba(255,255,255,0.5); }
.choice-icon{ width:46px; height:46px; border-radius:50%; background:rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.choice-icon svg{ width:24px; height:24px; }
.choice h3{ color:#FFFFFF; font-size:1.3rem; margin-bottom:8px; }
.choice p{ color:rgba(255,255,255,0.85); font-size:0.97rem; line-height:1.55; margin-bottom:20px; flex-grow:1; }
.choice-go{ font-family:var(--sans); font-size:0.78rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
  color:#FFFFFF; border-bottom:1.7px solid var(--sage); padding-bottom:4px; }
.choice-tag{ align-self:flex-start; font-family:var(--sans); font-size:0.64rem; font-weight:700; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--deep); background:#FFFFFF; border-radius:999px; padding:5px 12px; margin-bottom:14px; }
.focus-row{ border-top:1px solid rgba(255,255,255,0.2); padding-top:26px; display:flex; flex-wrap:wrap; align-items:center; gap:14px 18px; }
.focus-label{ font-family:var(--sans); font-size:0.82rem; font-weight:500; letter-spacing:0.05em; color:rgba(255,255,255,0.8); }
.focus-chips{ display:flex; flex-wrap:wrap; gap:12px; }
.chip{ display:inline-flex; align-items:center; gap:9px; font-family:var(--sans); font-size:0.86rem; font-weight:600;
  letter-spacing:0.03em; color:#FFFFFF; text-decoration:none; border:1px solid rgba(255,255,255,0.35); border-radius:999px;
  padding:9px 18px; transition:background .15s ease, border-color .15s ease; }
.chip svg{ width:17px; height:17px; }
.chip:hover{ background:rgba(255,255,255,0.14); border-color:rgba(255,255,255,0.62); }
@media (max-width:900px){
  .choice-grid{ grid-template-columns:1fr; }
}

/* ---------- Real brand logo assets ---------- */
.brand-img{ height:48px; width:auto; display:block; }
.brand-mono{ height:44px; width:44px; border-radius:50%; display:block; }
.site-footer .brand-img{ filter:brightness(0) invert(1); opacity:0.95; height:42px; }
.ep-art{ background:none !important; box-shadow:none !important; }
.ep-mono-img{ width:86px; height:86px; border-radius:50%; display:block; box-shadow:0 6px 16px rgba(37,78,104,0.22); }
@media (max-width:600px){ .brand-mono{ height:36px; width:36px; } .brand-img{ height:40px; } }


/* ============================================================
   ADDED COMPONENTS â€” social, month timeline, assessment engine
   ============================================================ */

/* ---- Social icons ---- */
.social-row{ display:inline-flex; align-items:center; gap:12px; }
.social-row a{ display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%; border:1.5px solid rgba(37,78,104,0.25); color:var(--deep); transition:background .15s ease, border-color .15s ease, color .15s ease; }
.social-row a:hover{ border-color:var(--ocean); background:var(--ocean); color:#fff; }
.social-row svg{ width:18px; height:18px; }
.nav-social{ margin-left:2px; }
.site-footer .social-row a{ border-color:rgba(255,255,255,0.28); color:rgba(255,255,255,0.85); }
.site-footer .social-row a:hover{ background:var(--sage); border-color:var(--sage); color:var(--deep); }
.footer-social{ margin-top:22px; }
@media (max-width:900px){ .nav-social{ display:none; } }

/* ---- Month timeline (Becoming) ---- */
.timeline{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.tl-item{ background:var(--white); border-radius:var(--radius); padding:26px 28px; box-shadow:var(--shadow); border-left:4px solid var(--sage); }
.tl-item:nth-child(1){ border-left-color:var(--ocean); }
.tl-month{ font-family:var(--sans); font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--ocean); }
.tl-item h3{ margin:8px 0 8px; font-size:1.24rem; }
.tl-item p{ font-size:0.96rem; color:#3D4F5C; }
.tl-focus{ margin-top:12px; font-size:0.8rem; color:var(--sage); font-weight:600; letter-spacing:0.02em; }
@media (max-width:700px){ .timeline{ grid-template-columns:1fr; } }

/* ---- Assessment engine ---- */
.assess{ max-width:760px; margin:0 auto; }
.assess-card{ background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); padding:40px 40px; }
.assess-progress{ position:sticky; top:74px; z-index:30; background:rgba(245,241,233,0.94); backdrop-filter:blur(8px); padding:14px 0 12px; margin-bottom:8px; }
.assess-count{ font-family:var(--sans); font-size:0.8rem; font-weight:600; letter-spacing:0.04em; color:var(--deep); margin-bottom:8px; }
.assess-bar{ height:8px; background:var(--sage-tint); border-radius:999px; overflow:hidden; }
.assess-bar > span{ display:block; height:100%; width:0; background:var(--grad); border-radius:999px; transition:width .3s ease; }
.q-section-head{ margin:34px 0 6px; }
.q-section-head .label{ display:block; margin-bottom:6px; }
.q-section-head h2{ font-size:1.7rem; }
.q-card{ background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); padding:28px 32px; margin-bottom:16px; scroll-margin-top:150px; }
.q-num{ font-family:var(--sans); font-size:0.7rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--sage); }
.q-text{ font-family:var(--serif); font-size:1.26rem; color:var(--deep); line-height:1.35; margin:8px 0 20px; font-weight:400; }
.likert{ display:flex; flex-direction:column; gap:9px; }
.likert label{ display:flex; align-items:center; gap:13px; padding:12px 18px; border:1.7px solid rgba(37,78,104,0.16); border-radius:12px; cursor:pointer; font-family:var(--sans); font-weight:400; font-size:0.98rem; text-transform:none; letter-spacing:0; color:var(--ink); margin:0; transition:border-color .13s ease, background .13s ease; }
.likert label:hover{ border-color:var(--sage); background:var(--sage-tint); }
.likert input{ width:auto; accent-color:var(--ocean); flex-shrink:0; margin:0; cursor:pointer; }
.likert label:has(input:checked){ border-color:var(--ocean); background:rgba(27,86,141,0.06); font-weight:600; color:var(--ocean); }
.assess-actions{ margin-top:26px; }
.assess-note{ font-size:0.86rem; color:#6B7B85; margin-top:14px; }
.hidden{ display:none !important; }

/* results */
.result-ring{ width:190px; height:190px; margin:0 auto 10px; position:relative; }
.result-ring svg{ display:block; transform:rotate(-90deg); }
.result-ring .rv{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.result-ring .rv b{ font-family:var(--serif); font-size:2.7rem; color:var(--deep); font-weight:400; line-height:1; }
.result-ring .rv small{ font-family:var(--sans); font-size:0.7rem; letter-spacing:0.16em; text-transform:uppercase; color:#6B7B85; margin-top:4px; }
.result-band{ font-family:var(--serif); font-size:1.8rem; color:var(--ocean); text-align:center; margin:8px 0 6px; }
.result-blurb{ text-align:center; max-width:52ch; margin:0 auto 8px; color:#3D4F5C; }
.result-sections{ display:grid; gap:14px; margin:30px 0 8px; }
.rs-top{ display:flex; justify-content:space-between; font-family:var(--sans); font-size:0.9rem; font-weight:600; color:var(--deep); margin-bottom:6px; }
.rs-bar{ height:10px; background:var(--sage-tint); border-radius:999px; overflow:hidden; }
.rs-bar > span{ display:block; height:100%; background:var(--grad); border-radius:999px; }

/* assessment hub cards */
.assess-list{ display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:16px; }
.assess-tile{ display:flex; flex-direction:column; background:var(--white); border-radius:14px; box-shadow:var(--shadow); padding:24px 26px; text-decoration:none; border-top:4px solid var(--sage); transition:transform .15s ease; }
.assess-tile:hover{ transform:translateY(-4px); }
.assess-tile .at-month{ font-family:var(--sans); font-size:0.7rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--ocean); }
.assess-tile h3{ font-size:1.12rem; margin:8px 0 6px; }
.assess-tile p{ font-size:0.9rem; color:#3D4F5C; }
/* Header shows wordmark only; monogram lives in footer + favicon */
.site-header .brand-mono{ display:none; }
.site-header .brand-img{ height:46px; }
@media (max-width:600px){ .site-header .brand-img{ height:38px; } }
