/* =============================================
   SIGNAL - AI Search Marketing
   style.css
   ============================================= */

/* --- Variables --- */
:root {
  --cream: #f5f0e8;
  --cream-dark: #ede8df;
  --ink: #0d0d0d;
  --orange: #e8410a;
  --orange-light: #fde9e1;
  --brown: #6b6258;
  --border: rgba(13,13,13,0.12);
  --white: #ffffff;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gold: #e8a88a;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; }
h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: 1.0; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.05; letter-spacing: -0.01em; }
h3 { font-size: 1.4rem; line-height: 1.2; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--orange); }
p { font-size: 1rem; line-height: 1.8; font-weight: 300; color: var(--brown); }

/* --- Utility --- */
.mono { font-family: 'DM Mono', monospace; }
.label {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.5rem;
}
.label::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--orange); }
.label-light { color: var(--gold); }
.label-light::before { background: var(--gold); }

.btn {
  display: inline-block; font-family: 'DM Mono', monospace;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 1rem 2.5rem; cursor: pointer;
  transition: all 0.2s;
}
.btn-orange { background: var(--orange); color: white; border: 2px solid var(--orange); }
.btn-orange:hover { opacity: 0.85; }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline-white { background: transparent; color: white; border: 2px solid white; }
.btn-outline-white:hover { background: white; color: var(--orange); }
.btn-white { background: white; color: var(--orange); border: 2px solid white; }
.btn-white:hover { opacity: 0.9; }

.fade { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade.visible { opacity: 1; transform: translateY(0); }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  background: var(--cream); border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'DM Mono', monospace; font-size: 1rem;
  font-weight: 500; letter-spacing: 0.15em;
}
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-family: 'DM Mono', monospace; font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--brown);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.6rem 1.4rem; border: 1.5px solid var(--ink);
  color: var(--ink); transition: all 0.2s;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }

/* --- Dropdown --- */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 0.35rem; }
.nav-item > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-item:hover > a::after { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 1.1rem); left: -1.5rem;
  background: var(--cream); border: 1px solid var(--border);
  min-width: 230px; z-index: 300;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--cream-dark); }
.dropdown-num {
  font-family: 'DM Mono', monospace; font-size: 0.55rem;
  letter-spacing: 0.12em; color: var(--orange);
  padding-top: 0.15rem; flex-shrink: 0;
}
.dropdown-label { font-family: 'DM Mono', monospace; font-size: 0.7rem; font-weight: 500; color: var(--ink); display: block; margin-bottom: 0.15rem; }
.dropdown-desc { font-size: 0.72rem; color: var(--brown); font-weight: 300; line-height: 1.4; }

/* --- Hero --- */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 72px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 5rem 4rem 5rem 3rem;
  border-right: 1px solid var(--border);
}
.hero-tag {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem;
  font-family: 'DM Mono', monospace; font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange);
}
.hero-tag::before { content: ''; width: 2rem; height: 1px; background: var(--orange); }
.hero-desc { max-width: 30ch; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-right {
  background: var(--cream-dark);
  display: flex; flex-direction: column;
}
.hero-photo { flex: 1; overflow: hidden; }
.hero-photo img { height: 100%; min-height: 440px; object-fit: cover; }
.hero-stats {
  display: flex; gap: 0; border-top: 1px solid var(--border);
}
.stat {
  flex: 1; padding: 2rem 1.5rem; border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'DM Serif Display', serif; font-size: 2.4rem;
  line-height: 1; margin-bottom: 0.3rem;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-family: 'DM Mono', monospace; font-size: 0.58rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown);
}

/* --- Marquee --- */
.marquee {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0; background: var(--cream);
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}
.marquee-track span {
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--brown);
  flex-shrink: 0;
}
.marquee-track .dot { color: var(--orange); }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Section base --- */
.section { padding: 7rem 3rem; }
.section-sm { padding: 5rem 3rem; }
.section-dark { background: var(--dark); color: white; }
.section-dark p { color: rgba(255,255,255,0.55); }
.section-alt { background: var(--cream-dark); }

/* --- About (homepage) --- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; min-height: 500px;
}
.about-left {
  padding: 5rem 4rem 5rem 3rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; justify-content: center;
}
.about-right { display: flex; flex-direction: column; }
.about-img img { height: 300px; object-fit: cover; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.08); flex: 1;
}
.astat { background: #111; padding: 2rem; }
.astat-num {
  font-family: 'DM Serif Display', serif; font-size: 2.4rem;
  color: white; margin-bottom: 0.4rem;
}
.astat-num span { color: var(--gold); }
.astat-label { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.5; }
.about-text { margin-top: 1.5rem; }
.about-text p { color: rgba(255,255,255,0.55); }
.about-text strong { color: white; font-weight: 400; }

/* --- Services grid --- */
.services-intro { max-width: 38ch; margin-bottom: 4rem; }
.services-intro p { margin-top: 1rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
.service-card {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
  transition: background 0.25s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width 0.35s;
}
.service-card:hover { background: var(--cream-dark); }
.service-card:hover::after { width: 100%; }
.service-num {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.15em; color: var(--orange); margin-bottom: 1.25rem;
}
.service-icon { width: 2.5rem; height: 2.5rem; margin-bottom: 1.25rem; }
.service-title {
  font-family: 'DM Serif Display', serif; font-size: 1.3rem;
  margin-bottom: 0.9rem; line-height: 1.2;
}
.service-desc { font-size: 0.875rem; line-height: 1.8; color: var(--brown); font-weight: 300; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.25rem; }
.service-tag {
  font-family: 'DM Mono', monospace; font-size: 0.58rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border: 1px solid var(--border); color: var(--brown);
}

/* --- Process --- */
.process-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end; margin-bottom: 5rem;
}
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 2.5rem; left: 8%; right: 8%;
  height: 1px; background: var(--border);
}
.process-step { padding: 0 1.5rem; text-align: center; }
.step-dot {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem; position: relative; z-index: 1;
  font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--orange);
}
.step-title { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 0.75rem; }
.step-desc { font-size: 0.82rem; color: var(--brown); line-height: 1.7; font-weight: 300; }

/* --- Results / case studies --- */
.results-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end; margin-bottom: 4rem;
}
.results-header p { color: rgba(255,255,255,0.5); }
.case-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.08);
}
.case-card {
  background: #0d0d0d; display: flex; flex-direction: column;
  transition: background 0.25s;
}
.case-card:hover { background: #161616; }
.case-card-img img { height: 210px; object-fit: cover; }
.case-card-body { padding: 2.5rem; flex: 1; display: flex; flex-direction: column; }
.case-industry {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}
.case-metric {
  font-family: 'DM Serif Display', serif; font-size: 3.8rem;
  color: white; line-height: 1; margin-bottom: 0.35rem;
}
.case-metric-label { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; font-weight: 300; }
.case-desc { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.6; font-weight: 300; flex: 1; }
.case-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.75rem; }
.case-tag {
  font-family: 'DM Mono', monospace; font-size: 0.58rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.35);
}

/* --- Why --- */
.why-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 7rem; align-items: start; }
.why-left { position: sticky; top: 5rem; }
.why-left > p { margin: 1.25rem 0 2.5rem; }
.why-img { margin-top: 0; }
.why-img img { height: 240px; object-fit: cover; }
.why-items { border-top: 1px solid var(--border); }
.why-item {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem;
  padding: 2.25rem 0; border-bottom: 1px solid var(--border); align-items: start;
}
.why-num {
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.1em; color: var(--orange); padding-top: 0.3rem;
}
.why-title { font-family: 'DM Serif Display', serif; font-size: 1.4rem; margin-bottom: 0.8rem; }
.why-desc { font-size: 0.9rem; color: var(--brown); line-height: 1.8; font-weight: 300; }

/* --- Team --- */
.team-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end; margin-bottom: 4rem;
}
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.team-card { background: var(--cream); overflow: hidden; display: flex; flex-direction: column; }
.team-card img { height: 260px; object-fit: cover; }
.team-body { padding: 1.5rem; }
.team-name { font-family: 'DM Serif Display', serif; font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-role {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.7rem;
}
.team-bio { font-size: 0.8rem; color: var(--brown); line-height: 1.7; font-weight: 300; }

/* --- CTA section --- */
.cta-inner { text-align: center; max-width: 540px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 1.5rem; }
.cta-inner p { margin-bottom: 3rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--orange); padding: 5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.cta-banner-text { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem,3vw,2.8rem); color: white; line-height: 1.15; }
.cta-banner-text em { font-style: italic; }
.cta-banner-sub { font-size: 0.95rem; color: rgba(255,255,255,0.72); margin-top: 0.75rem; max-width: 36ch; line-height: 1.7; }
.cta-banner-right { display: flex; flex-direction: column; gap: 1rem; }
.link-ghost-white {
  font-family: 'DM Mono', monospace; font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s;
}
.link-ghost-white:hover { color: white; }

/* --- Footer --- */
.footer { background: var(--dark); color: white; padding: 5rem 3rem 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
  padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: 'DM Mono', monospace; font-size: 1.1rem;
  letter-spacing: 0.15em; margin-bottom: 0.9rem;
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 24ch; }
.footer-col h4 {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.32); margin-bottom: 1.4rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 300; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Mono', monospace; font-size: 0.68rem; color: rgba(255,255,255,0.25);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.page-hero {
  padding: 9rem 3rem 6rem; border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: attr(data-bg-word); position: absolute;
  right: -1rem; bottom: -2rem;
  font-family: 'DM Serif Display', serif; font-size: 15vw;
  color: var(--cream-dark); line-height: 1; pointer-events: none; user-select: none;
}
.page-hero h1 { max-width: 14ch; position: relative; z-index: 1; }
.page-hero-sub { max-width: 50ch; margin-top: 2rem; position: relative; z-index: 1; }
.breadcrumb {
  font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--brown); margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 0.6rem; position: relative; z-index: 1;
}
.breadcrumb a { color: var(--brown); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--orange); }

.origin-grid { display: grid; grid-template-columns: 1fr 2fr; border-top: 1px solid var(--border); }
.origin-sidebar {
  padding: 6rem 3rem; background: var(--cream-dark);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: space-between;
}
.origin-sidebar h2 { margin-top: 1.25rem; }
.timeline { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.75rem; }
.tl-row {
  font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em;
  color: var(--brown); display: flex; align-items: center; gap: 0.75rem;
}
.tl-row::before { content: ''; width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.tl-row.current { color: var(--ink); font-weight: 500; }
.tl-row.current::before { background: var(--orange); }
.origin-content { padding: 6rem 5rem; }
.story { display: grid; grid-template-columns: 5rem 1fr; gap: 2rem; align-items: start; margin-bottom: 3rem; }
.story-year { font-family: 'DM Mono', monospace; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; color: var(--orange); padding-top: 0.3rem; }
.story h3 { margin-bottom: 0.8rem; }
.story p { margin-bottom: 0.85rem; }
.story-divider { height: 1px; background: var(--border); margin-bottom: 3rem; }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.mission-text { margin-top: 1.5rem; }
.mission-text p { color: rgba(255,255,255,0.5); }
.mission-text strong { color: white; font-weight: 400; }
.values { border-top: 1px solid rgba(255,255,255,0.1); }
.value {
  display: grid; grid-template-columns: 2.5rem 1fr; gap: 1.5rem;
  padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: start;
}
.value-num { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--gold); padding-top: 0.25rem; }
.value h3 { font-size: 1.25rem; color: white; margin-bottom: 0.55rem; }
.value p { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

.numbers-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
  margin-top: 4rem;
}
.num-cell {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 3rem 2.5rem; transition: background 0.25s; position: relative; overflow: hidden;
}
.num-cell:hover { background: var(--cream-dark); }
.num-cell::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.35s; }
.num-cell:hover::after { width: 100%; }
.num-big { font-family: 'DM Serif Display', serif; font-size: 3.2rem; line-height: 1; margin-bottom: 0.4rem; }
.num-big span { color: var(--orange); }
.num-label { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.75rem; }
.num-desc { font-size: 0.82rem; color: var(--brown); line-height: 1.7; }

.full-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.team-card-full {
  background: var(--cream); display: grid; grid-template-columns: 1fr 1fr;
}
.team-card-left {
  padding: 3rem 2.5rem; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: space-between;
}
.team-card-right { padding: 3rem 2.5rem; background: var(--cream-dark); display: flex; flex-direction: column; }
.team-avatar {
  width: 4.5rem; height: 4.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 1.4rem; margin-bottom: 1.75rem;
}
.team-card-full .team-name { font-family: 'DM Serif Display', serif; font-size: 1.55rem; margin-bottom: 0.3rem; }
.team-card-full .team-role { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.25rem; }
.team-card-full p { font-size: 0.88rem; font-weight: 300; line-height: 1.75; color: var(--brown); margin-bottom: 0.9rem; }
.prev-label { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.6rem; }
.badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.badge { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.28rem 0.7rem; border: 1px solid var(--border); color: var(--brown); }
.exp-title { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.85rem; margin-top: 2rem; }
.exp-list { display: flex; flex-direction: column; gap: 0.5rem; }
.exp-list li { font-size: 0.82rem; color: var(--brown); display: flex; align-items: center; gap: 0.6rem; }
.exp-list li::before { content: ''; width: 0.32rem; height: 0.32rem; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.team-card-right img { height: 280px; object-fit: cover; margin-bottom: 0; flex-shrink: 0; }

.culture-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
.culture-sticky { position: sticky; top: 5rem; }
.culture-sticky p { margin-top: 1.5rem; }
.culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.culture-card {
  padding: 2.5rem; border: 1px solid var(--border);
  transition: border-color 0.25s, background 0.25s;
}
.culture-card:hover { border-color: rgba(13,13,13,0.25); background: white; }
.culture-icon { width: 2.5rem; height: 2.5rem; color: var(--orange); margin-bottom: 1.4rem; }
.culture-title { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 0.8rem; }
.culture-desc { font-size: 0.85rem; color: var(--brown); line-height: 1.75; }

.press-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
.press-list { border-top: 1px solid rgba(255,255,255,0.1); }
.press-item {
  display: grid; grid-template-columns: 10rem 1fr 6rem; gap: 2rem;
  padding: 2.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: center;
}
.press-outlet { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.32); }
.press-headline { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: white; line-height: 1.3; }
.press-date { font-family: 'DM Mono', monospace; font-size: 0.6rem; color: rgba(255,255,255,0.25); text-align: right; }

.clients-bar { padding: 4.5rem 3rem; background: var(--cream-dark); border-top: 1px solid var(--border); }
.clients-label {
  font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brown);
  display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 3rem;
}
.clients-label::before, .clients-label::after { content: ''; width: 3rem; height: 1px; background: rgba(13,13,13,0.2); }
.logo-row { display: flex; align-items: center; border: 1px solid var(--border); }
.logo-cell {
  flex: 1; padding: 2.5rem 2rem; border-right: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; min-width: 110px;
}
.logo-cell:last-child { border-right: none; }
.logo-cell:hover { background: var(--cream); }
.logo-name { font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(13,13,13,0.28); transition: color 0.2s; }
.logo-cell:hover .logo-name { color: var(--brown); }

/* =============================================
   SERVICES PAGE
   ============================================= */
.svc-tabs {
  position: sticky; top: 72px; z-index: 100;
  background: var(--cream-dark); border-bottom: 1px solid var(--border);
  display: flex; overflow-x: auto; scrollbar-width: none;
}
.svc-tabs::-webkit-scrollbar { display: none; }
.svc-tab {
  flex-shrink: 0; white-space: nowrap;
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1.1rem 2rem; color: var(--brown);
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.7rem;
  transition: background 0.2s, color 0.2s;
}
.svc-tab:hover { background: var(--cream); color: var(--ink); }
.svc-tab.active { background: var(--ink); color: white; }
.svc-tab .tn { font-size: 0.58rem; color: var(--orange); }
.svc-tab.active .tn { color: var(--gold); }

.svc-block { border-bottom: 1px solid var(--border); scroll-margin-top: 130px; }
.svc-block-dark { border-bottom: 1px solid rgba(255,255,255,0.08); scroll-margin-top: 130px; background: #0f0f0f; }
.svc-top { display: grid; grid-template-columns: 1fr 1fr; min-height: 55vh; }
.svc-top-left {
  padding: 5rem 4rem 5rem 3rem; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: space-between;
}
.svc-top-right { padding: 5rem 3rem 5rem 4rem; background: var(--cream-dark); display: flex; flex-direction: column; justify-content: center; }
.svc-block-dark .svc-top-left { border-right-color: rgba(255,255,255,0.08); }
.svc-block-dark .svc-top-right { background: #1a1a1a; }
.svc-block-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.9rem,3.2vw,3rem); line-height: 1.05; margin-top: 1.25rem; }
.svc-block-title em { font-style: italic; color: var(--orange); }
.svc-block-dark .svc-block-title em { color: var(--gold); }
.svc-block-intro { font-size: 0.95rem; font-weight: 300; line-height: 1.9; color: var(--brown); margin-top: 1.75rem; }
.svc-block-dark .svc-block-intro { color: rgba(255,255,255,0.5); }
.svc-stats { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.svc-block-dark .svc-stats { border-top-color: rgba(255,255,255,0.1); }
.svc-stat-num { font-family: 'DM Serif Display', serif; font-size: 2.4rem; line-height: 1; }
.svc-block-dark .svc-stat-num { color: white; }
.svc-stat-num span { color: var(--orange); }
.svc-block-dark .svc-stat-num span { color: var(--gold); }
.svc-stat-label { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); margin-top: 0.35rem; }
.svc-block-dark .svc-stat-label { color: rgba(255,255,255,0.35); }
.deliverables-title { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brown); margin-bottom: 1.5rem; }
.svc-block-dark .deliverables-title { color: rgba(255,255,255,0.35); }
.deliverables { display: flex; flex-direction: column; }
.del {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--border); color: var(--ink);
}
.svc-block-dark .del { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.78); }
.del:last-child { border-bottom: none; }
.del-arrow {
  width: 1.5rem; height: 1.5rem; flex-shrink: 0; margin-top: 0.1rem;
  border: 1px solid rgba(13,13,13,0.22);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace; font-size: 0.6rem; color: var(--orange);
}
.svc-block-dark .del-arrow { border-color: rgba(255,255,255,0.15); color: var(--gold); }
.del strong { display: block; font-weight: 500; font-size: 0.9rem; margin-bottom: 0.25rem; }
.del span { font-size: 0.82rem; font-weight: 300; line-height: 1.7; color: var(--brown); }
.svc-block-dark .del span { color: rgba(255,255,255,0.42); }

.dive-row { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--border); }
.svc-block-dark .dive-row { background: #0a0a0a; border-top-color: rgba(255,255,255,0.08); }
.dive {
  padding: 2.5rem 2rem; border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background 0.25s;
}
.svc-block-dark .dive { border-right-color: rgba(255,255,255,0.08); }
.dive:last-child { border-right: none; }
.dive:hover { background: var(--cream-alt, var(--cream-dark)); }
.svc-block-dark .dive:hover { background: #141414; }
.dive::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.35s; }
.dive:hover::after { width: 100%; }
.dive-eye { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.svc-block-dark .dive-eye { color: var(--gold); }
.dive h3 { margin-bottom: 0.9rem; }
.svc-block-dark .dive h3 { color: white; }
.dive p { font-size: 0.85rem; line-height: 1.75; }
.svc-block-dark .dive p { color: rgba(255,255,255,0.42); }

.who-row {
  background: var(--dark); color: white;
  padding: 4rem 3rem;
  display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start;
}
.who-row h3 { color: white; margin-top: 0.85rem; }
.who-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.who-tag {
  font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.55rem 1.2rem; border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.62); cursor: default; transition: border-color 0.2s, color 0.2s;
}
.who-tag:hover { border-color: var(--gold); color: white; }

.mini-process { padding: 4rem 3rem; border-top: 1px solid var(--border); }
.mini-steps { display: flex; gap: 0; margin-top: 1.5rem; }
.mini-step { flex: 1; padding: 0 2rem 0 0; border-right: 1px solid var(--border); }
.mini-step:first-child { padding-left: 0; }
.mini-step:last-child { border-right: none; }
.mini-step-num { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 0.7rem; }
.mini-step h3 { font-size: 1.1rem; margin-bottom: 0.55rem; }
.mini-step p { font-size: 0.82rem; }

.compare-wrap { padding: 4rem 3rem; border-top: 1px solid var(--border); overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.compare-table th {
  font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.7rem 1rem; text-align: left;
  border-bottom: 2px solid rgba(13,13,13,0.2); color: var(--brown); font-weight: 500;
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); font-weight: 300; vertical-align: middle; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:hover td { background: var(--cream-dark); }
.compare-table .highlight { background: var(--orange-light); }
.chk { color: var(--orange); }
.crs { color: var(--brown); opacity: 0.4; }

.faq-wrap { padding: 4rem 3rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4rem; margin-top: 1.5rem; }
.faq-item { padding: 1.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-q { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: white; margin-bottom: 0.7rem; }
.faq-a { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.8; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-right { border-top: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .svc-top { grid-template-columns: 1fr; }
  .svc-top-left { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-block-dark .svc-top-left { border-bottom-color: rgba(255,255,255,0.08); }
  .origin-grid { grid-template-columns: 1fr; }
  .origin-sidebar { border-right: none; border-bottom: 1px solid var(--border); }
  .mission-grid { grid-template-columns: 1fr; gap: 4rem; }
  .culture-inner { grid-template-columns: 1fr; gap: 3rem; }
  .culture-sticky { position: static; }
  .press-inner { grid-template-columns: 1fr; gap: 3rem; }
  .team-card-full { grid-template-columns: 1fr; }
  .team-card-left { border-right: none; border-bottom: 1px solid var(--border); }
  .full-team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .section, .section-sm { padding: 5rem 1.5rem; }
  .cta-banner { padding: 3.5rem 1.5rem; }
  .footer { padding: 4rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-header { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .results-header { grid-template-columns: 1fr; gap: 2rem; }
  .case-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-left { position: static; }
  .team-header { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .dive-row { grid-template-columns: 1fr; }
  .dive { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-block-dark .dive { border-bottom-color: rgba(255,255,255,0.08); }
  .who-row { grid-template-columns: 1fr; gap: 2rem; }
  .mini-steps { flex-direction: column; gap: 2rem; }
  .mini-step { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 2rem; }
  .mini-step:last-child { border-bottom: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .press-item { grid-template-columns: 8rem 1fr; }
  .press-date { display: none; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .logo-row { flex-direction: column; }
  .logo-cell { border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
  .origin-content { padding: 4rem 1.5rem; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .numbers-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SERVICE DETAIL PAGES
   ============================================= */

/* Hero split */
.svc-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 72px;
}
.svc-hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 5rem 4rem 5rem 3rem;
  border-right: 1px solid var(--border);
}
.svc-hero-right {
  background: var(--cream-dark);
  display: flex; flex-direction: column;
}
.svc-hero-photo { flex: 1; overflow: hidden; }
.svc-hero-photo img { height: 100%; min-height: 440px; object-fit: cover; }
.svc-hero-stats {
  display: flex; gap: 0; border-top: 1px solid var(--border);
}
.svc-hero-stats .stat {
  flex: 1; padding: 2rem 1.5rem; border-right: 1px solid var(--border);
}
.svc-hero-stats .stat:last-child { border-right: none; }

/* Intro block */
.svc-intro-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: start;
}
.svc-intro-block p { margin-top: 1.5rem; }
.svc-intro-block .lead {
  font-size: 1.1rem; font-weight: 300; line-height: 1.85; color: var(--brown);
}

/* Deliverables list */
.del-list { margin-top: 2rem; }
.del-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
}
.del-row:first-child { border-top: 1px solid var(--border); }
.del-icon {
  width: 1.6rem; height: 1.6rem; flex-shrink: 0; margin-top: 0.1rem;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace; font-size: 0.6rem; color: var(--orange);
}
.del-row strong { display: block; font-weight: 500; font-size: 0.95rem; margin-bottom: 0.3rem; }
.del-row p { margin: 0; font-size: 0.85rem; line-height: 1.7; color: var(--brown); }

/* How it works steps */
.how-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.how-step {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.how-step-num {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.15em; color: var(--orange); margin-bottom: 1.25rem;
}
.how-step h3 { margin-bottom: 0.85rem; }
.how-step p { font-size: 0.85rem; color: var(--brown); line-height: 1.75; }

/* Feature grid */
.feature-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
.feature-card {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
  transition: background 0.25s;
}
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width 0.35s;
}
.feature-card:hover { background: var(--cream-dark); }
.feature-card:hover::after { width: 100%; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.feature-card p { font-size: 0.85rem; color: var(--brown); line-height: 1.75; }

/* Results strip */
.results-strip {
  background: var(--dark); color: white;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
}
.result-cell {
  background: var(--dark); padding: 3.5rem 3rem;
}
.result-metric {
  font-family: 'DM Serif Display', serif; font-size: 3.5rem;
  color: white; line-height: 1; margin-bottom: 0.4rem;
}
.result-metric span { color: var(--gold); }
.result-label { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 1.25rem; }
.result-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; font-weight: 300; }

/* Testimonial */
.testimonial {
  background: var(--orange); color: white;
  padding: 6rem 3rem; text-align: center;
}
.testimonial blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-style: italic; font-weight: 400; line-height: 1.35;
  max-width: 800px; margin: 0 auto 2rem;
}
.testimonial cite {
  font-family: 'DM Mono', monospace; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-style: normal;
}

/* FAQ accordion */
.faq-section { padding: 7rem 3rem; }
.faq-list { margin-top: 3rem; border-top: 1px solid var(--border); }
.faq-entry { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.75rem 0; cursor: pointer;
  font-family: 'DM Serif Display', serif; font-size: 1.15rem;
  user-select: none;
}
.faq-question::after {
  content: '+'; font-family: 'DM Mono', monospace; font-size: 1.2rem;
  color: var(--orange); flex-shrink: 0; transition: transform 0.25s;
}
.faq-entry.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  font-size: 0.95rem; color: var(--brown); line-height: 1.8; font-weight: 300;
}
.faq-entry.open .faq-answer { max-height: 400px; padding-bottom: 1.75rem; }

/* Related services */
.related-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.related-card {
  border: 1px solid var(--border); padding: 2rem;
  transition: border-color 0.2s, background 0.2s; display: block;
}
.related-card:hover { border-color: var(--orange); background: var(--orange-light); }
.related-num { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.15em; color: var(--orange); margin-bottom: 0.75rem; }
.related-title { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 0.6rem; }
.related-desc { font-size: 0.82rem; color: var(--brown); line-height: 1.65; font-weight: 300; }

/* Responsive for service pages */
@media (max-width: 1024px) {
  .svc-hero { grid-template-columns: 1fr; }
  .svc-hero-left { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-intro-block { grid-template-columns: 1fr; gap: 3rem; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .results-strip { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .svc-hero-left { padding: 4rem 1.5rem; }
}

/* =============================================
   PROCESS PAGE
   ============================================= */
.process-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 72px;
}
.process-hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 5rem 4rem 5rem 3rem; border-right: 1px solid var(--border);
}
.process-hero-right {
  background: var(--cream-dark); display: flex; flex-direction: column;
}
.process-hero-photo { flex: 1; overflow: hidden; }
.process-hero-photo img { height: 100%; min-height: 440px; object-fit: cover; }

/* Phase timeline */
.phase-timeline { margin-top: 4rem; }
.phase-block {
  display: grid; grid-template-columns: 6rem 1fr;
  border-top: 1px solid var(--border); padding: 3rem 0;
  gap: 3rem; align-items: start;
}
.phase-block:last-child { border-bottom: 1px solid var(--border); }
.phase-num-col {}
.phase-num {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); display: block; margin-bottom: 0.4rem;
}
.phase-timeline-dot {
  width: 1px; background: var(--border); height: calc(100% + 3rem);
  margin-left: 0.3rem; margin-top: 0.75rem; display: none;
}
.phase-content {}
.phase-title {
  font-family: 'DM Serif Display', serif; font-size: 2rem;
  font-weight: 400; line-height: 1.1; margin-bottom: 1rem;
}
.phase-title em { font-style: italic; color: var(--orange); }
.phase-desc { font-size: 0.95rem; font-weight: 300; line-height: 1.85; color: var(--brown); max-width: 52ch; }
.phase-tasks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
.phase-task {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}
.phase-task-num {
  font-family: 'DM Mono', monospace; font-size: 0.58rem;
  letter-spacing: 0.12em; color: var(--orange); margin-bottom: 0.6rem;
}
.phase-task h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; }
.phase-task p { font-size: 0.82rem; color: var(--brown); line-height: 1.65; font-weight: 300; }

/* Engagement model */
.engagement-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.engagement-card {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem; transition: background 0.25s; cursor: default;
  position: relative; overflow: hidden;
}
.engagement-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width 0.35s;
}
.engagement-card:hover { background: var(--cream-dark); }
.engagement-card:hover::after { width: 100%; }
.engagement-icon { font-family: 'DM Mono', monospace; font-size: 2rem; color: var(--orange); margin-bottom: 1.25rem; }
.engagement-title { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 0.85rem; }
.engagement-desc { font-size: 0.85rem; color: var(--brown); line-height: 1.75; font-weight: 300; }

/* =============================================
   RESULTS PAGE
   ============================================= */
.results-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 72px;
}
.results-hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 5rem 4rem 5rem 3rem; border-right: 1px solid var(--border);
}
.results-hero-right {
  background: var(--dark); display: flex; flex-direction: column;
}
.results-hero-photo { flex: 1; overflow: hidden; }
.results-hero-photo img { height: 100%; min-height: 440px; object-fit: cover; opacity: 0.55; }
.results-hero-nums {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.08);
}
.rhn { background: var(--dark); padding: 2rem 1.75rem; }
.rhn-num { font-family: 'DM Serif Display', serif; font-size: 2.6rem; color: white; line-height: 1; margin-bottom: 0.3rem; }
.rhn-num span { color: var(--gold); }
.rhn-label { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.38); }

/* Case study cards — full page */
.case-study-full {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border); min-height: 520px;
}
.case-study-full.reverse { direction: rtl; }
.case-study-full.reverse > * { direction: ltr; }
.csf-image { overflow: hidden; }
.csf-image img { width: 100%; height: 100%; object-fit: cover; }
.csf-body {
  padding: 5rem 4rem; display: flex; flex-direction: column;
  justify-content: center; background: var(--cream);
}
.case-study-full.dark .csf-body { background: var(--dark); }
.case-study-full.dark .csf-industry { color: var(--gold); }
.case-study-full.dark .csf-metric { color: white; }
.case-study-full.dark .csf-metric-label { color: rgba(255,255,255,0.45); }
.case-study-full.dark .csf-desc { color: rgba(255,255,255,0.7); }
.case-study-full.dark .csf-tags .case-tag { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.38); }
.csf-industry { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.5rem; }
.csf-metric { font-family: 'DM Serif Display', serif; font-size: 4.5rem; color: var(--ink); line-height: 1; margin-bottom: 0.4rem; }
.csf-metric-label { font-size: 0.9rem; color: var(--brown); margin-bottom: 1.5rem; font-weight: 300; }
.csf-desc { font-size: 1rem; font-weight: 300; line-height: 1.75; color: var(--brown); margin-bottom: 2rem; }
.csf-quote {
  font-family: 'DM Serif Display', serif; font-size: 1.1rem;
  font-style: italic; line-height: 1.5; color: var(--ink);
  padding-left: 1.5rem; border-left: 3px solid var(--orange);
  margin-top: 2rem; margin-bottom: 0.75rem;
}
.case-study-full.dark .csf-quote { color: white; }
.csf-cite { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); }
.case-study-full.dark .csf-cite { color: rgba(255,255,255,0.4); }

/* Aggregate stats strip */
.agg-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
}
.agg-cell { background: var(--dark); padding: 3rem 2.5rem; }
.agg-num { font-family: 'DM Serif Display', serif; font-size: 3rem; color: white; line-height: 1; margin-bottom: 0.4rem; }
.agg-num span { color: var(--gold); }
.agg-label { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.75rem; }
.agg-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65; font-weight: 300; }

/* Industry breakdown */
.industry-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}
.industry-card {
  border: 1px solid var(--border); padding: 2.5rem;
  display: grid; grid-template-columns: 6rem 1fr; gap: 2rem;
  align-items: start; transition: background 0.2s;
}
.industry-card:hover { background: var(--cream-dark); }
.industry-metric { font-family: 'DM Serif Display', serif; font-size: 2.8rem; line-height: 1; }
.industry-metric span { color: var(--orange); }
.industry-label { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); margin-top: 0.3rem; }
.industry-title { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 0.6rem; }
.industry-desc { font-size: 0.85rem; color: var(--brown); line-height: 1.7; font-weight: 300; }

/* =============================================
   WHY AI SEARCH PAGE
   ============================================= */
.why-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 72px;
}
.why-hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 5rem 4rem 5rem 3rem; border-right: 1px solid var(--border);
}
.why-hero-right { background: var(--cream-dark); display: flex; flex-direction: column; }
.why-hero-photo { flex: 1; overflow: hidden; }
.why-hero-photo img { height: 100%; min-height: 440px; object-fit: cover; }

/* Shift stats */
.shift-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
}
.shift-cell {
  background: var(--cream); padding: 3rem 2.5rem;
  transition: background 0.2s;
}
.shift-cell:hover { background: var(--cream-dark); }
.shift-num { font-family: 'DM Serif Display', serif; font-size: 3.2rem; line-height: 1; margin-bottom: 0.4rem; }
.shift-num span { color: var(--orange); }
.shift-label { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.85rem; }
.shift-desc { font-size: 0.85rem; color: var(--brown); line-height: 1.7; font-weight: 300; }

/* Comparison: old world vs new world */
.world-compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-top: 1px solid var(--border);
}
.world-col { padding: 4rem 3rem; }
.world-col.old { background: var(--cream-dark); border-right: 1px solid var(--border); }
.world-col.new { background: var(--ink); color: white; }
.world-header { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown); margin-bottom: 2rem; display: flex; align-items: center; gap: 0.6rem; }
.world-col.new .world-header { color: rgba(255,255,255,0.35); }
.world-header::before { content: ''; width: 1.5rem; height: 1px; background: currentColor; }
.world-col h3 { font-family: 'DM Serif Display', serif; font-size: 1.8rem; margin-bottom: 2rem; }
.world-col.new h3 { color: white; }
.world-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--border);
}
.world-col.new .world-row { border-bottom-color: rgba(255,255,255,0.08); }
.world-row:last-child { border-bottom: none; }
.world-bullet { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--brown); flex-shrink: 0; padding-top: 0.1rem; }
.world-col.new .world-bullet { color: var(--gold); }
.world-row p { font-size: 0.9rem; font-weight: 300; line-height: 1.65; color: var(--brown); }
.world-col.new .world-row p { color: rgba(255,255,255,0.65); }

/* AI Engine breakdown */
.engines-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.engine-card {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem; transition: background 0.25s; position: relative; overflow: hidden;
}
.engine-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.35s; }
.engine-card:hover { background: var(--cream-dark); }
.engine-card:hover::after { width: 100%; }
.engine-name { font-family: 'DM Serif Display', serif; font-size: 1.4rem; margin-bottom: 0.5rem; }
.engine-type { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.1rem; }
.engine-desc { font-size: 0.85rem; color: var(--brown); line-height: 1.75; font-weight: 300; }
.engine-share { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.08em; color: var(--brown); margin-top: 1.25rem; opacity: 0.6; }

/* =============================================
   GET AUDIT PAGE (contact / form)
   ============================================= */
.audit-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 72px;
}
.audit-hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 5rem 4rem 5rem 3rem; border-right: 1px solid var(--border);
}
.audit-hero-right {
  background: var(--cream-dark); display: flex; flex-direction: column;
  justify-content: center; padding: 5rem 4rem;
}
.audit-trust { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.audit-trust-label { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brown); margin-bottom: 1.5rem; }
.audit-trust-items { display: flex; flex-direction: column; gap: 1rem; }
.audit-trust-item { display: flex; align-items: flex-start; gap: 1rem; }
.audit-trust-icon { font-family: 'DM Mono', monospace; font-size: 0.8rem; color: var(--orange); flex-shrink: 0; padding-top: 0.1rem; }
.audit-trust-text { font-size: 0.875rem; font-weight: 300; line-height: 1.6; color: var(--brown); }
.audit-trust-text strong { color: var(--ink); font-weight: 500; }

/* Form */
.form-title { font-family: 'DM Serif Display', serif; font-size: 1.6rem; margin-bottom: 0.5rem; }
.form-sub { font-size: 0.875rem; color: var(--brown); margin-bottom: 2.5rem; font-weight: 300; line-height: 1.6; }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.form-label { display: block; font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.6rem; }
.form-label span { color: var(--orange); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 300;
  background: white; color: var(--ink);
  border: 1.5px solid var(--border);
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--brown); opacity: 0.5; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6258' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-checks { display: flex; flex-direction: column; gap: 0.75rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.85rem; cursor: pointer; }
.form-check input[type="checkbox"] { width: 1.1rem; height: 1.1rem; margin-top: 0.1rem; accent-color: var(--orange); flex-shrink: 0; cursor: pointer; }
.form-check-label { font-size: 0.875rem; font-weight: 300; color: var(--brown); line-height: 1.5; }
.form-submit { width: 100%; padding: 1.1rem; background: var(--orange); color: white; border: none; font-family: 'DM Mono', monospace; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: opacity 0.2s; margin-top: 0.5rem; }
.form-submit:hover { opacity: 0.85; }
.form-note { font-size: 0.78rem; color: var(--brown); text-align: center; margin-top: 1rem; opacity: 0.65; }

/* Success state */
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success.show { display: block; }
.form-success-icon { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--orange); margin-bottom: 1rem; }
.form-success h3 { font-family: 'DM Serif Display', serif; font-size: 1.75rem; margin-bottom: 0.75rem; }
.form-success p { font-size: 0.9rem; color: var(--brown); font-weight: 300; line-height: 1.7; }

/* What happens next */
.next-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.next-step {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 3rem 2.5rem;
}
.next-step-num { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.15em; color: var(--orange); margin-bottom: 1.25rem; }
.next-step h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 0.85rem; }
.next-step p { font-size: 0.875rem; color: var(--brown); line-height: 1.75; font-weight: 300; }
.next-step-time { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); opacity: 0.55; margin-top: 1.5rem; }

/* Alternative contact */
.alt-contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.alt-card { padding: 2.5rem; border: 1px solid var(--border); text-align: center; transition: border-color 0.2s, background 0.2s; }
.alt-card:hover { border-color: var(--orange); background: var(--orange-light); }
.alt-icon { font-family: 'DM Serif Display', serif; font-size: 1.75rem; color: var(--orange); margin-bottom: 1rem; }
.alt-title { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 0.6rem; }
.alt-desc { font-size: 0.85rem; color: var(--brown); line-height: 1.65; font-weight: 300; margin-bottom: 1.25rem; }
.alt-link { font-family: 'DM Mono', monospace; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.alt-link:hover { text-decoration: underline; }

/* Responsive for new pages */
@media (max-width: 1024px) {
  .process-hero, .results-hero, .why-hero, .audit-hero { grid-template-columns: 1fr; }
  .process-hero-left, .results-hero-left, .why-hero-left, .audit-hero-left { border-right: none; border-bottom: 1px solid var(--border); }
  .case-study-full { grid-template-columns: 1fr; }
  .case-study-full.reverse { direction: ltr; }
  .world-compare { grid-template-columns: 1fr; }
  .world-col.old { border-right: none; border-bottom: 1px solid var(--border); }
  .audit-hero-right { padding: 4rem 2rem; }
  .phase-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .agg-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .phase-tasks { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .shift-grid { grid-template-columns: 1fr; }
  .engines-grid { grid-template-columns: 1fr; }
  .next-steps { grid-template-columns: 1fr; }
  .alt-contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .results-hero-nums { grid-template-columns: 1fr 1fr; }
  .agg-strip { grid-template-columns: 1fr; }
}

/*css for mobile menu added May 24 2026*/
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #111;
  font-size: 20px;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 10001;
}

@media (max-width: 768px) {
  .nav {
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    font-size: 9px;
    padding: 8px 12px;
    min-width: auto;
    white-space: nowrap;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f4f0e8;
    border-top: 1px solid #d8d0c3;
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    list-style: none;
  }

  .dropdown {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-top: 12px;
  }
}

