/* ==========================================================================
   WHAT DID YOU INHERIT — Global Styles
   ========================================================================== */

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

/* VARIABLES */
:root {
  --cream: #FAF7F2;
  --cream-dark: #F0EAE0;
  --ink: #1A1714;
  --ink-light: #5C534A;
  --green: #2E4A2F;
  --green-light: #3D6140;
  --gold: #A07830;
  --gold-light: #C49A50;
  --border: #DDD5C8;
  --white: #FFFFFF;
  --serif: 'Cormorant Garant', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

/* BASE */
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background-color: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

/* ==========================================================================
   NAV
   ========================================================================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 120px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-light) !important; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-arrow { font-size: 0.6rem; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px 0 12px;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 200;
  margin-top: 0;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 8px 24px;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  color: var(--ink-light) !important;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--ink) !important; background: var(--cream); }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
section { padding: 80px 24px; }
.container { max-width: 1040px; margin: 0 auto; }
.narrow { max-width: 760px; margin: 0 auto; }

/* ==========================================================================
   SHARED TYPOGRAPHY
   ========================================================================== */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-light);
  max-width: 600px;
}

/* ==========================================================================
   PAGE HEADER (About, How It Works)
   ========================================================================== */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px 64px;
}
.page-header .container { max-width: 760px; }
.breadcrumb {
  font-size: 0.78rem;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--ink-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--border); }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.page-header .lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-light);
  font-weight: 300;
  max-width: 580px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-light); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background: var(--ink);
  padding: 80px 24px;
  text-align: center;
}
.cta-band .section-label { color: var(--gold-light); }
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   FAQ (shared static style — Home, How It Works)
   ========================================================================== */
.faq-section { background: var(--cream-dark); }
.faq-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-top: 1px solid var(--border); padding: 28px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.faq-a { font-size: 0.95rem; line-height: 1.75; color: var(--ink-light); }

/* FAQ accordion (Submit page) */
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-inner .faq-a { display: none; }
.faq-heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
}
.faq-q-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.faq-toggle { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-item.open .faq-a { display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.45); margin-top: 6px; max-width: 360px; }
.footer-address { font-size: 0.82rem; line-height: 1.65; color: rgba(255,255,255,0.3); font-style: normal; margin-top: 6px; }
.footer-col-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-evaluate {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.footer-evaluate a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-evaluate a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { width: 100%; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 14px; margin-top: 16px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ==========================================================================
   HOME — Hero
   ========================================================================== */
.hero {
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(46,74,47,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(160,120,48,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 780px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-light);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-note { margin-top: 16px; font-size: 0.8rem; color: var(--ink-light); letter-spacing: 0.02em; }
.hero-divider { width: 48px; height: 2px; background: var(--gold); margin: 60px auto 0; opacity: 0.4; }

/* ==========================================================================
   HOME — The Moment
   ========================================================================== */
.moment {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.moment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.moment-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}
.moment-text p { font-size: 1rem; line-height: 1.8; color: var(--ink-light); margin-bottom: 16px; }
.moment-text p:last-child { margin-bottom: 0; }

/* ==========================================================================
   HOME — Steps
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
}
.step { background: var(--cream); padding: 48px 36px; }
.step-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.step p { font-size: 0.95rem; line-height: 1.7; color: var(--ink-light); }

/* ==========================================================================
   HOME — Item Types
   ========================================================================== */
.items-section { background: var(--green); }
.items-section .section-label { color: var(--gold-light); }
.items-section .section-heading { color: var(--white); }
.items-section .section-body { color: rgba(255,255,255,0.72); }
.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: rgba(255,255,255,0.1);
}
.item-card {
  background: rgba(255,255,255,0.06);
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
}
.item-card-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.item-card p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.6); }
.item-card-link { text-decoration: none; transition: background 0.2s, border-color 0.2s; display: flex; flex-direction: column; }
.item-card-link:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.item-card-cta { margin-top: auto; padding-top: 14px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-light); }
.item-card-link:hover .item-card-cta { color: var(--white); }

/* ==========================================================================
   ABOUT — Mission
   ========================================================================== */
.mission-section { background: var(--white); border-bottom: 1px solid var(--border); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.mission-text p { font-size: 1rem; line-height: 1.85; color: var(--ink-light); margin-bottom: 20px; }
.mission-text p:last-child { margin-bottom: 0; }
.mission-pull {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}

/* ==========================================================================
   ABOUT — Expertise
   ========================================================================== */
.expertise-section { background: var(--cream-dark); border-bottom: 1px solid var(--border); }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; background: var(--border); }
.expertise-card { background: var(--white); padding: 36px 28px; }
.expertise-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.expertise-card p { font-size: 0.92rem; line-height: 1.75; color: var(--ink-light); }

/* ==========================================================================
   ABOUT — Credentials
   ========================================================================== */
.credentials-section { background: var(--white); border-bottom: 1px solid var(--border); }
.credentials-inner { max-width: 760px; }
.credentials-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.credential-item { border-top: 1px solid var(--border); padding: 24px 0; display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: baseline; }
.credential-item:last-child { border-bottom: 1px solid var(--border); }
.credential-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.credential-text { font-size: 0.95rem; line-height: 1.75; color: var(--ink-light); }

/* ==========================================================================
   ABOUT — Approach
   ========================================================================== */
.approach-section { background: var(--green); }
.approach-section .section-label { color: var(--gold-light); }
.approach-section .section-heading { color: var(--white); }
.approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 48px; background: rgba(255,255,255,0.08); }
.approach-card { background: rgba(255,255,255,0.05); padding: 36px 28px; border: 1px solid rgba(255,255,255,0.07); }
.approach-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.approach-card p { font-size: 0.92rem; line-height: 1.75; color: rgba(255,255,255,0.62); }

/* ==========================================================================
   HOW IT WORKS — Timeline
   ========================================================================== */
.process-section { background: var(--white); border-bottom: 1px solid var(--border); }
.timeline { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.timeline-item:last-child { border-bottom: 1px solid var(--border); }
.timeline-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.22;
  line-height: 1;
  padding-top: 4px;
}
.timeline-content h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.timeline-content p { font-size: 0.97rem; line-height: 1.75; color: var(--ink-light); margin-bottom: 12px; }
.timeline-content p:last-child { margin-bottom: 0; }
.timeline-note {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 1px;
  margin-top: 8px;
}

/* ==========================================================================
   HOW IT WORKS — Valuable Items
   ========================================================================== */
.valuable-section { background: var(--cream-dark); }
.valuable-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; background: var(--border); }
.valuable-card { background: var(--white); padding: 36px 32px; }
.valuable-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.valuable-card p { font-size: 0.93rem; line-height: 1.72; color: var(--ink-light); }
.valuable-card ul { margin-top: 12px; padding-left: 18px; }
.valuable-card li { font-size: 0.93rem; line-height: 1.7; color: var(--ink-light); margin-bottom: 4px; }

/* ==========================================================================
   HOW IT WORKS — After Evaluation
   ========================================================================== */
.after-section { background: var(--green); }
.after-section .section-label { color: var(--gold-light); }
.after-section .section-heading { color: var(--white); }
.after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; background: rgba(255,255,255,0.08); }
.after-card { background: rgba(255,255,255,0.04); padding: 36px 28px; border: 1px solid rgba(255,255,255,0.07); }
.after-card-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; }
.after-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.after-card p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.62); }

/* ==========================================================================
   SUBMIT — Page Header
   ========================================================================== */
.page-header-submit { text-align: center; padding: 56px 24px 48px; }
.page-header-submit h1 { margin-bottom: 14px; }
.page-header-submit .lead { max-width: 520px; margin: 0 auto 28px; }
.trust-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.trust-pill { font-size: 0.78rem; font-weight: 500; color: var(--ink-light); border: 1px solid var(--border); padding: 5px 14px; border-radius: 20px; }

/* ==========================================================================
   SUBMIT — Quiz
   ========================================================================== */
.quiz-section { padding: 56px 24px; }
.quiz-wrap { max-width: 680px; margin: 0 auto; }
.step-indicator { display: flex; align-items: center; margin-bottom: 36px; }
.step-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 600; color: var(--ink-light); flex-shrink: 0; transition: all 0.2s; }
.step-dot.active,
.step-dot.done { border-color: var(--green); background: var(--green); color: var(--white); }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 4px; transition: background 0.2s; }
.step-line.done { background: var(--green); }

.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step h2 { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }
.step-sub { font-size: 0.92rem; color: var(--ink-light); margin-bottom: 28px; line-height: 1.6; }

.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.quiz-option { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border: 1px solid var(--border); border-radius: 2px; background: var(--white); cursor: pointer; transition: border-color 0.15s, background 0.15s; font-size: 0.95rem; color: var(--ink); }
.quiz-option:hover { border-color: var(--green); background: var(--cream); }
.quiz-option.selected { border-color: var(--green); background: rgba(46,74,47,0.04); }
.quiz-option input[type="radio"] { accent-color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }

.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.btn-back { background: none; border: 1px solid var(--border); padding: 10px 24px; border-radius: 2px; font-family: var(--sans); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-light); cursor: pointer; transition: all 0.2s; }
.btn-back:hover { border-color: var(--ink-light); color: var(--ink); }
.btn-next { background: var(--green); border: none; padding: 12px 32px; border-radius: 2px; font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); cursor: pointer; transition: background 0.2s; }
.btn-next:hover { background: var(--green-light); }
.btn-next:disabled { opacity: 0.4; cursor: not-allowed; }

.quiz-result { display: none; }
.quiz-result.active { display: block; }
.result-card { border: 1px solid var(--border); border-radius: 2px; padding: 36px 32px; background: var(--white); margin-bottom: 32px; }
.result-badge { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.result-badge.strong { background: rgba(46,74,47,0.1); color: var(--green); }
.result-badge.possible { background: rgba(160,120,48,0.12); color: var(--gold); }
.result-badge.uncertain { background: rgba(92,83,74,0.1); color: var(--ink-light); }
.result-card h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
.result-card p { font-size: 0.95rem; line-height: 1.75; color: var(--ink-light); margin-bottom: 12px; }
.result-typeform-wrap { margin-top: 28px; background: var(--cream); border: 1px solid var(--border); border-radius: 2px; padding: 32px 28px 0; }
.result-typeform-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.result-typeform-sub { font-size: 0.9rem; color: var(--ink-light); line-height: 1.6; margin-bottom: 24px; }
.result-typeform { min-height: 600px; }
.result-resources { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.result-resources h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 10px; }
.result-resources ul { list-style: none; padding: 0; }
.result-resources li { font-size: 0.88rem; padding: 6px 0; border-bottom: 1px solid var(--border); color: var(--ink-light); }
.result-resources li:last-child { border-bottom: none; }

/* ==========================================================================
   SUBMIT — Typeform Embed
   ========================================================================== */
.typeform-section { padding: 0; }
.typeform-section [data-tf-live] { min-height: 600px; }

/* ==========================================================================
   SUBMIT — What You Receive
   ========================================================================== */
.receive-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 24px; }
.receive-inner { max-width: 1040px; margin: 0 auto; }
.receive-heading { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--ink); margin-bottom: 28px; }
.receive-list { list-style: none; padding: 0; }
.receive-list li { padding: 16px 0; border-top: 1px solid var(--border); font-size: 0.95rem; line-height: 1.65; color: var(--ink-light); display: flex; gap: 14px; }
.receive-list li:last-child { border-bottom: 1px solid var(--border); }
.receive-list .li-dash { color: var(--gold); flex-shrink: 0; }
.receive-note { font-size: 0.85rem; color: var(--ink-light); margin-top: 20px; line-height: 1.65; }

/* ==========================================================================
   SUBMIT — Photo Tips
   ========================================================================== */
.photo-tips-section { background: var(--cream-dark); padding: 56px 24px; border-bottom: 1px solid var(--border); }
.photo-tips-inner { max-width: 1040px; margin: 0 auto; }
.photo-tips-heading { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.photo-tips-sub { font-size: 0.95rem; color: var(--ink-light); margin-bottom: 36px; max-width: 560px; line-height: 1.7; }
.photo-tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.photo-tip { background: var(--white); padding: 28px 24px; }
.photo-tip-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--green); opacity: 0.2; line-height: 1; margin-bottom: 12px; }
.photo-tip h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.photo-tip p { font-size: 0.87rem; line-height: 1.65; color: var(--ink-light); }

/* ==========================================================================
   SUBMIT — Privacy
   ========================================================================== */
.privacy-section { background: var(--white); padding: 36px 24px; border-bottom: 1px solid var(--border); }
.privacy-inner { max-width: 1040px; margin: 0 auto; display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.privacy-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.privacy-items { display: flex; flex-wrap: wrap; gap: 20px; }
.privacy-item { font-size: 0.87rem; color: var(--ink-light); display: flex; gap: 8px; }
.privacy-item::before { content: '—'; color: var(--gold); font-size: 0.75rem; }

/* ==========================================================================
   PILLAR PAGES (Category Pages)
   ========================================================================== */

/* Hero Image */
.pillar-hero { line-height: 0; border-bottom: 1px solid var(--border); }
.pillar-hero-img { width: 100%; height: auto; display: block; object-fit: cover; }

/* Content Section (main + sidebar) */
.pillar-content-section { background: var(--white); border-bottom: 1px solid var(--border); }
.pillar-content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.pillar-content-main h2 { margin-bottom: 28px; }
.pillar-content-main h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-top: 32px; margin-bottom: 10px; }
.pillar-content-main p { font-size: 0.97rem; line-height: 1.8; color: var(--ink-light); margin-bottom: 16px; }
.pillar-content-main p:last-child { margin-bottom: 0; }

/* Sidebar */
.pillar-content-sidebar { position: sticky; top: 160px; display: flex; flex-direction: column; gap: 24px; }
.pillar-sidebar-card { background: var(--cream); border: 1px solid var(--border); padding: 28px 24px; border-radius: 2px; }
.pillar-sidebar-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.pillar-sidebar-list { list-style: none; padding: 0; }
.pillar-sidebar-list li { font-size: 0.9rem; color: var(--ink-light); padding: 6px 0; border-bottom: 1px solid var(--border); }
.pillar-sidebar-list li:last-child { border-bottom: none; }
.pillar-sidebar-list a { color: var(--ink-light); text-decoration: none; transition: color 0.2s; }
.pillar-sidebar-list a:hover { color: var(--green); }
.pillar-sidebar-text { font-size: 0.9rem; line-height: 1.7; color: var(--ink-light); }

/* Honest Section (What Usually Isn't Valuable) */
.pillar-honest-section { background: var(--cream-dark); border-bottom: 1px solid var(--border); }
.pillar-honest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
.pillar-honest-card { background: var(--white); padding: 36px 28px; }
.pillar-honest-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.pillar-honest-card p { font-size: 0.93rem; line-height: 1.75; color: var(--ink-light); }

/* Process Section (How We Evaluate) */
.pillar-process-section { background: var(--green); }
.pillar-process-section .section-label { color: var(--gold-light); }
.pillar-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; background: rgba(255,255,255,0.08); }
.pillar-process-step { background: rgba(255,255,255,0.04); padding: 36px 28px; border: 1px solid rgba(255,255,255,0.07); }
.pillar-process-num { display: block; font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--white); opacity: 0.2; line-height: 1; margin-bottom: 16px; }
.pillar-process-step h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.pillar-process-step p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.62); }

/* Collectors Section (Why People Collect) */
.pillar-collectors-section { background: var(--white); border-bottom: 1px solid var(--border); }
.pillar-collectors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pillar-collectors-main h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-top: 28px; margin-bottom: 10px; }
.pillar-collectors-main h3:first-of-type { margin-top: 0; }
.pillar-collectors-main p { font-size: 0.97rem; line-height: 1.8; color: var(--ink-light); margin-bottom: 14px; }
.pillar-collectors-pull {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}

/* Related Guides (Sub-page sibling links) */
.related-guides { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px 24px; }
.related-guides-inner { max-width: 760px; margin: 0 auto; }
.related-guides-heading { font-family: var(--serif); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; color: var(--ink); margin-bottom: 24px; }
.related-guides-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0; }
.related-guides-list li { border-top: 1px solid var(--border); }
.related-guides-list li:last-child { border-bottom: 1px solid var(--border); }
.related-guides-list a { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; text-decoration: none; transition: color 0.2s; }
.related-guides-list .related-guide-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.related-guides-list .related-guide-arrow { font-size: 0.85rem; color: var(--gold); transition: transform 0.2s; }
.related-guides-list a:hover .related-guide-title { color: var(--green); }
.related-guides-list a:hover .related-guide-arrow { transform: translateX(4px); }
.related-guides-parent { margin-top: 20px; }
.related-guides-parent a { font-size: 0.85rem; color: var(--ink-light); text-decoration: none; font-weight: 500; letter-spacing: 0.04em; transition: color 0.2s; }
.related-guides-parent a:hover { color: var(--green); }

/* Notable Valuations */
.pillar-valuations-section { background: var(--cream-dark); border-bottom: 1px solid var(--border); }
.pillar-valuations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.pillar-valuation-card { background: var(--white); padding: 32px 28px; }
.pillar-valuation-price { display: block; font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 12px; }
.pillar-valuation-card h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.pillar-valuation-card h3 a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--border); transition: border-color 0.2s; }
.pillar-valuation-card h3 a:hover { border-color: var(--green); color: var(--green); }
.pillar-valuation-detail { font-size: 0.9rem; line-height: 1.6; color: var(--ink-light); margin-bottom: 12px; }
.pillar-valuation-meta { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; color: var(--gold); }

/* After Evaluation */
.pillar-after-section { background: var(--white); border-bottom: 1px solid var(--border); }
.pillar-after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; background: var(--border); }
.pillar-after-card { background: var(--cream); padding: 36px 28px; }
.pillar-after-label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.pillar-after-card p { font-size: 0.93rem; line-height: 1.75; color: var(--ink-light); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .items-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-tips-grid { grid-template-columns: 1fr 1fr; }
  .pillar-process-grid { grid-template-columns: 1fr 1fr; }
  .pillar-valuations-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile Menu Toggle */
.nav-toggle { display: none; background: none; border: 1px solid var(--border); padding: 8px 12px; border-radius: 2px; cursor: pointer; font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-light); }
.nav-toggle:hover { border-color: var(--ink-light); color: var(--ink); }

.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 99;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--ink-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--ink); }
.nav-mobile-menu .mobile-menu-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 0 6px;
  border-bottom: none;
}
.nav-mobile-menu .mobile-menu-label:first-child { padding-top: 0; }

@media (max-width: 768px) {
  nav { padding: 0 16px; height: 100px; position: relative; }
  .nav-logo-img { height: 80px; }
  .nav-toggle { display: block; }
  .nav-links li:not(:last-child) { display: none; }
  .nav-dropdown-menu { display: none !important; }
  .nav-links { gap: 12px; }

  /* Home */
  .moment-grid, .faq-intro { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; }

  /* About */
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .credential-item { grid-template-columns: 1fr; gap: 6px; }

  /* How It Works */
  .valuable-grid, .after-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 12px; }
  .timeline-num { font-size: 2rem; }

  /* Pillar Pages */
  .pillar-content-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillar-content-sidebar { position: static; }
  .pillar-collectors-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillar-honest-grid { grid-template-columns: 1fr; }
  .pillar-valuations-grid { grid-template-columns: 1fr; }
  .pillar-process-grid { grid-template-columns: 1fr; }
  .pillar-after-grid { grid-template-columns: 1fr; }

  footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .photo-tips-grid { grid-template-columns: 1fr; }
}
