/* ═══════════════════════════════════════════════════════════════
   KIRSTEN BACHERT PERSONAL WEBSITE
   Modern CSS Reset + Custom Properties + Typography + Layout
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────
   UNDER CONSTRUCTION MODE
───────────────────────────────────── */
.under-construction {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: var(--cream);
}

.construction-content {
  text-align: center;
  max-width: 600px;
  padding: 40px;
}

.construction-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.construction-logo em {
  color: var(--gold);
  font-style: italic;
}

.construction-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 40px;
  opacity: 0.8;
}

.construction-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.3;
}

.construction-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250, 248, 244, 0.7);
  margin-bottom: 40px;
}

.construction-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.construction-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(196, 150, 74, 0.3);
  padding: 14px 24px;
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.construction-email:hover {
  background: rgba(196, 150, 74, 0.2);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.construction-preview {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.preview-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
}

/* Hide main content when under construction */
body.construction-mode nav,
body.construction-mode .hero,
body.construction-mode .ticker,
body.construction-mode #pm-work,
body.construction-mode #about,
body.construction-mode .philosophy,
body.construction-mode #fixer,
body.construction-mode #contact,
body.construction-mode footer {
  display: none;
}

/* Show main content when preview mode is active */
body.preview-mode .under-construction {
  display: none;
}

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

:root {
  --cream:   #FAF8F4;
  --warm:    #F2EDE4;
  --ink:     #141210;
  --char:    #2C2A27;
  --mid:     #6B6560;
  --light:   #A8A29C;
  --rule:    #E0D9CF;
  --navy:    #002D62;
  --sky:     #87CEEB;
  --purple:  #6A5ACD;
  --gold:    #C4964A;
  --gold-lt: #D4A85A;
  --hire-bg: #F0F4FA;
  --hire-accent: #002D62;
  --fix-bg:  #0f0e0c;
  --fix-accent: #C4964A;
}

html { 
  scroll-behavior: smooth; 
}

body {
  background: var(--cream);
  color: var(--char);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─────────────────────────────────────
   NAVIGATION
───────────────────────────────────── */
nav {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 200;
  height: 68px;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 0 60px;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; 
  font-weight: 600;
  color: var(--ink); 
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo em { 
  font-style: italic; 
  color: var(--gold); 
}

.nav-center {
  display: flex; 
  gap: 32px; 
  align-items: center;
}

.nav-center a {
  color: var(--mid); 
  text-decoration: none;
  font-size: 12px; 
  font-weight: 500;
  letter-spacing: 0.1em; 
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-center a:hover { 
  color: var(--ink); 
}

.nav-right { 
  display: flex; 
  gap: 10px; 
  align-items: center; 
}

.btn-hire {
  background: var(--navy); 
  color: #fff;
  padding: 9px 20px; 
  font-size: 11px; 
  font-weight: 600;
  letter-spacing: 0.1em; 
  text-transform: uppercase;
  text-decoration: none; 
  transition: background 0.2s;
}

.btn-hire:hover { 
  background: #001a3d; 
}

.btn-ardmore {
  background: var(--gold); 
  color: var(--ink);
  padding: 9px 20px; 
  font-size: 11px; 
  font-weight: 600;
  letter-spacing: 0.1em; 
  text-transform: uppercase;
  text-decoration: none; 
  transition: background 0.2s;
}

.btn-ardmore:hover { 
  background: var(--gold-lt); 
}

/* ─────────────────────────────────────
   HERO SECTION - SPLIT LAYOUT
───────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 68px;
}

/* LEFT SIDE: Hire Me */
.hero-hire {
  background: var(--hire-bg);
  padding: 80px 60px 80px 60px;
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  border-right: 1px solid #c9d5e8;
  position: relative;
  overflow: hidden;
}

.hero-hire::before {
  content: 'PM';
  position: absolute; 
  bottom: -30px; 
  right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 220px; 
  font-weight: 700;
  color: rgba(0,45,98,0.05); 
  line-height: 1;
  pointer-events: none; 
  user-select: none;
}

.path-tag {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.2em; 
  text-transform: uppercase;
  margin-bottom: 28px;
}

.path-tag-hire { 
  color: var(--navy); 
}

.path-tag-hire::before { 
  content: ''; 
  width: 24px; 
  height: 2px; 
  background: var(--navy); 
  display: block; 
}

.path-tag-fix { 
  color: var(--gold); 
}

.path-tag-fix::before { 
  content: ''; 
  width: 24px; 
  height: 2px; 
  background: var(--gold); 
  display: block; 
}

.hire-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 700; 
  line-height: 1.05;
  color: var(--navy); 
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hire-headline em { 
  font-weight: 300; 
  font-style: italic; 
}

.hire-desc {
  font-size: 15px; 
  line-height: 1.8; 
  color: var(--mid);
  max-width: 420px; 
  margin-bottom: 36px;
}

.hire-desc strong { 
  color: var(--char); 
  font-weight: 600; 
}

.hire-credentials {
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  margin-bottom: 36px;
}

.credential {
  display: flex; 
  align-items: center; 
  gap: 10px;
  font-size: 13px; 
  color: var(--char);
}

.credential::before {
  content: '✓';
  width: 20px; 
  height: 20px;
  background: var(--navy); 
  color: #fff;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 10px; 
  font-weight: 700; 
  flex-shrink: 0;
}

.hire-actions { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
}

.btn-primary-navy {
  background: var(--navy); 
  color: #fff;
  padding: 14px 32px; 
  font-size: 12px; 
  font-weight: 700;
  letter-spacing: 0.12em; 
  text-transform: uppercase;
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  transition: all 0.2s;
}

.btn-primary-navy:hover { 
  background: #001a3d; 
  transform: translateY(-2px); 
}

.btn-ghost-navy {
  border: 1.5px solid var(--navy); 
  color: var(--navy);
  padding: 13px 28px; 
  font-size: 12px; 
  font-weight: 600;
  letter-spacing: 0.1em; 
  text-transform: uppercase;
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  transition: all 0.2s;
}

.btn-ghost-navy:hover { 
  background: var(--navy); 
  color: #fff; 
}

/* RIGHT SIDE: Ardmore Business Solutions */
.hero-fix {
  background: var(--fix-bg);
  padding: 80px 60px;
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  position: relative; 
  overflow: hidden;
}

.hero-fix::before {
  content: '';
  position: absolute; 
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent, transparent 40px,
      rgba(196,150,74,0.04) 40px, rgba(196,150,74,0.04) 41px
    );
}

.hero-fix::after {
  content: 'FIX';
  position: absolute; 
  bottom: -40px; 
  left: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 220px; 
  font-weight: 700;
  color: rgba(196,150,74,0.05); 
  line-height: 1;
  pointer-events: none; 
  user-select: none;
}

.fix-content { 
  position: relative; 
  z-index: 2; 
}

.fix-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 700; 
  line-height: 1.05;
  color: #fff; 
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.fix-headline em { 
  font-weight: 300; 
  font-style: italic; 
  color: var(--gold); 
}

.fix-desc {
  font-size: 15px; 
  line-height: 1.8; 
  color: rgba(255,255,255,0.55);
  max-width: 420px; 
  margin-bottom: 36px;
}

.fix-desc strong { 
  color: rgba(255,255,255,0.9); 
  font-weight: 600; 
}

.fix-pillars {
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  margin-bottom: 36px;
}

.fix-pillar {
  display: flex; 
  align-items: center; 
  gap: 12px;
  font-size: 13px; 
  color: rgba(255,255,255,0.65);
  padding: 10px 0; 
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fix-pillar:last-child { 
  border-bottom: none; 
}

.fix-pillar-num {
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  color: var(--gold); 
  letter-spacing: 0.1em; 
  flex-shrink: 0;
}

.fix-actions { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
}

.btn-primary-gold {
  background: var(--gold); 
  color: var(--ink);
  padding: 14px 32px; 
  font-size: 12px; 
  font-weight: 700;
  letter-spacing: 0.12em; 
  text-transform: uppercase;
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  transition: all 0.2s;
}

.btn-primary-gold:hover { 
  background: var(--gold-lt); 
  transform: translateY(-2px); 
}

.btn-ghost-gold {
  border: 1.5px solid rgba(196,150,74,0.5); 
  color: var(--gold);
  padding: 13px 28px; 
  font-size: 12px; 
  font-weight: 600;
  letter-spacing: 0.1em; 
  text-transform: uppercase;
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  transition: all 0.2s;
}

.btn-ghost-gold:hover { 
  border-color: var(--gold); 
  background: rgba(196,150,74,0.1); 
}

/* Center nameplate */
.hero-nameplate {
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
  pointer-events: none;
}

.nameplate-inner {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 20px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.nameplate-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; 
  font-weight: 600;
  color: var(--ink); 
  white-space: nowrap;
  letter-spacing: 0.02em; 
  line-height: 1;
  margin-bottom: 6px;
}

.nameplate-name em { 
  font-style: italic; 
  color: var(--gold); 
}

.nameplate-title {
  font-family: 'DM Mono', monospace; 
  font-size: 9px;
  letter-spacing: 0.16em; 
  text-transform: uppercase;
  color: var(--light); 
  white-space: nowrap;
}

/* ─────────────────────────────────────
   TICKER ANIMATION
───────────────────────────────────── */
.ticker {
  background: var(--navy);
  padding: 13px 0; 
  overflow: hidden; 
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex; 
  animation: ticker 30s linear infinite;
}

@keyframes ticker { 
  from { transform: translateX(0); } 
  to { transform: translateX(-50%); } 
}

.tick { 
  font-family: 'DM Mono', monospace; 
  font-size: 10px; 
  letter-spacing: 0.18em; 
  text-transform: uppercase; 
  color: rgba(255,255,255,0.4); 
  padding: 0 36px; 
}

.tick span { 
  color: var(--sky); 
  margin-right: 8px; 
}

/* ─────────────────────────────────────
   SHARED SECTION STYLES
───────────────────────────────────── */
.section-label {
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.22em; 
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
}

.section-label-navy { 
  color: var(--navy); 
}

.section-label-navy::before { 
  content: ''; 
  width: 24px; 
  height: 2px; 
  background: var(--navy); 
  display: block; 
}

.section-label-gold { 
  color: var(--gold); 
}

.section-label-gold::before { 
  content: ''; 
  width: 24px; 
  height: 2px; 
  background: var(--gold); 
  display: block; 
}

h2.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 700; 
  line-height: 1.1;
  margin-bottom: 16px;
}

.sec-sub {
  font-size: 16px; 
  color: var(--mid); 
  line-height: 1.75;
  max-width: 560px; 
  font-weight: 300; 
  margin-bottom: 64px;
}

/* ─────────────────────────────────────
   PM / BA WORK SECTION
───────────────────────────────────── */
#pm-work {
  padding: 100px 60px;
  background: var(--hire-bg);
  border-top: 3px solid var(--navy);
}

.pm-header {
  display: flex; 
  justify-content: space-between; 
  align-items: flex-end;
  margin-bottom: 64px; 
  padding-bottom: 36px;
  border-bottom: 1px solid #c9d5e8;
}

.pm-header-right {
  display: flex; 
  gap: 10px; 
  align-items: center;
}

/* Role badges */
.role-badges { 
  display: flex; 
  gap: 8px; 
  margin-bottom: 24px; 
  flex-wrap: wrap; 
}

.badge {
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.12em; 
  text-transform: uppercase;
  padding: 5px 14px; 
  border: 1.5px solid;
}

.badge-navy { 
  border-color: var(--navy); 
  color: var(--navy); 
}

.badge-sky { 
  border-color: var(--sky); 
  color: var(--navy); 
  background: rgba(135,206,235,0.15); 
}

.badge-purple { 
  border-color: var(--purple); 
  color: var(--purple); 
}

/* Work examples grid */
.work-grid {
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 24px;
  margin-bottom: 48px;
}

.work-card {
  background: #fff; 
  border: 1px solid #c9d5e8;
  border-top: 3px solid var(--navy);
  padding: 40px 36px;
  transition: all 0.3s;
}

.work-card:hover {
  border-top-color: var(--purple);
  box-shadow: 0 12px 40px rgba(0,45,98,0.1);
  transform: translateY(-3px);
}

.work-client {
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.18em; 
  text-transform: uppercase;
  color: var(--light); 
  margin-bottom: 8px;
  display: flex; 
  align-items: center; 
  gap: 8px;
}

.work-client::before { 
  content: ''; 
  width: 16px; 
  height: 1px; 
  background: var(--light); 
  display: block; 
}

.work-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; 
  font-weight: 700;
  color: var(--navy); 
  margin-bottom: 12px;
}

.work-desc {
  font-size: 14px; 
  line-height: 1.8; 
  color: var(--mid); 
  margin-bottom: 20px;
}

.work-outcomes { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
  margin-bottom: 20px; 
}

.outcome {
  font-size: 13px; 
  color: var(--char);
  display: flex; 
  align-items: flex-start; 
  gap: 8px; 
  line-height: 1.5;
}

.outcome::before { 
  content: '→'; 
  color: var(--navy); 
  flex-shrink: 0; 
  font-weight: 700; 
}

.work-tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 6px; 
}

.work-tag {
  font-family: 'DM Mono', monospace; 
  font-size: 9px;
  letter-spacing: 0.1em; 
  text-transform: uppercase;
  border: 1px solid #c9d5e8; 
  padding: 3px 10px; 
  color: var(--light);
}

/* Skills section */
.skills-section {
  margin-top: 64px; 
  padding-top: 48px;
  border-top: 1px solid #c9d5e8;
}

.skills-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 32px; 
}

.skill-group-title {
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.18em; 
  text-transform: uppercase;
  color: var(--navy); 
  margin-bottom: 16px;
  padding-bottom: 10px; 
  border-bottom: 1px solid #c9d5e8;
}

.skill-list { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}

.skill-item {
  font-size: 13px; 
  color: var(--mid);
  display: flex; 
  align-items: center; 
  gap: 8px;
}

.skill-item::before { 
  content: '·'; 
  color: var(--navy); 
  font-weight: 700; 
}

/* ─────────────────────────────────────
   ABOUT / CAREER SECTION
───────────────────────────────────── */
#about {
  padding: 100px 60px;
  background: var(--cream);
}

.about-grid {
  display: grid; 
  grid-template-columns: 300px 1fr; 
  gap: 100px;
  max-width: 1280px; 
  margin: 0 auto;
}

/* Sidebar */
.about-sidebar { 
  position: sticky; 
  top: 88px; 
  align-self: start; 
}

.sidebar-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; 
  font-size: 18px;
  color: var(--mid); 
  line-height: 1.65;
  border-left: 2px solid var(--gold);
  padding-left: 20px; 
  margin-bottom: 40px;
}

.sidebar-stats { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
}

.s-stat { 
  border-bottom: 1px solid var(--rule); 
  padding-bottom: 18px; 
}

.s-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; 
  font-weight: 700; 
  color: var(--navy); 
  line-height: 1;
}

.s-lbl {
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.12em; 
  text-transform: uppercase;
  color: var(--light); 
  margin-top: 4px;
}

/* Main content */
.about-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 1.8vw, 24px); 
  font-weight: 400;
  line-height: 1.65; 
  color: var(--char);
  margin-bottom: 52px; 
  padding-bottom: 52px;
  border-bottom: 1px solid var(--rule);
}

.about-intro em { 
  color: var(--navy); 
  font-style: italic; 
}

/* Timeline */
.tl-header {
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.2em; 
  text-transform: uppercase;
  color: var(--light); 
  margin-bottom: 40px;
  display: flex; 
  align-items: center; 
  gap: 14px;
}

.tl-header::after { 
  content: ''; 
  flex: 1; 
  height: 1px; 
  background: var(--rule); 
}

.tl-entry {
  display: grid; 
  grid-template-columns: 160px 1fr;
  gap: 36px; 
  margin-bottom: 52px;
  position: relative; 
  padding-left: 20px;
}

.tl-entry::before {
  content: ''; 
  position: absolute;
  left: 0; 
  top: 7px;
  width: 9px; 
  height: 9px; 
  border-radius: 50%;
  background: var(--rule);
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 3px var(--rule);
}

.tl-entry.featured::before {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 3px var(--gold);
}

.tl-entry::after {
  content: ''; 
  position: absolute;
  left: 4px; 
  top: 20px; 
  bottom: -52px;
  width: 1px; 
  background: var(--rule);
}

.tl-entry:last-child::after { 
  display: none; 
}

.tl-meta { 
  padding-top: 2px; 
}

.tl-years { 
  font-family: 'DM Mono', monospace; 
  font-size: 11px; 
  color: var(--light); 
  margin-bottom: 4px; 
}

.tl-co { 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--char); 
  line-height: 1.3; 
}

.tl-co-type { 
  font-family: 'DM Mono', monospace; 
  font-size: 9px; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  color: var(--light); 
  margin-top: 3px; 
}

.tl-role { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 22px; 
  font-weight: 700; 
  color: var(--ink); 
  margin-bottom: 10px; 
}

.tl-desc { 
  font-size: 14px; 
  line-height: 1.8; 
  color: var(--mid); 
  margin-bottom: 14px; 
}

.tl-tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 6px; 
}

.tl-tag { 
  font-family: 'DM Mono', monospace; 
  font-size: 9px; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  border: 1px solid var(--rule); 
  padding: 3px 10px; 
  color: var(--light); 
}

.transition-callout {
  background: #EEF3FB; 
  border-left: 3px solid var(--navy);
  padding: 14px 20px; 
  margin: -24px 0 28px 196px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; 
  font-size: 14px; 
  color: var(--navy); 
  line-height: 1.6;
}

/* ─────────────────────────────────────
   FIXER / ARDMORE SECTION
───────────────────────────────────── */
#fixer {
  background: var(--fix-bg);
  padding: 100px 60px;
  position: relative; 
  overflow: hidden;
  border-top: 3px solid var(--gold);
}

#fixer::before {
  content: '';
  position: absolute; 
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(196,150,74,0.04) 59px, rgba(196,150,74,0.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(196,150,74,0.04) 59px, rgba(196,150,74,0.04) 60px);
}

.fixer-inner { 
  position: relative; 
  z-index: 2; 
}

.fixer-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 80px; 
  align-items: start;
}

.fixer-left .sec-title { 
  color: #fff; 
}

.fixer-left .sec-sub { 
  color: rgba(255,255,255,0.5); 
}

.fixer-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; 
  font-size: clamp(20px, 2vw, 26px);
  color: rgba(255,255,255,0.7); 
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 24px; 
  margin-bottom: 36px;
}

.fixer-quote em { 
  color: var(--gold); 
  font-style: normal; 
}

.fixer-services { 
  display: flex; 
  flex-direction: column; 
  gap: 2px; 
}

.fs-item {
  display: flex; 
  align-items: center; 
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 14px; 
  color: rgba(255,255,255,0.6);
  transition: all 0.2s; 
  cursor: default;
}

.fs-item:hover { 
  background: rgba(196,150,74,0.08); 
  border-color: rgba(196,150,74,0.2); 
  color: rgba(255,255,255,0.9); 
}

.fs-num { 
  font-family: 'DM Mono', monospace; 
  font-size: 10px; 
  color: var(--gold); 
  flex-shrink: 0; 
  letter-spacing: 0.1em; 
}

.ardmore-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,150,74,0.25);
  padding: 44px 40px;
}

.ardmore-panel-logo {
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 24px;
}

.ardmore-mark {
  width: 40px; 
  height: 40px; 
  background: var(--gold);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 900; 
  font-size: 20px; 
  color: var(--ink);
}

.ardmore-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; 
  font-weight: 700; 
  color: #fff; 
  letter-spacing: 0.04em;
}

.ardmore-wordmark span { 
  color: var(--gold); 
}

.ardmore-tagline {
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.18em; 
  text-transform: uppercase;
  color: rgba(255,255,255,0.3); 
  margin-bottom: 24px; 
  line-height: 1.6;
}

.ardmore-desc {
  font-size: 14px; 
  line-height: 1.8; 
  color: rgba(255,255,255,0.55); 
  margin-bottom: 28px;
}

.ardmore-services-mini { 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
  margin-bottom: 32px; 
}

.asm-item {
  padding: 12px 0; 
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; 
  color: rgba(255,255,255,0.5);
  display: flex; 
  align-items: center; 
  gap: 10px;
}

.asm-item:last-child { 
  border-bottom: none; 
}

.asm-item::before { 
  content: '→'; 
  color: var(--gold); 
  font-size: 11px; 
}

/* ─────────────────────────────────────
   PHILOSOPHY QUOTE SECTION
───────────────────────────────────── */
.philosophy {
  background: var(--navy);
  padding: 80px 60px;
  text-align: center;
}

.phil-inner { 
  max-width: 820px; 
  margin: 0 auto; 
}

.phil-kicker {
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.25em; 
  text-transform: uppercase;
  color: var(--sky); 
  margin-bottom: 28px;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 14px;
}

.phil-kicker::before, 
.phil-kicker::after { 
  content: ''; 
  display: block; 
  width: 36px; 
  height: 1px; 
  background: rgba(135,206,235,0.3); 
}

.phil-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 42px); 
  font-weight: 300;
  font-style: italic; 
  color: var(--cream); 
  line-height: 1.3; 
  margin-bottom: 24px;
}

.phil-quote em { 
  color: var(--sky); 
  font-style: normal; 
  font-weight: 600; 
}

.phil-attr {
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.18em; 
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ─────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────── */
#contact {
  padding: 120px 60px;
  background: var(--cream);
  position: relative; 
  overflow: hidden;
}

#contact::before {
  content: 'KB';
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 380px; 
  font-weight: 700;
  color: rgba(0,0,0,0.04); 
  line-height: 1;
  pointer-events: none; 
  user-select: none;
}

.contact-inner { 
  position: relative; 
  z-index: 2; 
  max-width: 880px; 
  margin: 0 auto; 
}

.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: start; 
}

.contact-left .sec-title { 
  color: var(--ink); 
}

.contact-desc { 
  font-size: 16px; 
  color: var(--mid); 
  line-height: 1.75; 
  margin-bottom: 36px; 
}

.contact-options { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.contact-opt {
  display: flex; 
  align-items: center; 
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--rule); 
  background: var(--warm);
  font-size: 14px; 
  color: var(--char);
  text-decoration: none; 
  transition: all 0.2s;
}

.contact-opt:hover { 
  border-color: var(--navy); 
  background: var(--hire-bg); 
}

.contact-opt-icon {
  width: 36px; 
  height: 36px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 16px; 
  flex-shrink: 0;
}

.contact-opt-label { 
  font-weight: 600; 
  color: var(--char); 
  display: block; 
}

.contact-opt-sub { 
  font-size: 12px; 
  color: var(--light); 
}

.contact-right {
  background: var(--navy); 
  padding: 44px 40px;
}

.contact-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; 
  font-weight: 700; 
  color: #fff; 
  margin-bottom: 8px;
}

.contact-panel-sub {
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.15em; 
  text-transform: uppercase;
  color: var(--sky); 
  margin-bottom: 24px;
}

.contact-resume-box {
  background: rgba(255,255,255,0.06); 
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px; 
  margin-bottom: 24px;
}

.crb-label {
  font-family: 'DM Mono', monospace; 
  font-size: 9px;
  letter-spacing: 0.18em; 
  text-transform: uppercase;
  color: rgba(255,255,255,0.35); 
  margin-bottom: 8px;
}

.crb-title { 
  font-size: 15px; 
  font-weight: 600; 
  color: #fff; 
  margin-bottom: 4px; 
}

.crb-meta { 
  font-size: 12px; 
  color: rgba(255,255,255,0.4); 
  margin-bottom: 16px; 
}

.btn-download {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  background: var(--sky); 
  color: var(--navy);
  padding: 11px 22px; 
  font-size: 11px; 
  font-weight: 700;
  letter-spacing: 0.1em; 
  text-transform: uppercase;
  text-decoration: none; 
  transition: background 0.2s; 
  width: 100%; 
  justify-content: center;
}

.btn-download:hover { 
  background: #fff; 
}

.contact-note {
  font-size: 12px; 
  color: rgba(255,255,255,0.35); 
  line-height: 1.6;
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 52px 60px 28px;
}

.footer-top {
  display: flex; 
  justify-content: space-between; 
  align-items: flex-start;
  padding-bottom: 36px; 
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; 
  font-weight: 600; 
  color: var(--cream);
}

.footer-brand em { 
  font-style: italic; 
  color: var(--gold); 
}

.footer-sub {
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.12em; 
  color: rgba(255,255,255,0.25); 
  margin-top: 6px;
}

.footer-links { 
  display: flex; 
  gap: 28px; 
  flex-wrap: wrap; 
}

.footer-links a {
  color: rgba(255,255,255,0.35); 
  text-decoration: none;
  font-size: 12px; 
  letter-spacing: 0.08em; 
  transition: color 0.2s;
}

.footer-links a:hover { 
  color: var(--sky); 
}

.footer-bottom {
  display: flex; 
  justify-content: space-between;
  font-family: 'DM Mono', monospace; 
  font-size: 10px;
  letter-spacing: 0.08em; 
  color: rgba(255,255,255,0.2);
}

.footer-bottom a { 
  color: var(--gold); 
  text-decoration: none; 
}

/* ─────────────────────────────────────
   RESPONSIVE DESIGN
───────────────────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 0 32px; }
  .nav-center { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-nameplate { display: none; }
  .hero-hire, .hero-fix { padding: 60px 32px; }
  #pm-work, #about, #fixer, #contact { padding: 80px 32px; }
  .work-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-sidebar { position: relative; top: 0; }
  .tl-entry { grid-template-columns: 120px 1fr; gap: 24px; }
  .transition-callout { margin-left: 140px; }
  .fixer-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; }
  .pm-header { flex-direction: column; gap: 20px; }
  .philosophy { padding: 72px 32px; }
  footer { padding: 48px 32px 24px; }
}

@media (max-width: 768px) {
  .skills-grid { grid-template-columns: 1fr; }
  .tl-entry { grid-template-columns: 1fr; gap: 8px; padding-left: 16px; }
  .transition-callout { margin-left: 0; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}