/* =============================================================
   BMTYSON.COM — Main Stylesheet
   Sections:
   01. Reset & Variables
   02. Base Typography
   03. Navigation
   04. Buttons
   05. Footer
   06. Shared Section Primitives
   07. Shared Components (cards, tags, checklists, etc.)
   08. Page: Home (index.html)
   09. Page: About (about.html)
   10. Page: Work (work.html)
   11. Page: Case Studies (shared)
   12. Page: Case Study — JabilWeb
   13. Page: Case Study — Content Center
   14. Responsive
   ============================================================= */


/* =============================================================
   01. RESET & VARIABLES
   ============================================================= */

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

:root {
  --cream: #F5F0E8;
  --warm-white: #FAF8F4;
  --ink: #1A1814;
  --ink-soft: #3D3A35;
  --ink-muted: #6B6760;
  --accent: #B85C2A;
  --accent-light: #E8D5C4;
  --accent-pale: #F5EDE5;
  --border: rgba(26,24,20,0.12);
  --border-light: rgba(26,24,20,0.07);
  --section-dark: #1E1C19;
  --section-mid: #F0EBE2;
}

html { scroll-behavior: smooth; }


/* =============================================================
   02. BASE TYPOGRAPHY
   ============================================================= */

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 300;
}


/* =============================================================
   03. NAVIGATION
   ============================================================= */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent) !important; color: var(--cream) !important; }


/* =============================================================
   04. BUTTONS
   ============================================================= */

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--accent); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--ink); }

.btn-light {
  background: var(--cream);
  color: var(--accent);
  padding: 0.9rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-light:hover { background: var(--ink); color: var(--cream); }

.cta-band-dark .btn-light:hover { background: var(--accent); color: var(--cream); }

.btn-accent {
  background: var(--accent);
  color: var(--cream);
  padding: 0.75rem 1.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  display: inline-block;
}

.btn-accent:hover { background: var(--ink); }


/* =============================================================
   05. FOOTER
   ============================================================= */

footer { background: var(--ink); padding: 3rem 5%; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }

.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; text-align: right; }

.footer-contact a {
  font-size: 0.85rem;
  color: #9A9088;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--accent-light); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; }

.footer-nav { display: flex; gap: 2rem; list-style: none; }

.footer-nav a {
  font-size: 0.75rem;
  color: #9A9088;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-nav a:hover { color: rgba(255,255,255,0.6); }

.footer-copy { font-size: 0.75rem; color: #9A9088; letter-spacing: 0.04em; }


/* =============================================================
   06. SHARED SECTION PRIMITIVES
   ============================================================= */

.section { padding: 6rem 5%; }

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: block;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.6rem;
  display: block;
}

.eyebrow-light {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 560px;
}

.section-body {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 520px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
  margin-bottom: 2rem;
  display: block;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

/* CTA Band */
.cta-band {
  padding: 5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  max-width: 500px;
}

.cta-band h2 em { font-style: italic; }

.cta-band-dark { background: var(--section-dark); }
.cta-band-dark h2 { color: var(--cream); }
.cta-band-dark h2 em { color: var(--accent-light); }

.cta-band-accent { background: var(--accent); }
.cta-band-accent h2 { color: var(--cream); }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col-image { position: relative; }

.two-col-image-wrap {
  aspect-ratio: 4/5;
  background: var(--accent-light);
  border-radius: 2px;
  overflow: hidden;
  max-height: 520px;
}

.two-col-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.two-col-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-pale);
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

/* Testimonial block */
.testimonial-block { background: var(--section-mid); padding: 4rem 5%; }

.testimonial-inner { max-width: 700px; margin: 0 auto; text-align: center; }

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--accent-light);
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.testimonial-name { font-size: 0.88rem; font-weight: 500; color: var(--ink); }
.testimonial-title { font-size: 0.78rem; color: var(--ink-muted); font-weight: 300; margin-top: 0.2rem; }

/* Image placeholders */
.img-placeholder {
  background: var(--accent-pale);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

.img-placeholder.full { width: 100%; height: 380px; margin: 2.5rem 0; }
.img-placeholder.half { width: 100%; height: 260px; margin-top: 1.25rem; }

.img-placeholder-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--accent-light);
  line-height: 1;
}


/* =============================================================
   07. SHARED COMPONENTS
   ============================================================= */

/* Checklist */
.checklist { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.6;
}

.checklist li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
  margin-top: 0.7rem;
  flex-shrink: 0;
}

/* Tags */
.card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }

.card-tag {
  background: var(--section-mid);
  border: 1px solid var(--border-light);
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  color: var(--ink-muted);
  border-radius: 2px;
  letter-spacing: 0.03em;
  font-weight: 300;
}

.cs-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.75rem; }

.cs-tag {
  background: var(--section-mid);
  border: 1px solid var(--border-light);
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  color: var(--ink-muted);
  border-radius: 2px;
  letter-spacing: 0.03em;
  font-weight: 300;
}

/* Tech detail table */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.tech-label {
  background: var(--section-mid);
  padding: 0.85rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}

.tech-value {
  background: var(--warm-white);
  padding: 0.85rem 1.25rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 300;
  border-bottom: 1px solid var(--border-light);
}

/* Related case study card */
.related-section { padding: 5rem 5%; background: var(--warm-white); }

.related-card {
  background: var(--section-mid);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  transition: border-color 0.2s;
  text-decoration: none;
}

.related-card:hover { border-color: var(--accent); }

.related-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.4rem;
  display: block;
}

.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.related-desc { font-size: 0.86rem; color: var(--ink-muted); font-weight: 300; max-width: 480px; line-height: 1.65; }
.related-arrow { font-size: 1.5rem; color: var(--accent); flex-shrink: 0; }


/* =============================================================
   08. PAGE: HOME (index.html)
   ============================================================= */

/* Hero */
.hero {
  min-height: 100vh;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: var(--section-mid);
  z-index: 0;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-text { position: relative; z-index: 1; padding-top: 5rem; }

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: block;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.3em;
  letter-spacing: -0.01em;
}

.hero h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 1.5rem 0 2.5rem;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image { position: relative; z-index: 1; padding-top: 5rem; padding-bottom: 3rem; }

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--accent-light);
  border-radius: 2px;
  overflow: hidden;
  max-height: 580px;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

/* Stats bar */
.stats-bar {
  background: var(--ink);
  padding: 2.5rem 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat { text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9A9088;
  margin-top: 0.4rem;
  display: block;
}

/* Trust strip */
.trust-strip {
  background: var(--warm-white);
  padding: 3.5rem 5%;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.trust-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-style: italic;
}

.trust-checks { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }

.trust-check {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-check::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
  display: block;
}

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  border-radius: 2px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 { font-size: 1.2rem; font-weight: 400; margin-bottom: 0.6rem; color: var(--ink); }
.service-card p { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.7; font-weight: 300; }

/* Approach */
.approach { background: var(--section-mid); padding: 6rem 5%; }

/* Work preview */
.work-preview { padding: 6rem 5%; background: var(--warm-white); }

.work-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.work-preview-header .section-title { margin-bottom: 0; }

.work-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.wp-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s;
  background: var(--warm-white);
}

.wp-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.wp-card-image { aspect-ratio: 16/9; background: var(--section-mid); overflow: hidden; }

.wp-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.wp-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.wp-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.wp-card-client {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.35rem;
  display: block;
}

.wp-card-title { font-size: 1.15rem; font-weight: 400; color: var(--ink); margin-bottom: 0.6rem; line-height: 1.25; }

.wp-card-desc { font-size: 0.86rem; color: var(--ink-muted); font-weight: 300; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }

.wp-card-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; }

.wp-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }

.wp-tag {
  background: var(--section-mid);
  border: 1px solid var(--border-light);
  padding: 0.2rem 0.6rem;
  font-size: 0.68rem;
  color: var(--ink-muted);
  border-radius: 2px;
  letter-spacing: 0.03em;
  font-weight: 300;
}

.wp-card-link {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials { background: var(--section-dark); padding: 6rem 5%; }
.testimonials .section-eyebrow { color: var(--accent-light); }
.testimonials .section-title { color: var(--cream); }

.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }

.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.25rem;
  border-radius: 2px;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,232,0.85);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.testi-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.testi-name { font-size: 0.85rem; font-weight: 500; color: var(--cream); letter-spacing: 0.03em; }
.testi-title { font-size: 0.78rem; color: #9A9088; margin-top: 0.2rem; font-weight: 300; }

/* How I work */
.how { padding: 6rem 5%; background: var(--section-mid); }

.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.steps { display: flex; flex-direction: column; gap: 2rem; margin-top: 1rem; }

.step { display: flex; gap: 1.5rem; align-items: flex-start; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: right;
}

.step-content h4 { font-size: 1rem; font-weight: 500; font-family: 'DM Sans', sans-serif; color: var(--ink); margin-bottom: 0.3rem; }
.step-content p { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.7; font-weight: 300; }

/* Contact */
.contact {
  padding: 7rem 5%;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--ink); margin-bottom: 1rem; line-height: 1.2; }
.contact-text h2 em { font-style: italic; color: var(--accent); }
.contact-text p { font-size: 1rem; color: var(--ink-muted); font-weight: 300; line-height: 1.75; max-width: 400px; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  background: var(--section-mid);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-muted); }

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }

.contact-form textarea { height: 120px; resize: none; line-height: 1.6; }


/* =============================================================
   09. PAGE: ABOUT (about.html)
   ============================================================= */

.page-hero {
  background: var(--section-mid);
  padding: 10rem 5% 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.page-hero-text span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: block;
}

.page-hero-text h1 { font-size: clamp(2.8rem, 4.5vw, 4rem); font-weight: 300; color: var(--ink); margin-bottom: 1rem; }
.page-hero-text h1 em { font-style: italic; color: var(--accent); }
.page-hero-text p { font-size: 1.05rem; color: var(--ink-soft); font-weight: 300; line-height: 1.75; max-width: 460px; margin-bottom: 2rem; }

.page-hero-image { position: relative; }

.page-hero-image-wrap {
  aspect-ratio: 3/4;
  max-height: 520px;
  background: var(--accent-light);
  border-radius: 2px;
  overflow: hidden;
}

.page-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.philosophy { padding: 6rem 5%; background: var(--warm-white); }

.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.philosophy-body p { font-size: 1rem; color: var(--ink-soft); line-height: 1.8; font-weight: 300; margin-bottom: 1.2rem; }

.philosophy-values { display: flex; flex-direction: column; gap: 1.5rem; }

.value-item { padding: 1.5rem 1.75rem; border: 1px solid var(--border); border-radius: 2px; transition: border-color 0.2s; }
.value-item:hover { border-color: var(--accent); }
.value-item h4 { font-size: 1.05rem; font-weight: 400; font-family: 'Cormorant Garamond', serif; color: var(--ink); margin-bottom: 0.4rem; }
.value-item p { font-size: 0.86rem; color: var(--ink-muted); line-height: 1.65; font-weight: 300; }

.full-career { background: var(--section-mid); padding: 6rem 5%; }

.career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }

.career-timeline { display: flex; flex-direction: column; gap: 0; }

.timeline-item { display: grid; grid-template-columns: 150px 1fr; gap: 2rem; padding: 1.75rem 0; border-bottom: 1px solid var(--border-light); align-items: baseline; }
.timeline-item:first-child { border-top: 1px solid var(--border-light); }
.timeline-years { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; color: var(--ink-muted); letter-spacing: 0.05em; font-style: italic; }
.timeline-role { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--ink); margin-bottom: 0.25rem; }
.timeline-company { font-size: 0.82rem; color: var(--ink-muted); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.timeline-detail { font-size: 0.82rem; color: var(--ink-muted); font-weight: 300; line-height: 1.6; }

.skills-wrap { padding-top: 1rem; }
.skills-category { margin-bottom: 2rem; }

.skills-category-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.skills-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.skill-tag {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-radius: 2px;
  font-weight: 300;
  letter-spacing: 0.03em;
  transition: border-color 0.2s;
}

.skill-tag:hover { border-color: var(--accent); }

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  border-radius: 2px;
  margin-top: 1rem;
}

.cert-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-text { display: flex; flex-direction: column; }
.cert-name { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.cert-issuer { font-size: 0.75rem; color: var(--ink-muted); margin-top: 0.1rem; }

.metrics { background: var(--section-dark); padding: 6rem 5%; }
.metrics .section-eyebrow { color: var(--accent-light); }
.metrics .section-title { color: var(--cream); }
.metrics .section-body { color: rgba(245,240,232,0.55); }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 3rem;
}

.metric-cell { background: var(--section-dark); padding: 2.5rem 2rem; text-align: center; }

.metric-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--accent-light);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.metric-desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.4; }


/* =============================================================
   10. PAGE: WORK (work.html)
   ============================================================= */

.work-hero {
  background: var(--section-mid);
  padding: 10rem 5% 5rem;
}

.page-hero-inner { max-width: 680px; }

.page-hero-inner span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: block;
}

.page-hero-inner h1 {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1rem;
}

.page-hero-inner h1 em { font-style: italic; color: var(--accent); }

.page-hero-inner p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
}

.filter-bar {
  padding: 2rem 5%;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
  margin-right: 0.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.projects-section { padding: 4rem 5% 6rem; background: var(--warm-white); }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }

.project-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}

.project-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.project-card.featured { border-color: var(--accent); }

.card-image { aspect-ratio: 16/9; background: var(--section-mid); overflow: hidden; position: relative; }

.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.project-card:hover .card-image img { transform: scale(1.03); }

.card-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

.card-featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--cream);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.card-body { padding: 1.5rem 1.6rem 1.75rem; flex: 1; display: flex; flex-direction: column; }

.card-client {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.card-title { font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: 0.75rem; line-height: 1.25; }

.card-desc { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.7; font-weight: 300; flex: 1; margin-bottom: 1.25rem; }

.card-metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding: 0.75rem 1rem;
  background: var(--accent-pale);
  border-radius: 2px;
}

.card-metric-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.card-metric-label { font-size: 0.78rem; color: var(--ink-muted); font-weight: 300; line-height: 1.3; }

.card-link {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
  margin-top: auto;
}

.card-link:hover { gap: 0.7rem; }
.card-link.disabled { color: var(--ink-muted); cursor: default; pointer-events: none; }
.card-link-arrow { font-size: 0.9rem; }

/* Case study teasers on work page */
.case-studies-section { background: var(--section-mid); padding: 6rem 5%; }
.case-studies-section h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--ink); margin-bottom: 0.75rem; }
.case-studies-section > p { font-size: 1rem; color: var(--ink-muted); font-weight: 300; max-width: 520px; margin-bottom: 4rem; line-height: 1.75; }

.case-study { background: var(--warm-white); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; margin-bottom: 2rem; }
.case-study:last-of-type { margin-bottom: 0; }

.cs-inner { display: grid; grid-template-columns: 1fr 1fr; }
.cs-inner.reverse { direction: rtl; }
.cs-inner.reverse > * { direction: ltr; }

.cs-image { min-height: 420px; background: var(--section-mid); overflow: hidden; }
.cs-image img { width: 100%; height: 100%; object-fit: cover; }

.cs-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--accent-pale);
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

.cs-image-placeholder .cs-icon { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--accent-light); line-height: 1; }

.cs-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }

.cs-number { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }

.cs-client { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; margin-bottom: 0.5rem; }

.cs-title { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; color: var(--ink); margin-bottom: 0.9rem; line-height: 1.2; }

.cs-summary { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.75; font-weight: 300; margin-bottom: 1.5rem; }

.cs-metrics { display: flex; gap: 1.5rem; margin-bottom: 1.75rem; flex-wrap: wrap; }

.cs-metric { display: flex; flex-direction: column; gap: 0.1rem; }

.cs-metric-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--accent); line-height: 1; }

.cs-metric-label { font-size: 0.72rem; color: var(--ink-muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 400; }


/* =============================================================
   11. PAGE: CASE STUDIES — SHARED
   ============================================================= */

.cs-hero {
  padding: 9rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.cs-breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cs-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.cs-breadcrumb a:hover { color: var(--accent-light); }
.cs-breadcrumb span { opacity: 0.4; }

.cs-hero-inner { max-width: 760px; }

.cs-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.cs-hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 300; color: var(--cream); margin-bottom: 1rem; }
.cs-hero h1 em { font-style: italic; color: var(--accent-light); }

.cs-hero-sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.65);
  font-weight: 300;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.cs-meta-row { display: flex; gap: 3rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.cs-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.cs-meta-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: #9A9088; }
.cs-meta-value { font-size: 0.88rem; color: rgba(245,240,232,0.75); font-weight: 300; }

/* Key results bar */
.key-results { padding: 4rem 5%; }
.results-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-bottom: 2rem; display: block; }
.results-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; }
.result-cell { padding: 1.75rem 1.5rem; text-align: center; }
.result-number { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; line-height: 1; display: block; letter-spacing: -0.02em; }
.result-desc { font-size: 0.75rem; margin-top: 0.4rem; display: block; line-height: 1.4; letter-spacing: 0.03em; }

/* Body sections */
.cs-section { padding: 5rem 5%; }
.cs-section.alt { background: var(--section-mid); }
.cs-section.dark { background: var(--section-dark); }
.cs-section-inner { max-width: 820px; margin: 0 auto; }
.cs-section-wide { max-width: 1100px; margin: 0 auto; }

.cs-section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; color: var(--ink); margin-bottom: 1rem; }
.cs-section.dark h2 { color: var(--cream); }
.cs-section h2 em { font-style: italic; color: var(--accent); }
.cs-section.dark h2 em { color: var(--accent-light); }

.lead { font-size: 1.1rem; color: var(--ink-soft); font-weight: 300; line-height: 1.8; margin-bottom: 1.5rem; }
.body-text { font-size: 0.95rem; color: var(--ink-muted); font-weight: 300; line-height: 1.85; margin-bottom: 1.25rem; }

/* Problems grid */
.problems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }

.problem-card { background: var(--warm-white); border: 1px solid var(--border); padding: 1.5rem 1.6rem; border-radius: 2px; }
.problem-card h4 { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500; color: var(--ink); margin-bottom: 0.75rem; letter-spacing: 0.03em; }

.problem-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.problem-list li { font-size: 0.85rem; color: var(--ink-muted); font-weight: 300; line-height: 1.6; display: flex; gap: 0.6rem; align-items: flex-start; }
.problem-list li::before { content: '—'; color: var(--accent); flex-shrink: 0; font-size: 0.8rem; margin-top: 0.1rem; }

/* Process steps */
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }

.process-step { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; padding: 2.5rem 0; border-bottom: 1px solid var(--border-light); align-items: start; }
.process-step:first-child { border-top: 1px solid var(--border-light); }

.step-label { display: flex; flex-direction: column; gap: 0.3rem; padding-top: 0.2rem; }
.step-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--accent-light); line-height: 1; }
.step-name { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; }

.step-body h3 { font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 0.75rem; }
.step-body p { font-size: 0.9rem; color: var(--ink-muted); font-weight: 300; line-height: 1.8; margin-bottom: 0.75rem; }

.step-insights { background: var(--accent-pale); border-left: 2px solid var(--accent); padding: 1rem 1.25rem; margin-top: 1rem; border-radius: 0 2px 2px 0; }
.step-insights-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; margin-bottom: 0.5rem; display: block; }
.step-insights ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.step-insights li { font-size: 0.84rem; color: var(--ink-soft); font-weight: 300; line-height: 1.6; display: flex; gap: 0.6rem; align-items: flex-start; }
.step-insights li::before { content: '→'; color: var(--accent); flex-shrink: 0; font-size: 0.8rem; }

/* Success factors */
.factors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }

.factor-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 2rem; border-radius: 2px; }
.factor-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: rgba(232,213,196,0.25); line-height: 1; margin-bottom: 0.75rem; display: block; }
.factor-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--cream); margin-bottom: 0.6rem; }
.factor-card p { font-size: 0.86rem; color: rgba(245,240,232,0.5); font-weight: 300; line-height: 1.7; }

/* Results detail */
.results-detail-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin: 2.5rem 0; }

.result-detail-card { background: var(--warm-white); border: 1px solid var(--border); padding: 1.75rem; border-radius: 2px; }
.result-detail-card h4 { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; margin-bottom: 1rem; }
.result-detail-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.result-detail-card li { font-size: 0.86rem; color: var(--ink-muted); font-weight: 300; line-height: 1.6; display: flex; gap: 0.6rem; align-items: flex-start; }
.result-detail-card li::before { content: '—'; color: var(--accent); flex-shrink: 0; }


/* =============================================================
   12. PAGE: CASE STUDY — JABILWEB
   ============================================================= */

.cs-hero-jabilweb { background: var(--section-dark); }

.cs-hero-jabilweb::after {
  content: 'JabilWeb';
  position: absolute;
  right: 3%;
  bottom: -2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.02em;
  pointer-events: none;
  line-height: 1;
}

.key-results-jabilweb { background: var(--accent); }
.key-results-jabilweb .results-label { color: #FFFFFF; }
.key-results-jabilweb .results-grid { background: rgba(255,255,255,0.15); }
.key-results-jabilweb .result-cell { background: var(--accent); }
.key-results-jabilweb .result-number { color: var(--cream); }
.key-results-jabilweb .result-desc { color: #FFFFFF; }


/* =============================================================
   13. PAGE: CASE STUDY — CONTENT CENTER
   ============================================================= */

.cs-hero-content { background: #16181A; }

.cs-hero-content::after {
  content: 'Content';
  position: absolute;
  right: 2%;
  bottom: -2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.02em;
  pointer-events: none;
  line-height: 1;
}

.key-results-content { background: var(--ink); }
.key-results-content .results-label { color: #9A9088; }
.key-results-content .results-grid { background: rgba(255,255,255,0.08); }
.key-results-content .result-cell { background: var(--ink); }
.key-results-content .result-number { color: var(--accent-light); }
.key-results-content .result-desc { color: #9A9088; }

/* Chaos diagram */
.chaos-diagram { background: var(--warm-white); border: 1px solid var(--border); border-radius: 2px; padding: 2.5rem; margin: 2.5rem 0; }
.chaos-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 1.5rem; display: block; }
.platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.platform-pill { background: var(--section-mid); border: 1px solid var(--border); border-radius: 2px; padding: 0.75rem 1rem; font-size: 0.82rem; color: var(--ink-soft); font-weight: 300; text-align: center; }
.arrow-row { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: var(--ink-muted); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; margin: 0.5rem 0; }
.unified-pill { background: var(--ink); color: var(--cream); border-radius: 2px; padding: 1rem 1.5rem; font-size: 0.9rem; font-weight: 400; text-align: center; letter-spacing: 0.04em; }

/* Stat highlight */
.stat-highlight { background: var(--section-mid); border: 1px solid var(--border); border-radius: 2px; padding: 2rem; margin: 2rem 0; display: flex; align-items: center; gap: 2rem; }
.stat-big { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--accent); line-height: 1; flex-shrink: 0; }
.stat-context { font-size: 0.9rem; color: var(--ink-soft); font-weight: 300; line-height: 1.7; }
.stat-context strong { font-weight: 500; color: var(--ink); }

/* 5D methodology callout */
.methodology-callout { background: var(--accent-pale); border-left: 3px solid var(--accent); padding: 1.25rem 1.5rem; border-radius: 0 2px 2px 0; margin-bottom: 2.5rem; display: flex; align-items: flex-start; gap: 1rem; }
.methodology-icon { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--accent); line-height: 1; flex-shrink: 0; padding-top: 0.1rem; }
.methodology-text h4 { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500; color: var(--ink); margin-bottom: 0.25rem; }
.methodology-text p { font-size: 0.84rem; color: var(--ink-muted); font-weight: 300; line-height: 1.65; }

/* Factors grid — 3 col for content center */
.factors-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }

/* Lessons list */
.lessons-list { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.lesson-item { display: flex; gap: 2rem; padding: 1.75rem 0; border-bottom: 1px solid var(--border-light); align-items: flex-start; }
.lesson-item:first-child { border-top: 1px solid var(--border-light); }
.lesson-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--accent-light); line-height: 1; flex-shrink: 0; width: 2.5rem; text-align: right; padding-top: 0.1rem; }
.lesson-body h4 { font-size: 1rem; font-weight: 500; font-family: 'DM Sans', sans-serif; color: var(--ink); margin-bottom: 0.35rem; }
.lesson-body p { font-size: 0.88rem; color: var(--ink-muted); font-weight: 300; line-height: 1.7; }

/* Results 2-col (content center) */
.results-detail-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2.5rem 0; }


/* =============================================================
   14. RESPONSIVE
   ============================================================= */

@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Home */
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 6rem; padding-bottom: 0; }
  .hero::before { display: none; }
  .hero-text { padding-top: 2rem; }
  .hero-image { padding-top: 2rem; }
  .stats-bar { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem; }
  .stat:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .work-preview-grid { grid-template-columns: 1fr; }
  .work-preview-header { flex-direction: column; align-items: flex-start; }
  .two-col, .how-grid, .contact { grid-template-columns: 1fr; gap: 3rem; }
  .testi-grid { grid-template-columns: 1fr; }

  /* About */
  .page-hero { grid-template-columns: 1fr; padding-top: 8rem; gap: 3rem; }
  .philosophy-grid, .career-grid { grid-template-columns: 1fr; gap: 3rem; }
  .metrics-grid { grid-template-columns: 1fr; }

  /* Work */
  .projects-grid { grid-template-columns: 1fr; }
  .cs-inner, .cs-inner.reverse { grid-template-columns: 1fr; direction: ltr; }
  .cs-image { min-height: 260px; }
  .cs-body { padding: 2rem; }

  /* Case studies */
  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .problems-grid, .factors-grid, .factors-grid-3, .results-detail-grid, .results-detail-grid-2 { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 1rem; }
  .step-number { font-size: 2rem; }
  .tech-grid { grid-template-columns: 1fr; }
  .tech-label { border-right: none; }
  .stat-highlight { flex-direction: column; gap: 1rem; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .related-card { flex-direction: column; }

  /* Shared */
  .cta-band { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-contact { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 600px) {
  .results-grid { grid-template-columns: 1fr 1fr; }
  .cs-meta-row { gap: 1.5rem; }
  .platforms-grid { grid-template-columns: 1fr; }
}
