/* ═══════════════════════════════════════════════════════════
   COLEMAN TECHNICAL — Site Stylesheet
   "The Workshop" — Charcoal + Burnt Orange
   Inter + JetBrains Mono
   ═══════════════════════════════════════════════════════════ */

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

:root{
  /* Charcoal family */
  --charcoal:#1E1E24;
  --charcoal-mid:#26262E;
  --charcoal-light:#32323C;
  --charcoal-fade:rgba(30,30,36,0.97);

  /* Orange accent */
  --orange:#E8621C;
  --orange-hover:#F47434;
  --orange-soft:rgba(232,98,28,0.08);
  --orange-glow:rgba(232,98,28,0.15);
  --orange-strong:rgba(232,98,28,0.25);

  /* Surfaces */
  --surface:#F5F3EF;
  --surface-alt:#ECEAE5;
  --white:#FFFFFF;

  /* Text */
  --text:#1E1E24;
  --text-mid:#4A4A56;
  --text-muted:#6E6E7A;
  --text-light:#9898A4;
  --text-on-dark:#E8E6E2;
  --text-muted-dark:#A0A0AA;

  /* Borders */
  --border:rgba(30,30,36,0.08);
  --border-strong:rgba(30,30,36,0.15);
  --border-dark:rgba(255,255,255,0.08);
  --border-dark-strong:rgba(255,255,255,0.18);

  /* Typography */
  --font:'Inter',system-ui,-apple-system,sans-serif;
  --font-mono:'JetBrains Mono','Fira Code','Consolas',monospace;

  /* Layout */
  --max-w:1200px;
  --narrow:780px;
  --px:clamp(1.25rem,4vw,2rem);
  --section-pad:clamp(2.5rem,5vw,3.5rem);
  --header-h:72px;

  /* Misc */
  --radius:8px;
  --radius-lg:12px;
  --ease:cubic-bezier(0.16,1,0.3,1);
  --ease-out:cubic-bezier(0,0,0.2,1);
  --dur:0.35s;
}

html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
[id]{scroll-margin-top:calc(var(--header-h) + 1.5rem)}
body{
  font-family:var(--font);
  font-size:1.0625rem;
  line-height:1.65;
  color:var(--text);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:none;background:none}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6{line-height:1.15;font-weight:700}
h1{font-size:clamp(2.25rem,5vw,3.5rem);font-weight:800;letter-spacing:-0.025em}
h2{font-size:clamp(1.75rem,3.5vw,2.5rem);letter-spacing:-0.015em}
h3{font-size:1.25rem}
h4{font-size:1.0625rem}
p+p{margin-top:1em}

.mono{font-family:var(--font-mono)}

/* ── CONTAINER ── */
.container{max-width:var(--max-w);margin:0 auto;padding:0 var(--px)}
.container--narrow{max-width:var(--narrow);margin:0 auto;padding:0 var(--px)}

/* ── BUTTONS ── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:0.875rem 2rem;
  font-size:0.9375rem;font-weight:600;
  border-radius:var(--radius);
  transition:all var(--dur) var(--ease);
  white-space:nowrap;cursor:pointer;
}

.btn-primary{background:var(--orange);color:var(--white)}
.btn-primary:hover{
  background:var(--orange-hover);
  transform:translateY(-1px);
  box-shadow:0 4px 20px rgba(232,98,28,0.35);
}

.btn-ghost{
  border:1.5px solid var(--border-dark-strong);
  color:var(--text-on-dark);background:transparent;
}
.btn-ghost:hover{border-color:var(--white);color:var(--white)}

.btn-ghost-light{
  border:1.5px solid var(--border-strong);
  color:var(--text);background:transparent;
}
.btn-ghost-light:hover{border-color:var(--orange);color:var(--orange)}

/* ── SITE HEADER ── */
.site-header{
  position:fixed;top:0;left:0;right:0;
  z-index:1000;height:var(--header-h);
  display:flex;align-items:center;
  transition:background var(--dur) var(--ease),box-shadow var(--dur) var(--ease);
}
.site-header.scrolled{
  background:var(--charcoal-fade);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 1px 0 var(--border-dark);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  max-width:var(--max-w);margin:0 auto;padding:0 var(--px);width:100%;
}

/* Logo */
.logo{
  display:flex;align-items:center;gap:0.625rem;
  color:var(--white);font-size:1.125rem;z-index:10;
}
.logo-mark{
  font-family:var(--font-mono);font-weight:500;font-size:0.875rem;
  color:var(--orange);
  background:rgba(232,98,28,0.1);
  padding:0.25rem 0.5rem;border-radius:6px;
  border:1px solid rgba(232,98,28,0.2);
  line-height:1;
}
.logo-text{font-weight:400;letter-spacing:-0.01em}
.logo-text strong{font-weight:700}

/* Desktop nav */
.nav-desktop{display:none;align-items:center;gap:0.25rem}
.nav-desktop>a,
.nav-desktop .dropdown-toggle{
  color:rgba(255,255,255,0.7);
  font-size:0.9375rem;font-weight:450;
  padding:0.5rem 0.875rem;border-radius:6px;
  transition:color var(--dur) var(--ease),background var(--dur) var(--ease);
}
.nav-desktop>a:hover,
.nav-desktop .dropdown-toggle:hover,
.nav-desktop>a.active{
  color:var(--white);background:rgba(255,255,255,0.06);
}
.nav-desktop .header-cta{
  background:var(--orange);color:var(--white);
  padding:0.5rem 1.25rem;border-radius:6px;
  font-weight:600;font-size:0.875rem;margin-left:0.5rem;
}
.nav-desktop .header-cta:hover{
  background:var(--orange-hover);color:var(--white);
  transform:translateY(-1px);
}

/* Dropdown */
.has-dropdown{position:relative}
.dropdown-toggle .chevron{
  width:10px;height:10px;display:inline-block;vertical-align:middle;
  margin-left:2px;transition:transform var(--dur) var(--ease);
}
.has-dropdown:hover .dropdown-toggle .chevron{transform:rotate(180deg)}
.dropdown{
  position:absolute;top:100%;left:50%;
  padding-top:12px;
  transform:translateX(-50%) translateY(4px);
  opacity:0;visibility:hidden;
  min-width:220px;
  transition:all var(--dur) var(--ease);
}
/* Invisible bridge so mouse doesn't lose hover crossing the gap */
.dropdown::before{
  content:'';position:absolute;top:-12px;left:0;right:0;height:16px;
}
.dropdown::after{
  content:'';position:absolute;inset:12px 0 0 0;
  background:var(--charcoal);border-radius:var(--radius);
  box-shadow:0 12px 40px rgba(0,0,0,0.25);
  z-index:-1;
}
.has-dropdown:hover .dropdown{
  opacity:1;visibility:visible;
  transform:translateX(-50%) translateY(0);
}
.dropdown a{
  position:relative;
  display:block;padding:0.625rem 1rem;
  font-size:0.9375rem;color:rgba(255,255,255,0.8);
  border-radius:6px;
  transition:background var(--dur) var(--ease),color var(--dur) var(--ease);
}
.dropdown a:hover{background:rgba(255,255,255,0.08);color:var(--orange)}

/* Mobile toggle */
.mobile-toggle{
  display:flex;flex-direction:column;gap:5px;padding:8px;z-index:10;
}
.mobile-toggle span{
  display:block;width:22px;height:2px;
  background:var(--white);border-radius:1px;
  transition:all var(--dur) var(--ease);
}

/* Mobile nav overlay */
.nav-mobile{
  position:fixed;inset:0;
  background:var(--charcoal);
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:0.25rem;
  opacity:0;visibility:hidden;
  transition:all var(--dur) var(--ease);z-index:5;
}
.nav-mobile.open{opacity:1;visibility:visible}
.nav-mobile a{
  color:var(--text-on-dark);font-size:1.25rem;font-weight:500;
  padding:0.75rem 1.5rem;border-radius:var(--radius);
  transition:color var(--dur) var(--ease);
}
.nav-mobile a:hover{color:var(--orange)}
.nav-mobile .header-cta-mobile{
  margin-top:1rem;background:var(--orange);
  color:var(--white);padding:0.875rem 2rem;
  font-weight:600;border-radius:var(--radius);
}

/* ── SECTIONS ── */
.section{position:relative;padding:var(--section-pad) 0}
.section--dark{background:var(--charcoal);color:var(--text-on-dark)}
.section--surface{background:var(--surface)}

.section-label{
  display:inline-block;
  font-family:var(--font-mono);font-size:0.8125rem;
  color:var(--orange);
  margin-bottom:0.75rem;letter-spacing:0.02em;
}

.section-header{margin-bottom:2.5rem}
.section-header--center{text-align:center}

.section-title{margin-bottom:0.75rem}
.section-subtitle{
  color:var(--text-muted);font-size:1.125rem;
  line-height:1.55;
}
.section--dark .section-subtitle{color:var(--text-muted-dark)}
.section-header--center .section-subtitle{margin-left:auto;margin-right:auto}

/* ── HERO ── */
.hero{
  position:relative;
  min-height:100vh;min-height:100svh;
  display:flex;align-items:center;
  background:var(--charcoal);color:var(--text-on-dark);
  padding:calc(var(--header-h) + 3rem) 0 var(--section-pad);
  overflow:hidden;
}
/* Dot grid pattern */
.hero::before{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,0.035) 1px,transparent 1px);
  background-size:32px 32px;pointer-events:none;
}
/* Warm glow */
.hero::after{
  content:'';position:absolute;
  width:700px;height:700px;
  background:radial-gradient(circle,rgba(232,98,28,0.06) 0%,transparent 70%);
  top:10%;right:-15%;
  animation:drift 25s ease-in-out infinite alternate;
  pointer-events:none;
}

/* Hero split layout */
.hero-split{
  position:relative;display:flex;flex-direction:column;align-items:center;gap:2rem;
}
.hero-split .hero-content{flex:1;min-width:0}
.hero-photo{
  display:block;flex-shrink:0;
  width:100%;max-width:400px;position:relative;
  margin:0 auto;
}
.hero-photo img{
  width:100%;height:auto;border-radius:var(--radius-lg);
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}
/* Subtle orange accent border */
.hero-photo::after{
  content:'';position:absolute;inset:-4px;
  border-radius:calc(var(--radius-lg) + 4px);
  border:2px solid rgba(232,98,28,0.2);
  pointer-events:none;
}

.hero-content{position:relative;max-width:780px}

.hero-tag{
  font-family:var(--font-mono);font-size:0.875rem;
  color:var(--text-muted-dark);margin-bottom:1.5rem;
  letter-spacing:0.02em;
}
.hero-tag .accent{color:var(--orange)}

.hero-title{
  font-size:clamp(2.25rem,5vw,3.5rem);
  font-weight:800;line-height:1.1;
  letter-spacing:-0.025em;margin-bottom:1.5rem;
}
.hero-highlight{color:var(--orange)}

.cursor-blink{
  display:inline-block;width:3px;height:0.8em;
  background:var(--orange);margin-left:4px;
  vertical-align:baseline;
  animation:blink 1.1s step-end infinite;
}

.hero-sub{
  font-size:clamp(1.0625rem,2vw,1.1875rem);
  color:var(--text-muted-dark);line-height:1.65;
  max-width:620px;margin-bottom:2.5rem;
}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}

@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}
@keyframes drift{from{transform:translate(0,0)}to{transform:translate(-40px,20px)}}

/* ── PAGE HERO (inner pages) ── */
.page-hero{
  background:var(--charcoal);color:var(--text-on-dark);
  padding:calc(var(--header-h) + 3rem) 0 3rem;
  position:relative;overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,0.035) 1px,transparent 1px);
  background-size:32px 32px;pointer-events:none;
}
.page-hero .container{position:relative}
.page-hero h1{font-size:clamp(2rem,4vw,2.75rem);margin-bottom:0.75rem}
.page-hero .section-label{margin-bottom:0.75rem}

/* Breadcrumb */
.breadcrumb{
  font-family:var(--font-mono);font-size:0.8125rem;
  color:var(--text-muted-dark);margin-bottom:1rem;
  letter-spacing:0.02em;
}
.breadcrumb a{color:var(--orange);transition:color var(--dur) var(--ease)}
.breadcrumb a:hover{color:var(--orange-hover)}
.breadcrumb-sep{color:var(--text-muted-dark);margin:0 0.375rem}
.page-hero p{color:var(--text-muted-dark);font-size:1.125rem;max-width:600px}

/* ── PAIN POINTS ── */
.pain-grid{display:grid;grid-template-columns:1fr;gap:1.25rem}

.pain-card{
  display:block;
  background:var(--white);
  border:1px solid var(--border);
  border-left:3px solid var(--orange);
  border-radius:var(--radius);
  padding:1.75rem;
  transition:all var(--dur) var(--ease);
}
.pain-card:hover{
  border-color:var(--orange);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
}
.pain-tag{
  display:inline-block;
  font-family:var(--font-mono);font-size:0.75rem;
  color:var(--orange);background:var(--orange-soft);
  padding:0.2rem 0.6rem;border-radius:4px;
  margin-bottom:0.75rem;
}
.pain-text{
  font-size:1.0625rem;font-weight:500;
  line-height:1.5;color:var(--text);margin-bottom:1rem;
}
.pain-link{font-size:0.9375rem;font-weight:600;color:var(--orange)}

/* ── SERVICES ── */
.services-grid{display:grid;grid-template-columns:1fr;gap:1.25rem}

.service-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:2rem;
  transition:all var(--dur) var(--ease);
}
.service-card:hover{
  border-color:var(--orange);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
}
.service-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:48px;height:48px;
  background:var(--surface);border-radius:var(--radius);
  margin-bottom:1.25rem;
  font-family:var(--font-mono);font-size:0.8125rem;
  font-weight:500;color:var(--orange);
}
.service-card h3{margin-bottom:0.5rem}
.service-card p{
  color:var(--text-muted);font-size:0.9375rem;
  line-height:1.55;margin-bottom:1.25rem;
}
.service-link{font-size:0.9375rem;font-weight:600;color:var(--orange)}
.service-link:hover{text-decoration:underline}

/* ── PROCESS STEPS ── */
.process-grid{display:grid;grid-template-columns:1fr;gap:2.5rem}

.process-step{display:flex;gap:1.5rem}
.step-number{
  flex-shrink:0;
  font-family:var(--font-mono);font-size:2.5rem;
  font-weight:700;color:var(--orange);
  line-height:1;opacity:0.7;
}
.process-step--link{
  text-decoration:none;color:inherit;
  border-radius:var(--radius);
  transition:all var(--dur) var(--ease);cursor:pointer;
}
.process-step--link:hover{
  background:rgba(255,255,255,0.04);
}
.process-step--link:hover .step-number{opacity:1}
.step-content h3{font-size:1.25rem;margin-bottom:0.5rem}
.section--dark .step-content h3{color:var(--text-on-dark)}
.step-content p{color:var(--text-muted-dark);font-size:0.9375rem;line-height:1.65}

/* ── PORTFOLIO / WORK CARDS ── */
.work-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}

.work-card{
  display:block;background:var(--white);
  border:1px solid var(--border);border-radius:var(--radius-lg);
  overflow:hidden;transition:all var(--dur) var(--ease);
}
.work-card:hover{
  border-color:var(--border-strong);
  transform:translateY(-3px);
  box-shadow:0 12px 32px rgba(0,0,0,0.08);
}
.work-card-image{
  aspect-ratio:16/10;
  background:var(--charcoal);
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
}
.work-card-image::before{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,0.04) 1px,transparent 1px);
  background-size:20px 20px;
}
.work-card-image img{
  width:100%;height:100%;object-fit:cover;
  position:relative;z-index:1;
}
.work-card-image .placeholder-mark{
  position:relative;color:rgba(255,255,255,0.1);
  font-family:var(--font-mono);font-size:2.5rem;font-weight:600;
}
.work-card-body{padding:1.5rem}
.work-card-tag{
  display:inline-block;
  font-family:var(--font-mono);font-size:0.75rem;
  color:var(--orange);background:var(--orange-soft);
  padding:0.2rem 0.6rem;border-radius:4px;
  margin-bottom:0.625rem;
}
.work-card-body h3{margin-bottom:0.375rem}
.work-card-body p{color:var(--text-muted);font-size:0.9375rem;line-height:1.5}
.work-card-readmore{
  display:inline-block;margin-top:0.75rem;
  font-size:0.875rem;font-weight:600;
  color:var(--orange);
}

/* ── DIFFERENCE ── */
.difference-content{max-width:700px;margin:0 auto;text-align:center}
.difference-content .section-header{margin-bottom:1.5rem}
.difference-content p{color:var(--text-mid);font-size:1.0625rem;line-height:1.7}
.difference-quote{
  margin-top:2rem;padding:1.5rem 2rem;
  background:var(--surface);border-radius:var(--radius-lg);
  border-left:3px solid var(--orange);
  text-align:left;font-style:italic;
  color:var(--text);font-weight:500;
  font-size:1.0625rem;line-height:1.6;
}

/* ── TESTIMONIALS ── */
.testimonial-grid{display:grid;grid-template-columns:1fr;gap:1.25rem}

.testimonial-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:2rem;
}
.testimonial-card blockquote{
  font-size:1rem;line-height:1.65;
  color:var(--text-mid);margin-bottom:1.25rem;
  font-style:italic;
}
.testimonial-card blockquote::before{
  content:'\201C';display:block;
  font-size:2.5rem;line-height:1;
  color:var(--orange);font-family:Georgia,serif;
  font-weight:700;margin-bottom:0.5rem;
  font-style:normal;
}
.testimonial-author{
  font-size:0.875rem;color:var(--text-muted);font-weight:600;
  font-style:normal;
}

/* ── CTA SECTION ── */
.cta-section{text-align:center}
.cta-section h2{margin-bottom:1rem}
.cta-section p{color:var(--text-muted);margin-bottom:2rem;font-size:1.0625rem}

/* ── FEATURE GRID (service pages) ── */
.feature-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}

.feature-item{display:flex;gap:1rem}
.feature-icon{
  flex-shrink:0;width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  background:var(--orange-soft);color:var(--orange);
  border-radius:var(--radius);
  font-family:var(--font-mono);font-size:0.875rem;font-weight:500;
}
.feature-item h3{margin-bottom:0.25rem}
.feature-item p{color:var(--text-muted);font-size:0.9375rem}

/* ── PROSE (about, privacy, etc.) ── */
.prose{max-width:var(--narrow)}
.prose h2{margin-top:2.5rem;margin-bottom:1rem}
.prose h3{margin-top:2rem;margin-bottom:0.75rem}
.prose p{margin-bottom:1em;color:var(--text-mid)}
.prose ul,.prose ol{margin-bottom:1em;padding-left:1.5rem;color:var(--text-mid)}
.prose li{margin-bottom:0.375rem;list-style:disc}
.prose strong{color:var(--text);font-weight:600}
.prose a{color:var(--orange);text-decoration:underline;text-underline-offset:2px}
.prose a:hover{color:var(--orange-hover)}

/* ── ABOUT INTRO ── */
.about-intro{
  display:grid;grid-template-columns:1fr;gap:2rem;
  align-items:start;
}
.about-photo{margin-bottom:1rem}
.about-photo img{
  width:100%;max-width:320px;height:auto;border-radius:var(--radius-lg);
}
.about-photo-placeholder{
  width:100%;max-width:320px;aspect-ratio:3/4;
  background:var(--charcoal);border-radius:var(--radius-lg);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-mono);font-size:3rem;
  color:rgba(255,255,255,0.1);position:relative;overflow:hidden;
}
.about-photo-placeholder::before{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,0.04) 1px,transparent 1px);
  background-size:20px 20px;
}
.about-photo-placeholder span{position:relative}

@media(min-width:768px){
  .about-intro{grid-template-columns:280px 1fr}
}

/* ── HIGHLIGHT CARDS ── */
.highlight-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem;
}
.highlight-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:1.5rem;
  text-align:center;
}
.highlight-number{
  display:block;
  font-family:var(--font-mono);font-size:1.75rem;font-weight:700;
  color:var(--orange);margin-bottom:0.5rem;line-height:1.2;
}
.highlight-card p{
  color:var(--text-muted);font-size:0.9375rem;line-height:1.45;margin:0;
}
.highlight-link{
  display:inline-block;margin-top:0.75rem;
  font-size:0.875rem;font-weight:600;
  color:var(--orange);
}
.highlight-link:hover{text-decoration:underline}
.highlight-card--link{
  display:block;text-decoration:none;
  transition:all var(--dur) var(--ease);cursor:pointer;
}
.highlight-card--link:hover{
  border-color:var(--orange);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
}

@media(min-width:768px){
  .highlight-grid{grid-template-columns:repeat(4,1fr)}
  .highlight-grid--three{grid-template-columns:repeat(3,1fr)}
  .highlight-grid--two{grid-template-columns:repeat(2,1fr)}
}

/* ── FORMS ── */
.form-group{margin-bottom:1.25rem}
.form-label{
  display:block;font-size:0.875rem;font-weight:600;
  margin-bottom:0.375rem;color:var(--text);
}
.form-control{
  width:100%;padding:0.75rem 1rem;
  font-family:var(--font);font-size:1rem;
  color:var(--text);background:var(--white);
  border:1.5px solid var(--border-strong);
  border-radius:var(--radius);
  transition:border-color var(--dur) var(--ease),box-shadow var(--dur) var(--ease);
}
.form-control:focus{
  outline:none;border-color:var(--orange);
  box-shadow:0 0 0 3px var(--orange-glow);
}
textarea.form-control{resize:vertical;min-height:140px}

.form-row{display:grid;grid-template-columns:1fr;gap:1.25rem}

/* ── FOOTER ── */
.site-footer{
  background:var(--charcoal);color:var(--text-on-dark);
  padding:3.5rem 0 2rem;
}
.footer-inner{max-width:var(--max-w);margin:0 auto;padding:0 var(--px)}
.footer-grid{
  display:grid;grid-template-columns:1fr;
  gap:2.5rem;margin-bottom:2.5rem;
}
.footer-brand{
  font-size:1.125rem;font-weight:400;
  margin-bottom:0.75rem;letter-spacing:-0.01em;
}
.footer-brand strong{font-weight:700}
.footer-mark{
  font-family:var(--font-mono);font-size:0.875rem;color:var(--orange);
}
.footer-desc{
  color:var(--text-muted-dark);font-size:0.9375rem;
  line-height:1.55;margin-bottom:1rem;max-width:320px;
}
.footer-social{display:flex;gap:1rem}
.footer-social a{
  font-size:0.875rem;color:var(--text-muted-dark);
  transition:color var(--dur) var(--ease);
}
.footer-social a:hover{color:var(--orange)}

.footer-col h4{
  font-size:0.8125rem;text-transform:uppercase;
  letter-spacing:0.08em;color:var(--text-muted-dark);margin-bottom:1rem;
}
.footer-col a{
  display:block;font-size:0.9375rem;
  color:var(--text-on-dark);padding:0.25rem 0;
  transition:color var(--dur) var(--ease);
}
.footer-col a:hover{color:var(--orange)}
.footer-location{font-size:0.9375rem;color:var(--text-muted-dark);margin-top:0.5rem}

.footer-bottom{
  padding-top:2rem;border-top:1px solid var(--border-dark);
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:0.5rem;
}
.footer-legal{font-size:0.8125rem;color:var(--text-muted-dark)}
.footer-aside{
  font-size:0.8125rem;color:var(--text-muted-dark);
  font-family:var(--font-mono);
  transition:color var(--dur) var(--ease);
}
.footer-aside:hover{color:var(--orange)}

/* ── CONVERSATION ── */
.conversation{max-width:var(--narrow)}

.conv-msg{
  margin-bottom:2rem;
  padding-left:1.5rem;
  border-left:2px solid var(--border-strong);
}
.conv-msg.conv-claude{border-left-color:var(--orange)}

.conv-who{
  display:block;
  font-family:var(--font-mono);font-size:0.8125rem;
  font-weight:600;letter-spacing:0.02em;
  margin-bottom:0.5rem;color:var(--text-muted);
}
.conv-claude .conv-who{color:var(--orange)}

.conv-msg p{
  color:var(--text-mid);font-size:1.0625rem;line-height:1.7;
}
.conv-msg p+p{margin-top:0.75em}
.conv-msg em{font-style:italic}

.conv-note{
  margin:2.5rem 0;
  padding:1.5rem;
  background:var(--surface);
  border-radius:var(--radius);
}
.conv-note p{
  color:var(--text-muted);font-size:0.9375rem;
  line-height:1.65;font-style:italic;
}
.conv-note p+p{margin-top:0.75em}

.conv-poem{
  margin:2rem 0 2.5rem;
  padding:2rem 2rem 2rem 1.75rem;
  border-left:3px solid var(--orange);
  background:var(--surface);
  border-radius:0 var(--radius) var(--radius) 0;
}
.conv-poem h3{
  font-size:1.125rem;margin-bottom:0.25rem;color:var(--text);
}
.conv-poem .conv-poem-author{
  font-size:0.875rem;color:var(--text-muted);
  margin-bottom:1.25rem;font-style:italic;
}
.conv-poem p{
  color:var(--text-mid);font-size:1rem;line-height:1.85;
}
.conv-poem p+p{margin-top:0.75em}

.conv-divider{
  width:40px;height:2px;
  background:var(--border-strong);
  margin:3rem 0;
}

/* ── CAPABILITY CLOUD ── */
.capability-cloud{
  display:flex;flex-wrap:wrap;gap:0.625rem;
  justify-content:center;
  max-width:800px;margin:0 auto;
}
.cap-tag{
  display:inline-block;
  padding:0.5rem 1.125rem;
  border:1px solid var(--border-strong);
  border-radius:999px;
  font-size:0.9375rem;
  color:var(--text-mid);
  background:var(--surface);
  transition:all var(--dur) var(--ease);
  white-space:nowrap;
}
.cap-tag:hover{
  border-color:var(--orange);
  color:var(--orange);
}

/* ── ANIMATIONS ── */
.reveal{
  opacity:0;transform:translateY(20px);
  transition:opacity 0.6s var(--ease-out),transform 0.6s var(--ease-out);
  transition-delay:var(--delay,0s);
}
.reveal.revealed{opacity:1;transform:translateY(0)}

.hero-content{animation:fadeUp 0.8s var(--ease-out) both}
.hero-tag{animation:fadeUp 0.8s var(--ease-out) 0.1s both}
.hero-title{animation:fadeUp 0.8s var(--ease-out) 0.2s both}
.hero-sub{animation:fadeUp 0.8s var(--ease-out) 0.35s both}
.hero-actions{animation:fadeUp 0.8s var(--ease-out) 0.5s both}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}

/* ── RESPONSIVE ── */
@media(min-width:640px){
  .footer-grid{grid-template-columns:1.5fr 1fr 1fr 1fr}
  .work-grid{grid-template-columns:repeat(2,1fr)}
  .work-grid--two{grid-template-columns:repeat(2,1fr)}
  .form-row{grid-template-columns:1fr 1fr}
}

@media(min-width:768px){
  .pain-grid{grid-template-columns:repeat(3,1fr)}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .testimonial-grid{grid-template-columns:repeat(2,1fr)}
  .feature-grid{grid-template-columns:repeat(2,1fr)}
}

@media(min-width:900px){
  .nav-desktop{display:flex}
  .mobile-toggle{display:none}
  .services-grid{grid-template-columns:repeat(4,1fr)}
  .process-grid{grid-template-columns:repeat(3,1fr)}
  .work-grid{grid-template-columns:repeat(3,1fr)}
  .work-grid--two{grid-template-columns:repeat(2,1fr)}
  .work-grid--four{grid-template-columns:repeat(4,1fr)}
  .feature-grid{grid-template-columns:repeat(3,1fr)}
  .hero-split{flex-direction:row;gap:3rem}
  .hero-photo{width:400px;margin:0}
}

@media(min-width:1100px){
  .hero-photo{width:480px}
}
