/* ════════════════════════════════════════════════════
   Auriel — Heirloom Brand System
   ════════════════════════════════════════════════════ */

:root {
  --rose:    #A8485A;
  --coral:   #C8786A;
  --apricot: #E0A880;
  --gold:    #D4B870;
  --sage:    #8A9A7A;
  --navy:    #4A5878;
  --cream:   #FDF9F4;
  --paper:   #F7EFE5;
  --ink:     #1A1408;
  --muted:   #9A8878;
  --rule:    #E8DDD0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── STRIPE ── */
.stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--rose), var(--coral), var(--apricot), var(--gold), var(--sage), var(--navy));
  position: sticky;
  top: 0;
  z-index: 200;
}

/* ── NAV ── */
.nav {
  background: var(--ink);
  padding: 0;
  position: sticky;
  top: 6px;
  z-index: 190;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--cream);
  text-decoration: none;
}
.nav-logo strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: normal;
  font-weight: 800;
  color: var(--rose);
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
  background: rgba(168, 72, 90, 0.15);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  margin: 4px 0;
  transition: 0.2s;
}

/* ── LAYOUT ── */
.container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 28px;
}
.container--wide {
  max-width: 1080px;
}

/* ── HERO (Home) ── */
.hero {
  background: var(--ink);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rose), var(--coral), var(--apricot), var(--gold), var(--sage), var(--navy));
}
.hero .container { position: relative; z-index: 1; }

/* Photo hero — 50/50 split, photo left, no crop */
.hero--photo { padding: 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: none;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-photo::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rose), var(--coral), var(--apricot), var(--gold));
  z-index: 2;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px;
}
.hero-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 16px;
}
.hero-name strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: normal;
  font-weight: 800;
  color: var(--rose);
}
.hero-oneliner {
  font-size: 0.92rem;
  color: #C0B0A0;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 460px;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: normal;
  font-weight: 800;
  color: var(--rose);
}
.hero-sub {
  font-size: 0.95rem;
  color: #C0B0A0;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.hero-credentials {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── PAGE HEADER (Inner Pages) ── */
.page-header {
  background: var(--ink);
  padding: 56px 0 48px;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rose), var(--coral), var(--apricot), var(--gold), var(--sage), var(--navy));
}
.page-header .container { position: relative; z-index: 1; }
.page-header-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.page-header-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 14px;
}
.page-header-title strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: normal;
  font-weight: 800;
  color: var(--rose);
}
.page-header-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
}
.btn--primary {
  background: var(--rose);
  color: var(--cream);
}
.btn--primary:hover {
  background: #944050;
  box-shadow: 0 4px 16px rgba(168,72,90,.25);
}
.btn--secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.2);
}
.btn--secondary:hover {
  border-color: var(--coral);
  color: var(--coral);
}
.btn--outline {
  background: transparent;
  color: var(--rose);
  border: 1px solid var(--rule);
}
.btn--outline:hover {
  border-color: var(--rose);
  background: rgba(168,72,90,.05);
}

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.proof-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.proof-item {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ── SECTIONS ── */
.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--rule);
}
.section:last-child { border-bottom: none; }
.sec-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.sec-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 8px;
}
.sec-title strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: normal;
  font-weight: 800;
  color: var(--rose);
}
.sec-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--coral), var(--apricot));
  margin-bottom: 28px;
}
.sec-body {
  font-size: 0.9rem;
  color: #5A4A3A;
  line-height: 1.8;
  max-width: 640px;
}
.sec-body strong { color: var(--ink); }
.sec-body + .sec-body { margin-top: 16px; }

/* ── CARDS (3-col "What I Do") ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px 24px;
  border-top: 3px solid transparent;
  transition: all 0.2s;
}
.card:hover {
  border-top-color: var(--rose);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.card-icon {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.card-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.card-body {
  font-size: 0.82rem;
  color: #5A4A3A;
  line-height: 1.7;
}
.card-body strong { color: var(--ink); }

/* ── DETAIL CARDS (coaching, advising) ── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}
.detail-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px 24px;
  border-left: 3px solid var(--rose);
}
.detail-card-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.detail-card-body {
  font-size: 0.82rem;
  color: #5A4A3A;
  line-height: 1.7;
}

/* ── TIMELINE (About career arc) ── */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 12px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--rose), var(--coral), var(--apricot), var(--gold));
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  border: 2px solid var(--cream);
}
.timeline-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
.timeline-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.timeline-body {
  font-size: 0.84rem;
  color: #5A4A3A;
  line-height: 1.75;
}

/* ── BELIEFS / VALUES GRID ── */
.beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}
.belief {
  padding: 20px 0;
}
.belief-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.belief-body {
  font-size: 0.82rem;
  color: #5A4A3A;
  line-height: 1.7;
}

/* ── GLANCE LIST ── */
.glance-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.glance-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.78rem;
  color: #5A4A3A;
  font-weight: 500;
}

/* ── WRITING LIST ── */
.writing-list {
  list-style: none;
}
.writing-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.writing-item:last-child { border-bottom: none; }
.writing-item:hover {
  background: var(--paper);
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 6px;
}
.wi-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.wi-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.wi-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}
.wi-status {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 3px;
  white-space: nowrap;
}
.wi-status.draft { background: rgba(212,184,112,.15); color: var(--gold); }
.wi-status.live  { background: rgba(138,154,122,.15); color: var(--sage); }
.wi-status.soon  { background: rgba(200,120,106,.12); color: var(--coral); }

/* ── CONTENT CATEGORIES ── */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}
.cat-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
}
.cat-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.cat-body {
  font-size: 0.82rem;
  color: #5A4A3A;
  line-height: 1.7;
}

/* ── LINKS GRID ── */
.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.link-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 18px 20px;
  text-decoration: none;
  transition: all 0.15s;
  border-left: 3px solid transparent;
}
.link-card:hover {
  border-left-color: var(--rose);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.lc-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.lc-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

/* ── OFFERING LIST (How it works) ── */
.offering-list {
  margin-top: 12px;
}
.offering-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.offering-item:last-child { border-bottom: none; }
.offering-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 140px;
  font-weight: 500;
}
.offering-desc {
  font-size: 0.84rem;
  color: #5A4A3A;
  line-height: 1.7;
}

/* ── BULLET LIST ── */
.check-list {
  list-style: none;
  margin-top: 12px;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 0.86rem;
  color: #5A4A3A;
  line-height: 1.7;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.5;
}

/* ── EVENTS ── */
.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}
.event-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--coral), var(--apricot));
}
.event-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.event-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.event-body {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CONTACT FORM ── */
.form {
  max-width: 540px;
  margin-top: 12px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.86rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 12px 16px;
  transition: border-color 0.15s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--rose);
}
.form-textarea {
  min-height: 100px;
  resize: vertical;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239A8878' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-hint {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--ink);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
.cta-block-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.cta-block .btn { margin: 0 6px; }

/* ── FOOTER ── */
.footer {
  padding: 48px 0 40px;
  text-align: center;
}
.footer-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.footer-name strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: normal;
  font-weight: 800;
  color: var(--rose);
}
.footer-bio {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--rose); }
.footer-stripe {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--coral), var(--apricot), var(--gold), var(--sage), var(--navy));
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .cards-grid,
  .event-grid { grid-template-columns: 1fr; }
  .detail-grid,
  .beliefs-grid,
  .cat-grid,
  .links-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
  .hero--photo { padding: 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-photo { order: -1; }
  .hero-photo img { width: 100%; height: auto; }
  .hero-text { padding: 40px 28px; }
  .page-header { padding: 40px 0 36px; }
  .section { padding: 48px 0; }
  .writing-item { grid-template-columns: 1fr auto; }
  .wi-num { display: none; }
  .offering-item { flex-direction: column; gap: 4px; }
  .offering-label { min-width: auto; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
}
