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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: #2C2C2A;
  background: #FAFAF8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }

/* ===== NAV ===== */
.nav {
  background: #FFFFFF;
  border-bottom: 1px solid #D3D1C7;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 16px;
  font-weight: 600;
  color: #2C2C2A;
  letter-spacing: -0.01em;
  text-decoration: none;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #73726C;
  text-decoration: none;
  transition: color 0.18s ease;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2C2C2A;
}

.nav-cta {
  background: #D97847;
  color: #FFFFFF !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.18s ease !important;
}

.nav-cta:hover {
  background: #B85C2F;
  color: #FFFFFF !important;
}

/* ===== HERO (Homepage) ===== */
.hero {
  background: #2C2C2A;
  color: #E5E5E0;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.hero-content {
  padding: 88px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-accent {
  height: 3px;
  width: 48px;
  background: #D97847;
  margin-bottom: 36px;
  border-radius: 2px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 500;
  margin: 0 0 10px 0;
  color: #FFFFFF;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero-tagline {
  font-size: 18px;
  color: #D97847;
  margin: 0 0 28px 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-description {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 40px 0;
  color: #A8A69E;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-contact {
  font-size: 13px;
  color: #6B6A64;
  letter-spacing: 0.01em;
}

.hero-photo {
  background: linear-gradient(160deg, #3A3A38 0%, #232321 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid texture on photo side */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(217,120,71,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.photo-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid rgba(217,120,71,0.5);
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0 0 8px rgba(217,120,71,0.08), 0 20px 60px rgba(0,0,0,0.3);
}

.photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #D97847;
  color: #FFFFFF;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.btn-primary:hover {
  background: #B85C2F;
  transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(0,180,216,0.6);
  color: #00B4D8;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.12s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: #00B4D8;
  background: rgba(0,180,216,0.08);
  transform: translateY(-1px);
}

.btn-secondary:active { transform: translateY(0); }

/* ===== SECTIONS ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
}

/* Anchor offset for sticky nav */
#work, #services, #contact { scroll-margin-top: 20px; }

.section-accent {
  height: 2px;
  width: 40px;
  background: #D97847;
  margin-bottom: 20px;
  border-radius: 2px;
}

.section h2 {
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
  color: #2C2C2A;
}

.section-intro {
  font-size: 16px;
  color: #73726C;
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.75;
}

/* ===== PROJECT CARDS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.project-card {
  background: #FFFFFF;
  border: 1px solid #E8E6DF;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-3px);
  border-color: #D3D1C7;
}

.project-media {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #D97847;
  position: relative;
  overflow: hidden;
}

.project-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.project-content {
  padding: 22px 24px 24px;
  background: #F8F8F6;
}

.project-year {
  font-size: 11px;
  color: #D97847;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
  color: #2C2C2A;
  line-height: 1.2;
}

.project-description {
  font-size: 14px;
  line-height: 1.65;
  color: #73726C;
  margin: 0 0 16px 0;
}

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

.tag {
  background: rgba(255,255,255,0.8);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #5F5E5A;
  border: 0.5px solid #D8D6CE;
  letter-spacing: 0.01em;
}

/* Real photo cards */
.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SOLS ===== */
.media-sols { background: #0A0A0A; }

/* ===== BODY LABS ===== */
.media-bodylabs {
  background: #FFFFFF;
  padding: 0;
}

.bodylabs-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 8px;
}

/* ===== AMAZON ===== */
.media-amazon {
  background: #000;
  padding: 0;
}

/* ===== NIKE ===== */
.media-nike {
  background: #000;
  padding: 0;
}

/* ===== SERVICES ===== */
.services-section { background: #FAFAF8; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid #E8E6DF;
  border-radius: 10px;
  padding: 26px 24px;
  border-top: 2px solid #D97847;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
  color: #2C2C2A;
}

.service-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #73726C;
  margin: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.info-box {
  background: #EFEDE6;
  border-radius: 10px;
  padding: 26px 28px;
}

.info-box h3 {
  font-size: 11px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #73726C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-box p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  color: #2C2C2A;
}

/* ===== CTA FOOTER ===== */
.cta-footer {
  background: linear-gradient(160deg, #2C2C2A 0%, #1A1A18 100%);
  padding: 80px 60px;
  text-align: center;
  color: white;
}

.cta-footer h2 {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.cta-footer p {
  font-size: 16px;
  margin: 0 auto 40px;
  color: #8A8880;
  max-width: 480px;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.cta-footer .btn-primary {
  background: #D97847;
  color: #FFFFFF;
}

.cta-footer .btn-primary:hover { background: #B85C2F; }

.cta-footer .btn-secondary {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
}

.cta-footer .btn-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}

.contact-info {
  font-size: 14px;
  color: #555048;
}

/* ===== PAGE HERO (non-homepage pages) ===== */
.page-hero {
  background: #2C2C2A;
  color: #FAFAF8;
  padding: 60px 60px 80px;
  text-align: center;
}

.page-hero-accent {
  height: 4px;
  width: 120px;
  background: #D97847;
  margin: 0 auto 24px;
  border-radius: 2px;
}

.page-hero h1 {
  font-size: 52px;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: #FFFFFF;
  letter-spacing: -0.025em;
}

.page-hero p {
  font-size: 18px;
  color: #D3D1C7;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */

/* Hero variant with photo */
.about-hero {
  background: #2C2C2A;
  color: #FAFAF8;
  padding: 80px 60px;
  text-align: center;
}

.about-hero-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #D97847;
  margin: 0 auto 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-hero h1 {
  font-size: 52px;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: #FFFFFF;
  letter-spacing: -0.025em;
}

.about-hero-tagline {
  font-size: 24px;
  color: #D97847;
  margin-bottom: 16px;
  font-weight: 400;
}

.about-hero-subtitle {
  font-size: 16px;
  color: #D3D1C7;
  max-width: 500px;
  margin: 0 auto;
}

/* Page section (narrower max-width for about/contact) */
.page-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 60px;
}

.page-section-accent {
  height: 3px;
  width: 60px;
  background: #D97847;
  margin: 0 auto 24px;
  border-radius: 2px;
}

.page-section h2 {
  font-size: 38px;
  font-weight: 500;
  margin: 0 0 16px 0;
  text-align: center;
  color: #2C2C2A;
  letter-spacing: -0.02em;
}

.page-section-intro {
  font-size: 17px;
  color: #4A4A4A;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Pillars (How I Think) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.pillar {
  background: #FFFFFF;
  border: 0.5px solid #D3D1C7;
  border-radius: 12px;
  padding: 32px;
}

.pillar-rust { border-top: 3px solid #D97847; }
.pillar-cyan { border-top: 3px solid #00B4D8; }
.pillar-mustard { border-top: 3px solid #E9B949; }

.pillar-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #2C2C2A;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: #4A4A4A;
  font-style: italic;
}

/* Through-line */
.through-line {
  background: #E8F7FA;
  border-left: 4px solid #00B4D8;
  padding: 48px;
  border-radius: 8px;
  margin: 0 0 0 0;
}

.through-line h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0096C7;
  margin: 0 0 20px 0;
}

.through-line-quote {
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 24px 0;
  color: #03045E;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.through-line p {
  font-size: 16px;
  margin: 0 0 14px 0;
  color: #03045E;
  line-height: 1.7;
}

.through-line p:last-child { margin-bottom: 0; }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  margin: 60px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #D97847, #00B4D8, #E9B949, #00B4D8, #D97847);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #FAFAF8;
}

.timeline-dot-rust { background: #D97847; }
.timeline-dot-cyan { background: #00B4D8; }
.timeline-dot-mustard { background: #E9B949; }

.timeline-year {
  font-size: 12px;
  color: #D97847;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timeline-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #2C2C2A;
  letter-spacing: -0.01em;
}

.timeline-item p {
  font-size: 15px;
  color: #4A4A4A;
  margin: 0;
  line-height: 1.65;
}

/* Secret Sauce */
.sauce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.sauce-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  border: 0.5px solid #D3D1C7;
}

.sauce-card:nth-child(1) { border-top: 3px solid #D97847; }
.sauce-card:nth-child(2) { border-top: 3px solid #00B4D8; }
.sauce-card:nth-child(3) { border-top: 3px solid #E9B949; }

.sauce-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #2C2C2A;
  letter-spacing: -0.01em;
}

.sauce-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #4A4A4A;
  margin: 0;
}

/* About CTA */
.about-cta {
  background: linear-gradient(135deg, #2C2C2A 0%, #1A1A18 100%);
  padding: 60px;
  text-align: center;
  border-radius: 12px;
  color: white;
  margin-top: 40px;
}

.about-cta h3 {
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.about-cta p {
  font-size: 17px;
  margin: 0 auto 36px;
  color: #A8A69E;
  max-width: 520px;
  line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px;
}

.form-card {
  background: #FFFFFF;
  border: 0.5px solid #D3D1C7;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 48px;
  border-top: 3px solid #D97847;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #2C2C2A;
}

.form-required {
  color: #D97847;
  margin-left: 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 0.5px solid #D3D1C7;
  border-radius: 6px;
  font-family: inherit;
  background: #FFFFFF;
  color: #2C2C2A;
  transition: all 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #D97847;
  box-shadow: 0 0 0 3px rgba(217,120,71,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #D97847;
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.submit-btn:hover { background: #B85C2F; }

/* Contact divider */
.contact-divider {
  text-align: center;
  margin: 48px 0;
  position: relative;
}

.contact-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #D3D1C7;
}

.contact-divider span {
  position: relative;
  background: #FAFAF8;
  padding: 0 20px;
  font-size: 14px;
  color: #73726C;
}

/* Calendar section */
.calendar-card {
  text-align: center;
  background: #E8F7FA;
  border-radius: 12px;
  padding: 48px;
  border: 0.5px solid #90E0EF;
}

.calendar-card h3 {
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: #03045E;
  letter-spacing: -0.01em;
}

.calendar-card p {
  font-size: 16px;
  color: #0096C7;
  margin: 0 0 28px 0;
}

.calendar-btn {
  background: transparent;
  border: 1px solid #00B4D8;
  color: #00B4D8;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.calendar-btn:hover { background: rgba(0,180,216,0.1); }

/* Contact info links */
.contact-links-section {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #D3D1C7;
}

.contact-links-section h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: #4A4A4A;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-links a {
  color: #00B4D8;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.contact-links a:hover {
  color: #0096C7;
  text-decoration: underline;
}

/* ===== SOLS CASE STUDY ===== */
.case-hero {
  background: #2C2C2A;
  color: #FAFAF8;
  padding: 80px 60px;
  text-align: center;
}

.case-hero-accent {
  height: 4px;
  width: 80px;
  background: #D97847;
  margin: 0 auto 24px;
  border-radius: 2px;
}

.case-hero-year {
  font-size: 13px;
  color: #D97847;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-hero h1 {
  font-size: 52px;
  font-weight: 500;
  margin: 0 0 16px 0;
  line-height: 1.1;
  color: #FFFFFF;
  letter-spacing: -0.025em;
}

.case-hero-subtitle {
  font-size: 20px;
  color: #D3D1C7;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.case-hero-media {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(217,120,71,0.4);
  position: relative;
  padding-bottom: 50%;
  background: #1A1A18;
}

.case-hero-media iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Case study sections */
.case-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 60px;
}

.case-label {
  font-size: 12px;
  color: #D97847;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.case-section h2 {
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 20px 0;
  line-height: 1.2;
  color: #2C2C2A;
  letter-spacing: -0.02em;
}

.case-section p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 20px 0;
  color: #4A4A4A;
}

.case-section p:last-child { margin-bottom: 0; }

/* Split layout */
.case-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 48px 0;
  align-items: start;
}

.case-split-text h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #2C2C2A;
  letter-spacing: -0.01em;
}

.case-split-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-split-text li {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
  color: #4A4A4A;
}

.case-split-text li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #00B4D8;
  font-weight: 600;
}

.case-visual {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px dashed #D3D1C7;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  color: #B4B2A9;
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
  padding: 24px;
}

.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Key insight callout */
.key-insight {
  background: #FDF9EC;
  border-left: 4px solid #E9B949;
  padding: 28px 32px;
  border-radius: 8px;
  margin: 40px 0;
}

.key-insight p {
  font-size: 17px;
  margin: 0;
  color: #2C2C2A;
  line-height: 1.7;
}

.key-insight strong {
  color: #9D7210;
  font-weight: 600;
}

/* Outcome callout */
.outcome-box {
  background: #E8F7FA;
  border-left: 4px solid #00B4D8;
  padding: 32px 36px;
  border-radius: 8px;
  margin: 40px 0;
}

.outcome-label {
  font-size: 12px;
  color: #0096C7;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.outcome-box h3 {
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: #03045E;
  letter-spacing: -0.01em;
}

.outcome-box p {
  font-size: 17px;
  margin: 0;
  color: #03045E;
  line-height: 1.7;
}

/* Process cards */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  border: 0.5px solid #D3D1C7;
  border-top: 3px solid #D97847;
}

.process-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #2C2C2A;
  letter-spacing: -0.01em;
}

.process-card p {
  font-size: 14px;
  margin: 0;
  color: #73726C;
  line-height: 1.6;
}

.process-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

/* Case CTA */
.case-cta {
  background: #FFFFFF;
  padding: 60px;
  text-align: center;
  border-radius: 12px;
  border: 0.5px solid #D3D1C7;
  margin-top: 60px;
}

.case-cta h3 {
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: #2C2C2A;
  letter-spacing: -0.02em;
}

.case-cta p {
  font-size: 17px;
  color: #4A4A4A;
  margin: 0 0 32px 0;
  line-height: 1.7;
}

/* Back link */
.breadcrumb {
  padding: 20px 60px;
  background: #FFFFFF;
  border-bottom: 1px solid #E8E6DF;
}

.breadcrumb a {
  font-size: 13px;
  color: #73726C;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s;
}

.breadcrumb a:hover { color: #2C2C2A; }

/* ===== LOGOS SECTION ===== */
.logos-section {
  background: #FAFAF8;
  border-top: 1px solid #E8E6DF;
  border-bottom: 1px solid #E8E6DF;
  padding: 32px 60px;
}

.logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logos-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B4B2A9;
  white-space: nowrap;
  flex-shrink: 0;
}

.logos-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.logo-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-right: 1px solid #E8E6DF;
  text-decoration: none;
  transition: opacity 0.2s ease;
  opacity: 0.45;
}

.logo-item:last-child { border-right: none; }

.logo-item:hover { opacity: 1; }

.logo-text {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #2C2C2A;
  line-height: 1;
  user-select: none;
}

.logo-sols {
  font-size: 22px;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.logo-bodylabs {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-amazon {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.03em;
  font-style: italic;
}

.logo-nike {
  font-size: 22px;
  letter-spacing: 0.12em;
  font-weight: 900;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E8E6DF;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-rust  { border-top: 3px solid #D97847; }
.testimonial-cyan  { border-top: 3px solid #00B4D8; }
.testimonial-mustard { border-top: 3px solid #E9B949; }

.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: #4A4A4A;
  margin: 0;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #2C2C2A;
  letter-spacing: -0.01em;
}

.testimonial-title {
  font-size: 12px;
  color: #73726C;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .sauce-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .case-split { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .logos-section { padding: 24px; }
  .logos-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .logos-row { width: 100%; gap: 0; }
  .logo-item { padding: 10px 12px; }
  .nav { padding: 0 24px; }
  .nav-links { gap: 20px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 64px 28px 48px;
  }

  .hero h1 { font-size: 40px; }
  .hero-description { max-width: 100%; }

  .hero-photo {
    padding: 48px 28px;
    min-height: 260px;
  }

  .photo-circle {
    width: 200px;
    height: 200px;
  }

  .section { padding: 60px 24px; }
  .page-section { padding: 60px 24px; }
  .case-section { padding: 60px 24px; }
  .contact-section { padding: 40px 24px; }

  .projects-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .sauce-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .case-split { grid-template-columns: 1fr; }

  .cta-footer { padding: 64px 28px; }
  .about-cta { padding: 40px 24px; }
  .through-line { padding: 32px 28px; }
  .breadcrumb { padding: 16px 24px; }

  .case-hero { padding: 60px 24px; }
  .case-hero h1 { font-size: 38px; }
  .case-hero-subtitle { font-size: 17px; }

  .about-hero { padding: 60px 24px; }
  .about-hero h1 { font-size: 40px; }

  .page-hero { padding: 48px 24px 60px; }
  .page-hero h1 { font-size: 40px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .nav-links .nav-cta { display: none; }
}
