/* ================================================================
   THE JOB WELL DONE — Shared Design System
   thejobwelldone.com
   Follows MAHESHIKA-DESIGN-STANDARDS.md
================================================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* --- TOKENS --- */
:root {
  --black:    #000000;
  --dark-1:   #0a0a0f;
  --dark-2:   #0e0e12;
  --gold:     #c9a84c;
  --gold-l:   #e2c47a;
  --gold-p:   #f8f4ed;
  --text-1:   #f5f5f7;
  --text-2:   #d1d1d6;
  --text-3:   #a1a1a6;
  --max:      1200px;
  --ease:     cubic-bezier(.22,1,.36,1);
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text-1);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- CONTAINER --- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

/* --- SECTION BACKGROUNDS --- */
.bg-black  { background: var(--black); }
.bg-dark-1 { background: var(--dark-1); }
.bg-dark-2 { background: var(--dark-2); }

.s-glow {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201,168,76,.08) 0%, transparent 60%),
    var(--dark-2);
}
.s-glow-1 {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201,168,76,.07) 0%, transparent 60%),
    var(--dark-1);
}
.s-glow-black {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201,168,76,.06) 0%, transparent 60%),
    var(--black);
}

/* --- SECTION PADDING --- */
.section-pad { padding: 5.5rem 0; }
@media (min-width: 768px) { .section-pad { padding: 7rem 0; } }
@media (min-width: 1024px) { .section-pad { padding: 8.5rem 0; } }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, blockquote { font-family: 'Cormorant Garamond', Georgia, serif; }

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--text-1);
}
.section-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-1);
}
.card-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--gold-p);
}

/* --- LABEL / EYEBROW --- */
.lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}
.lbl::before, .lbl::after { content: ''; height: 1px; width: 28px; background: var(--gold); opacity: .5; flex-shrink: 0; }
.lbl.c  { justify-content: center; }
.lbl.l::after  { display: none; }
.lbl.r::before { display: none; }

/* --- RULE --- */
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.rule.sm { width: 60px; }
.rule.c  { margin: 0 auto; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
/* Primary: solid gold */
.btn-g {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-g:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.4);
}
/* Secondary: white border */
.btn-gh {
  background: rgba(255,255,255,.06);
  color: var(--text-1);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-gh:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.07);
  transform: translateY(-2px);
}
/* Outline dark (used on light sections - N/A in this design) */
.btn-ow {
  background: transparent;
  color: var(--text-1);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 9999px;
  padding: .85rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.btn-ow:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* --- CARD BASE --- */
.card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid rgba(255,255,255,.06);
  border-radius: .75rem;
  transition: all .3s var(--ease);
}
.card:hover {
  background: rgba(255,255,255,.08);
  border-left-color: var(--gold);
  box-shadow: 0 12px 48px rgba(0,0,0,.4);
  transform: translateY(-3px);
}
.card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-p);
}
.card-body {
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .3s ease, border-color .3s ease;
}
.nav.s {
  background: rgba(0,0,0,.92);
  border-color: rgba(201,168,76,.12);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.nav-logo .t {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .02em;
}
.nav-logo .s {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.nav-links {
  display: none;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-1); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}
.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; padding: .6rem 1.6rem; font-size: .6rem; } }

/* Hamburger */
.hbg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 900px) { .hbg { display: none; } }
.hbg span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-1);
  transition: all .25s ease;
}

/* Mobile Nav */
.mob-nav {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0,0,0,.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mob-nav.open { opacity: 1; pointer-events: all; }
.mob-nav a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-1);
  letter-spacing: .05em;
  transition: color .2s;
}
.mob-nav a:hover { color: var(--gold); }
.mob-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--text-3);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.mob-close:hover { color: var(--text-1); }

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 100svh;
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
}
.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  height: 110%;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(201,168,76,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-in {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 860px) {
  .hero-in { grid-template-columns: 1fr; text-align: center; }
  .hol, .hbtns, .haws { justify-content: center; }
  .hsub { max-width: 100%; }
  .bwrap { display: flex; justify-content: center; order: -1; }
}

/* Hero eyebrow */
.hol {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.hol::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

/* Hero buttons */
.hbtns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Hero awards row */
.haws {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,.13);
}
.awb { display: flex; align-items: center; gap: .6rem; }
.awic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.awnm {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold);
  display: block;
}
.awyr {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--text-3);
}

/* ================================================================
   BOOK CSS ART
================================================================ */
.bwrap { position: relative; flex-shrink: 0; }
.bglow {
  position: absolute;
  inset: -32px;
  background: radial-gradient(ellipse, rgba(201,168,76,.12) 0%, transparent 65%);
  pointer-events: none;
}
.book {
  width: 190px;
  height: 268px;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateY(-18deg) rotateX(3deg);
  filter: drop-shadow(-16px 22px 42px rgba(0,0,0,.7));
  transition: transform .5s var(--ease);
}
.book:hover { transform: perspective(800px) rotateY(-8deg) rotateX(1deg); }
.bface {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #1a1200 0%, #0d0900 60%);
  border-radius: 2px 8px 8px 2px;
  border: 1px solid rgba(201,168,76,.35);
  overflow: hidden;
}
.bface::before, .bface::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.bface::before { top: 0; } .bface::after { bottom: 0; }
.bspine {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 14px;
  background: linear-gradient(90deg, rgba(201,168,76,.3), rgba(201,168,76,.08));
  border-right: 1px solid rgba(201,168,76,.25);
}
.bcont {
  padding: 1.5rem 1.2rem 1.5rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bcrn { text-align: center; font-size: 2rem; margin-bottom: .2rem; color: var(--gold); opacity: .85; }
.btit {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-p);
  text-align: center;
  line-height: 1.25;
}
.bsub {
  display: block;
  font-family: Georgia, serif;
  font-size: .65rem;
  font-style: italic;
  color: var(--gold-l);
  margin-top: .35rem;
  text-align: center;
  line-height: 1.4;
}
.brule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.5), transparent);
  margin: .6rem 0;
}
.bauth {
  font-family: 'DM Sans', sans-serif;
  font-size: .55rem;
  color: var(--gold);
  text-align: center;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Big book (used in content sections) */
.big-book {
  width: 240px;
  height: 336px;
  background: linear-gradient(155deg, #1a1200, #0d0900);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 2px 10px 10px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  gap: .8rem;
  box-shadow:
    -6px 8px 0 rgba(201,168,76,.08),
    -14px 18px 0 rgba(201,168,76,.04),
    0 40px 80px rgba(0,0,0,.7);
  position: relative;
  margin: 0 auto;
}
.big-book::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  background: linear-gradient(90deg, rgba(201,168,76,.2), transparent);
  border-right: 1px solid rgba(201,168,76,.25);
}
.bbc { font-size: 2.5rem; color: var(--gold); opacity: .8; }
.bbt {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-p);
  text-align: center;
  line-height: 1.25;
}
.bbs {
  font-family: Georgia, serif;
  font-size: .72rem;
  color: var(--gold-l);
  text-align: center;
  font-style: italic;
  line-height: 1.5;
}
.bbr { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,.45), transparent); width: 100%; }
.bba {
  font-family: 'DM Sans', sans-serif;
  font-size: .55rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ================================================================
   AWARDS STRIP
================================================================ */
.strip {
  background: rgba(201,168,76,.06);
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
  padding: 1.25rem 0;
  overflow: hidden;
}
.strip-in {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.strip-ico { font-size: 1.1rem; opacity: .8; }
.strip-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  display: block;
}
.strip-nm {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-2);
  display: block;
}

/* ================================================================
   TESTIMONIAL CARDS
================================================================ */
.t-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .75rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all .3s var(--ease);
}
.t-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.2);
  transform: translateY(-3px);
}
.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .1em;
}
.t-text {
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.t-auth { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.t-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.t-nm {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  display: block;
}
.t-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-3);
  display: block;
  margin-top: 1px;
}

/* ================================================================
   CHAT WIDGET
================================================================ */
.chat-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 800;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 32px rgba(201,168,76,.45);
  cursor: pointer;
  border: none;
  transition: all .3s var(--ease);
}
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(201,168,76,.55); }

.chat-overlay {
  position: fixed;
  inset: 0;
  z-index: 810;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.chat-overlay.on { opacity: 1; pointer-events: all; }

.chat-panel {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 820;
  width: min(480px, 100vw);
  background: var(--dark-1);
  border-left: 1px solid rgba(201,168,76,.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}
.chat-panel.open { transform: translateX(0); }
.chat-panel-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.chat-panel-hd-info { display: flex; align-items: center; gap: .75rem; }
.chat-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a07a2c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.chat-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  display: block;
}
.chat-status {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.chat-dot { width: 6px; height: 6px; background: #4CAF50; border-radius: 50%; animation: cpulse 2s infinite; }
@keyframes cpulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }
.chat-close {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  color: var(--text-3);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
  line-height: 1;
}
.chat-close:hover { color: var(--text-1); }
.chat-frame { flex: 1; border: none; width: 100%; }

/* ================================================================
   BLOG CARDS
================================================================ */
.blog-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .75rem;
  overflow: hidden;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.18);
  transform: translateY(-3px);
}
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.blog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.6));
}
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.blog-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-p);
  line-height: 1.3;
}
.blog-excerpt {
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
}
.blog-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .75rem;
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--dark-1);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .t {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: .2rem;
}
.footer-brand .s {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 240px;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--text-3);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--text-1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-3);
}
.soc-row { display: flex; gap: .5rem; }
.soc {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: .85rem;
  transition: all .2s;
}
.soc:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }

/* ================================================================
   PHOTO PLACEHOLDER (remove once real photo is added)
================================================================ */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, #1a1200, #0d0d0d);
  border-radius: .75rem;
  border: 1px solid rgba(201,168,76,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 30%, rgba(201,168,76,.07) 0%, transparent 70%);
}
.photo-placeholder .ph-icon {
  font-size: 3rem;
  color: rgba(201,168,76,.3);
  position: relative;
  z-index: 1;
}
.photo-placeholder .ph-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ================================================================
   SCROLL FADE ANIMATION
================================================================ */
.fu {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fu.on { opacity: 1; transform: none; }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s}
.d4{transition-delay:.32s} .d5{transition-delay:.40s} .d6{transition-delay:.48s}
@media (prefers-reduced-motion: reduce) {
  .fu { opacity: 1; transform: none; transition: none; }
}

/* ================================================================
   PULL QUOTE
================================================================ */
.pq {
  padding: 1.4rem 1.5rem 1.4rem 1.75rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,.04);
  border-radius: 0 .5rem .5rem 0;
}
.pq p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-1);
  line-height: 1.65;
}
.pq cite {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-style: normal;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .8rem;
}

/* ================================================================
   FORM ELEMENTS
================================================================ */
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .5rem;
  padding: .875rem 1.1rem;
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--text-1);
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,.45);
  background: rgba(201,168,76,.04);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ================================================================
   NEWSLETTER INLINE FORM
================================================================ */
.nl-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
}
.nl-form input {
  flex: 1;
  padding: .85rem 1.25rem;
  background: transparent;
  border: none;
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--text-1);
  outline: none;
  min-width: 0;
}
.nl-form input::placeholder { color: var(--text-3); }
.nl-form button {
  padding: .85rem 1.5rem;
  background: var(--gold);
  border: none;
  color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.nl-form button:hover { background: var(--gold-l); }

/* ================================================================
   PODCAST PAGE
================================================================ */
.platform-btn {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-1);
  transition: all .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.platform-btn:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.platform-btn.featured {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.25);
  color: var(--gold-l);
}

.episode-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: .75rem;
  transition: all .25s var(--ease);
}
.episode-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.15);
}
.ep-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(201,168,76,.4);
  min-width: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
  padding-top: .1rem;
}
.ep-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-p);
  line-height: 1.3;
  margin-bottom: .35rem;
}
.ep-desc {
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}
.ep-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-3);
  margin-top: .5rem;
}

/* ================================================================
   SPEAKING / KEYNOTE CARDS
================================================================ */
.keynote-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid rgba(255,255,255,.06);
  border-radius: .75rem;
  padding: 2rem 1.75rem;
  transition: all .3s var(--ease);
}
.keynote-card:hover {
  background: rgba(255,255,255,.07);
  border-left-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.keynote-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,.2);
  line-height: 1;
  margin-bottom: .5rem;
}
.keynote-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-p);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.keynote-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.keynote-desc {
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}
