/* ============================================
   LorrenBooher.Co — Production Stylesheet
   Version: 1.0 — Launch Ready
   ============================================ */

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

:root {
  --cream:         #FFF8F1;
  --warm-white:    #FFFCF8;
  --charcoal:      #2B2B2B;
  --ink:           #3D3530;
  --muted:         #7A6E68;
  --emerald:       #0F4D3A;
  --emerald-light: #E6F0ED;
  --emerald-mid:   #1A6B52;
  --blush:         #F4C7C3;
  --blush-light:   #FDF0EE;
  --gold:          #C89B3C;
  --gold-light:    #FBF5E6;
  --border:        rgba(43,43,43,0.1);
  --border-strong: rgba(43,43,43,0.18);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ── */
.container { max-width: 960px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,252,248,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--charcoal); text-decoration: none; letter-spacing: -0.01em;
}
.nav__logo span { color: var(--emerald); }
.nav__right { display: flex; gap: 1rem; align-items: center; }
.nav__ghost {
  font-size: 13.5px; font-weight: 500; color: var(--charcoal);
  text-decoration: none; transition: color 0.15s;
}
.nav__ghost:hover { color: var(--emerald); }
.nav__btn {
  font-size: 13.5px; font-weight: 600; color: #fff;
  background: var(--emerald); border-radius: 3px; padding: 7px 18px;
  text-decoration: none; transition: all 0.18s;
}
.nav__btn:hover { background: var(--emerald-mid); }

/* ── HERO ── */
.hero { background: var(--cream); padding: 8rem 2rem 5rem; }
.hero__inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 5rem; align-items: end;
}
.hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--emerald); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 10px;
}
.hero__eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--emerald); }
.hero__h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--charcoal); margin-bottom: 1.4rem;
}
.hero__h1 em { font-style: italic; color: var(--emerald); }
.hero__lead { font-size: 1rem; color: var(--ink); line-height: 1.85; margin-bottom: 1rem; max-width: 460px; }
.hero__credential-strip { display: flex; flex-wrap: wrap; gap: 8px; margin: 1.75rem 0; }
.hero__pill {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.04em;
  padding: 5px 12px; border-radius: 2px;
  background: var(--charcoal); color: rgba(255,255,255,0.85);
}
.hero__pill--gold { background: var(--gold-light); color: var(--gold); border: 1px solid rgba(200,155,60,0.25); }
.hero__cta {
  display: inline-block; background: var(--emerald); color: #fff;
  font-weight: 600; font-size: 14px; padding: 13px 28px;
  border-radius: 3px; text-decoration: none; transition: all 0.18s;
}
.hero__cta:hover { background: var(--emerald-mid); transform: translateY(-1px); }
.hero__photo-col { display: flex; flex-direction: column; align-items: flex-end; }
.hero__photo-frame {
  width: 88%; aspect-ratio: 3/4;
  background: var(--blush-light);
  border: 1px solid rgba(244,199,195,0.4);
  border-radius: 4px; overflow: hidden; position: relative;
}
.hero__photo-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero__photo-fallback {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(244,199,195,0.12) 14px, rgba(244,199,195,0.12) 15px);
}
.hero__photo-cap { font-size: 12px; color: var(--muted); margin-top: 0.75rem; text-align: right; width: 88%; font-style: italic; }

/* ── AUTHORITY BAR ── */
.authority-bar { background: var(--charcoal); padding: 1.5rem 2rem; }
.authority-bar__inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.authority-stat { text-align: center; }
.authority-stat__num {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: #fff; line-height: 1; display: block;
}
.authority-stat__num em { font-style: italic; color: var(--blush); }
.authority-stat__label { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; display: block; }
.authority-bar__div { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ── PULL QUOTE ── */
.quote-band { background: var(--emerald); padding: 5rem 2rem; text-align: center; }
.quote-band__inner { max-width: 800px; margin: 0 auto; }
.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-style: italic; font-weight: 400; line-height: 1.45; color: #fff;
  margin-bottom: 1.5rem;
}
.quote-band blockquote em { color: var(--blush); font-style: normal; }
.quote-band cite { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.12em; text-transform: uppercase; font-style: normal; }

/* ── SECTION LABELS ── */
.sec-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 0.75rem; display: flex; align-items: center; gap: 8px;
}
.sec-label::before { content: ''; display: block; width: 20px; height: 1.5px; }
.sec-label--emerald { color: var(--emerald); }
.sec-label--emerald::before { background: var(--emerald); }
.sec-label--blush { color: #B5726E; }
.sec-label--blush::before { background: #B5726E; }
.sec-label--gold { color: var(--gold); }
.sec-label--gold::before { background: var(--gold); }
.sec-label--muted { color: var(--muted); }
.sec-label--muted::before { background: var(--muted); }

/* ── STORY ── */
.story { padding: 5.5rem 2rem; }
.story__inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.story__col h2 {
  font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--charcoal); margin-bottom: 1.4rem;
}
.story__col p { font-size: 0.96rem; color: var(--ink); line-height: 1.88; margin-bottom: 1rem; }
.story__col p strong { color: var(--charcoal); font-weight: 600; }
.story__col p em { font-style: italic; color: var(--emerald); }
.story__pull {
  border-left: 2.5px solid var(--blush);
  padding: 1.1rem 1.4rem; background: var(--blush-light);
  border-radius: 0 4px 4px 0; margin: 1.5rem 0;
  font-family: var(--serif); font-size: 1.1rem; font-style: italic;
  color: #8B5E5B; line-height: 1.55;
}
.story__divider { width: 1px; background: var(--border); }

/* ── CREDENTIALS ── */
.creds { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4.5rem 2rem; }
.creds__inner { max-width: 960px; margin: 0 auto; }
.creds h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--charcoal); margin-bottom: 2.5rem; max-width: 560px;
}
.creds__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.cred { background: var(--warm-white); padding: 1.75rem; }
.cred__icon { font-size: 1.3rem; margin-bottom: 0.65rem; display: block; }
.cred__title { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; line-height: 1.3; }
.cred__body { font-size: 13px; color: var(--muted); line-height: 1.65; }
.cred--featured { background: var(--charcoal); }
.cred--featured .cred__title { color: #fff; }
.cred--featured .cred__body { color: rgba(255,255,255,0.5); }

/* ── SALES HISTORY ── */
.sales-history { padding: 5.5rem 2rem; }
.sales-history__inner { max-width: 960px; margin: 0 auto; }
.sales-history__intro { max-width: 680px; margin-bottom: 3.5rem; }
.sales-history__intro h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--charcoal); margin-bottom: 1rem;
}
.sales-history__intro h2 em { font-style: italic; color: var(--emerald); }
.sales-history__intro p { font-size: 0.97rem; color: var(--muted); line-height: 1.85; }
.sales-history__narrative { font-size: 1rem; color: var(--ink); line-height: 1.95; margin-bottom: 2.5rem; max-width: 680px; }
.sales-history__narrative strong { color: var(--charcoal); font-weight: 600; }
.sales-history__narrative em { font-style: italic; color: var(--emerald); }
.sales-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 2rem;
}
.sales-card { background: var(--warm-white); padding: 1.5rem 1.25rem; }
.sales-card__sector {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--emerald); margin-bottom: 0.6rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border);
}
.sales-card__title { font-size: 13.5px; font-weight: 600; color: var(--charcoal); margin-bottom: 0.3rem; line-height: 1.25; }
.sales-card__detail { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.sales-through-line {
  padding: 2rem; background: var(--charcoal); border-radius: 4px;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.sales-through-line p {
  font-family: var(--serif); font-size: 1.2rem; font-style: italic;
  color: rgba(255,255,255,0.85); line-height: 1.5; flex: 1; min-width: 240px;
}
.sales-through-line strong { color: #fff; font-style: normal; }
.sales-badge { background: var(--emerald); color: #fff; padding: 1.25rem 1.75rem; border-radius: 3px; text-align: center; white-space: nowrap; flex-shrink: 0; }
.sales-badge__num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; line-height: 1; display: block; }
.sales-badge__label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; display: block; margin-top: 4px; }

/* ── ETSY TABLE ── */
.etsy { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5.5rem 2rem; }
.etsy__inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.etsy h2 {
  font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 1.25rem;
}
.etsy p { font-size: 0.96rem; color: var(--ink); line-height: 1.88; margin-bottom: 0.9rem; }
.etsy p strong { color: var(--charcoal); font-weight: 600; }
.etsy p em { color: var(--emerald); font-style: italic; }
.etsy__disclaimer { font-size: 12px; color: var(--muted); font-style: italic; line-height: 1.65; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.etsy__table-wrap { background: var(--charcoal); border-radius: 5px; overflow: hidden; }
.etsy__table-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.etsy__table { width: 100%; border-collapse: collapse; }
.etsy__table th { font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 0.65rem 1.5rem; text-align: left; }
.etsy__table td { font-size: 13.5px; color: rgba(255,255,255,0.7); padding: 0.7rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.04); }
.etsy__table td.money { color: #8ECFA8; font-weight: 500; }
.etsy__table td.note { color: rgba(255,255,255,0.32); font-size: 12px; font-style: italic; }
.etsy__table tr.total td { border-top: 1px solid rgba(255,255,255,0.15); color: #fff; font-weight: 600; }
.etsy__table tr.total td.money { color: #6DC98A; }

/* ── VALUES ── */
.values { padding: 5.5rem 2rem; }
.values__inner { max-width: 760px; margin: 0 auto; }
.values h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 3rem;
}
.values__list { list-style: none; }
.values__item { display: grid; grid-template-columns: 3rem 1fr; gap: 0 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); align-items: start; }
.values__item:first-child { border-top: 1px solid var(--border); }
.values__num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: rgba(15,77,58,0.15); line-height: 1; padding-top: 2px; }
.values__content h3 { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.35rem; }
.values__content p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); border-top: 1px solid var(--border); padding: 5.5rem 2rem; }
.testimonials__inner { max-width: 960px; margin: 0 auto; }
.testimonials h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 0.6rem;
}
.testimonials__sub { font-size: 0.96rem; color: var(--muted); margin-bottom: 3rem; max-width: 500px; }
.t-featured { background: var(--charcoal); border-radius: 5px; padding: 2.5rem; margin-bottom: 1.25rem; }
.t-featured__quote {
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.4rem); font-style: italic;
  line-height: 1.5; color: rgba(255,255,255,0.88); margin-bottom: 1.25rem;
}
.t-featured__by { font-size: 13px; color: rgba(255,255,255,0.4); }
.t-featured__by strong { color: rgba(255,255,255,0.75); font-weight: 600; display: block; margin-bottom: 2px; font-style: normal; }
.t-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.t-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem; }
.t-card p { font-size: 14px; color: var(--ink); line-height: 1.78; margin-bottom: 1rem; font-style: italic; }
.t-card__by { font-size: 12px; color: var(--muted); }
.t-card__by strong { color: var(--charcoal); font-weight: 600; display: block; margin-bottom: 1px; }
.t-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem; }
.t-micro { background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; padding: 1rem 1.2rem; font-size: 13px; color: var(--ink); line-height: 1.65; font-style: italic; }
.t-micro::before { content: '"'; color: var(--blush); font-family: var(--serif); font-size: 2rem; line-height: 0.8; display: block; margin-bottom: 6px; }

/* ── BRIDGE ── */
.bridge { background: var(--cream); border-top: 1px solid var(--border); padding: 4.5rem 2rem; }
.bridge__inner { max-width: 760px; margin: 0 auto; }
.bridge h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 1rem;
}
.bridge__sub { font-size: 0.97rem; color: var(--muted); line-height: 1.85; margin-bottom: 2.5rem; max-width: 560px; }
.bridge__ladder {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.bridge__step { background: var(--warm-white); padding: 1.5rem 1.25rem; }
.bridge__step-num { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--emerald); margin-bottom: 0.6rem; display: block; }
.bridge__step-num--dark { color: var(--charcoal); }
.bridge__step h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.4rem; line-height: 1.2; }
.bridge__step p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.bridge__note { font-size: 13.5px; color: var(--muted); margin-top: 1.5rem; font-style: italic; }

/* ── TOOLKIT ── */
.toolkit { padding: 5.5rem 2rem; border-top: 1px solid var(--border); }
.toolkit__inner { max-width: 960px; margin: 0 auto; }
.toolkit h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 0.6rem;
}
.toolkit__sub { font-size: 0.97rem; color: var(--muted); margin-bottom: 3rem; max-width: 520px; }
.eco-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: 5px; overflow: hidden; margin-bottom: 2rem;
}
.eco-card { background: var(--warm-white); padding: 1.75rem; transition: background 0.15s; }
.eco-card:hover { background: var(--cream); }
.eco-card__label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; }
.eco-card__label--free { color: var(--emerald); }
.eco-card__label--paid { color: var(--gold); }
.eco-card__label--pro { color: var(--charcoal); }
.eco-card__price { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--charcoal); line-height: 1; margin-bottom: 0.65rem; }
.eco-card__price.free { color: var(--emerald); font-size: 1.4rem; }
.eco-card h4 { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; line-height: 1.35; }
.eco-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.eco-card__cta { display: inline-block; margin-top: 1rem; font-size: 12.5px; font-weight: 600; color: var(--emerald); text-decoration: none; letter-spacing: 0.04em; }
.eco-card__cta:hover { text-decoration: underline; }
.toolkit__note { background: var(--cream); border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem 2rem; font-size: 14px; color: var(--ink); line-height: 1.75; }
.toolkit__note strong { color: var(--charcoal); }

/* ── LIFE ── */
.life { background: var(--charcoal); padding: 5.5rem 2rem; }
.life__inner { max-width: 760px; margin: 0 auto; }
.life h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: #fff; margin-bottom: 1.75rem;
}
.life h2 em { font-style: italic; color: var(--blush); }
.life p { font-size: 0.97rem; color: rgba(255,255,255,0.68); line-height: 1.88; margin-bottom: 1rem; }
.life p strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.life__loves { margin-top: 2rem; padding: 1.5rem 2rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; }
.life__loves p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 0; }
.life__loves strong { color: rgba(255,255,255,0.75); }

/* ── FINAL CTA ── */
.final-cta { background: var(--emerald); padding: 5.5rem 2rem; text-align: center; }
.final-cta__inner { max-width: 600px; margin: 0 auto; }
.final-cta h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: #fff; margin-bottom: 1rem;
}
.final-cta h2 em { font-style: italic; color: var(--blush); }
.final-cta p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 2.25rem; line-height: 1.78; }
.final-cta__btn {
  display: inline-block; background: #fff; color: var(--emerald);
  font-weight: 700; font-size: 15px; padding: 15px 36px;
  border-radius: 3px; text-decoration: none; transition: all 0.18s; margin-bottom: 1rem;
}
.final-cta__btn:hover { background: var(--cream); transform: translateY(-1px); }
.final-cta__sub { display: block; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── FIND ME ── */
.find-me { border-top: 1px solid var(--border); }
.find-me__inner {
  max-width: 960px; margin: 0 auto; padding: 3.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
}
.find-me h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--charcoal); }
.find-me p { font-size: 13px; color: var(--muted); margin-top: 3px; }
.find-me__links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.find-me__link {
  font-size: 13px; font-weight: 500; color: var(--ink); text-decoration: none;
  border: 1px solid var(--border-strong); border-radius: 3px; padding: 7px 15px; transition: all 0.15s;
}
.find-me__link:hover { background: var(--emerald); color: #fff; border-color: var(--emerald); }

/* ── FOOTER ── */
.footer {
  background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer__logo { font-family: var(--serif); font-size: 1.05rem; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer__logo span { color: var(--blush); }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.15s; }
.footer__links a:hover { color: rgba(255,255,255,0.65); }
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow        { animation: fadeUp 0.5s ease both; }
.hero__h1             { animation: fadeUp 0.5s 0.07s ease both; }
.hero__lead           { animation: fadeUp 0.5s 0.14s ease both; }
.hero__credential-strip { animation: fadeUp 0.5s 0.2s ease both; }
.hero__cta            { animation: fadeUp 0.5s 0.25s ease both; }
.hero__photo-col      { animation: fadeUp 0.6s 0.1s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__photo-col { order: -1; align-items: flex-start; }
  .hero__photo-frame { width: 100%; aspect-ratio: 4/3; }
  .authority-bar__inner { justify-content: center; }
  .authority-bar__div { display: none; }
  .story__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .story__divider { display: none; }
  .creds__grid { grid-template-columns: 1fr 1fr; }
  .etsy__inner { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .find-me__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero { padding: 7rem 1.25rem 4rem; }
  .creds__grid { grid-template-columns: 1fr; }
  .bridge__ladder { grid-template-columns: 1fr; }
  .sales-grid { grid-template-columns: 1fr 1fr; }
  .footer { flex-direction: column; gap: 1rem; }
  .footer__links { gap: 1rem; }
}
