/*
 * Māk Interiors — main.css v3.0.0
 * Single source of truth. No inline styles in PHP.
 *
 * Structure:
 *  1. Tokens
 *  2. Reset
 *  3. Cursor
 *  4. Nav + Drawer
 *  5. Pills
 *  6. Reveal
 *  7. Utilities
 *  8. Footer
 *  9. Inner page hero
 * 10. Homepage hero
 * 11. Homepage marquee
 * 12. Homepage about
 * 13. Homepage services bento
 * 14. Homepage projects
 * 15. Homepage process
 * 16. Homepage clients
 * 17. Homepage contact band
 * 18. Services page
 * 19. About page
 * 20. Contact page
 * 21. Portfolio page
 * 22. Project page
 * 23. Responsive
 */

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  --teal:       #2E8B84;
  --teal-mid:   #3DA89F;
  --teal-light: #4DBFB8;
  --teal-pale:  #D4F0EC;
  --teal-dark:  #1F6B65;
  --charcoal:   #2C3A38;
  --charcoal-2: #1A2E2C;
  --mid:        #4A6664;
  --muted:      #7AABAA;
  --cream:      #F0F7F5;
  --white:      #FFFFFF;
  --ff-display: 'Plus Jakarta Sans', sans-serif;
  --ff-body:    'DM Sans', sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--charcoal); background: var(--white); overflow-x: hidden; cursor: none; }
html.touch-device body { cursor: auto; }
html.touch-device a, html.touch-device button, html.touch-device input, html.touch-device select, html.touch-device textarea, html.touch-device .pill, html.touch-device .nav-links a, html.touch-device .footer-col a, html.touch-device .footer-legal a, html.touch-device .body-link, html.touch-device .pc, html.touch-device .p-card, html.touch-device .team-card, html.touch-device .detail-link, html.touch-device .od-contact-val a, html.touch-device .logo, html.touch-device .burger, html.touch-device .drawer-links a, html.touch-device .drawer-close, html.touch-device .submit-btn, html.touch-device .social-pill, html.touch-device .mak-lightbox, html.touch-device .mak-lightbox-close, html.touch-device .mak-lightbox-next { cursor: auto; }
html.touch-device .cur { display: none; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   3. CURSOR
   ============================================================ */
.cur { width: 12px; height: 12px; border-radius: 50%; background: var(--teal-light); opacity: .85; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999999; transform: translate(-50%,-50%); transition: width .25s var(--ease), height .25s var(--ease), opacity .2s; mix-blend-mode: multiply; }
.cur.big { width: 44px; height: 44px; }
.cur.zoom { width: 56px; height: 56px; opacity: 1; mix-blend-mode: normal; background: var(--teal); animation: cur-pulse 1s ease-in-out infinite; }
@keyframes cur-pulse { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.18); } }
.mak-lightbox { position: fixed; inset: 0; background: rgba(20,36,34,.95); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; pointer-events: none; cursor: none; }
.mak-lightbox.open { opacity: 1; pointer-events: all; }
.mak-lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 8px; transform: scale(.95); transition: transform .3s var(--ease); display: block; }
.mak-lightbox.open img { transform: scale(1); }
.mak-lightbox-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: rgba(255,255,255,.5); font-size: 36px; cursor: none; line-height: 1; transition: color .2s; padding: 0; }
.mak-lightbox-close:hover { color: #fff; }
.mak-lightbox-caption { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; font-size: 11px; font-weight: 300; letter-spacing: .1em; color: rgba(255,255,255,.35); text-transform: uppercase; }
.mak-lightbox-counter { position: absolute; top: 24px; left: 0; right: 0; text-align: center; font-size: 11px; font-weight: 600; letter-spacing: .15em; color: rgba(255,255,255,.4); text-transform: uppercase; display: none; }
.mak-lightbox-prev,
.mak-lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7); font-size: 20px; width: 48px; height: 48px; border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: none; transition: background .2s, color .2s; }
.mak-lightbox-prev:hover,
.mak-lightbox-next:hover { background: rgba(255,255,255,.18); color: #fff; }
.mak-lightbox-prev { left: 24px; }
.mak-lightbox-next { right: 24px; }

/* ============================================================
   4. NAV + DRAWER
   ============================================================ */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 28px 40px; min-height: 96px; transition: background .3s, padding .4s var(--ease), min-height .4s var(--ease), box-shadow .3s; }
nav.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(12px); padding: 14px 40px; box-shadow: 0 1px 0 rgba(0,0,0,.06); }
.logo { display: flex; align-items: center; cursor: none; }
.logo-svg { height: 72px; width: auto; display: block; transition: height .4s var(--ease); }
.logo-svg .logo-letters, .logo-svg .logo-bar, .logo-svg .logo-wordmark { fill: #fff; transition: fill .3s; }
.logo-svg .logo-border-thin  { stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: square; stroke-linejoin: miter; transition: stroke .3s; }
.logo-svg .logo-border-thick { stroke: #fff; fill: none; stroke-width: 6; stroke-linecap: square; stroke-linejoin: miter; transition: stroke .3s; }
nav.scrolled { padding: 16px 40px; min-height: 72px; }
nav.scrolled .logo-svg { height: 36px; }
nav.scrolled .logo-svg .logo-letters, nav.scrolled .logo-svg .logo-bar, nav.scrolled .logo-svg .logo-wordmark { fill: var(--teal); }
nav.scrolled .logo-svg .logo-border-thin  { stroke: var(--teal); }
nav.scrolled .logo-svg .logo-border-thick { stroke: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-family: var(--ff-display); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.8); transition: color .2s; position: relative; cursor: none; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px; background: var(--teal-light); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
nav.scrolled .nav-links a { color: var(--charcoal); }
.burger { display: none; background: none; border: none; cursor: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 24px; height: 1.5px; background: #fff; transition: background .3s; }
nav.scrolled .burger span { background: var(--charcoal); }
.drawer { position: fixed; inset: 0; z-index: 200; background: #1F3532; transform: translateX(100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; justify-content: center; padding: 48px 36px; border-left: 3px solid var(--teal-light); }
.drawer.open { transform: translateX(0); }
.drawer-links a { font-family: var(--ff-display); font-size: 32px; font-weight: 800; color: rgba(255,255,255,.85); display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: color .2s; cursor: none; }
.drawer-links a:hover { color: var(--teal-light); }
.drawer-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 28px; cursor: none; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 199; opacity: 0; pointer-events: none; transition: opacity .3s; }
.overlay.show { opacity: 1; pointer-events: all; }

/* ============================================================
   5. PILLS
   ============================================================ */
.pill { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 14px 28px; border-radius: 100px; transition: transform .2s, gap .2s, background .2s; cursor: none; text-decoration: none; }
.pill:hover { transform: scale(1.04); gap: 14px; }
.pill-lime        { background: var(--teal-light); color: var(--charcoal); border: 2px solid var(--teal); }
.pill-lime:hover  { background: var(--teal-mid); }
.pill-teal        { background: var(--teal); color: var(--white); border: 2px solid var(--teal-dark); }
.pill-teal:hover  { background: var(--teal-dark); }
.pill-ghost        { border: 1.5px solid rgba(255,255,255,.35); color: rgba(255,255,255,.85); }
.pill-ghost:hover  { border-color: var(--teal-light); color: var(--teal-light); }
.pill-outline        { border: 1.5px solid var(--teal); color: var(--teal); }
.pill-outline:hover  { background: var(--teal); color: var(--white); }
.pill-out            { border: 1.5px solid var(--teal); color: var(--teal); }
.pill-out:hover      { background: var(--teal); color: var(--white); }
.pill-white          { background: var(--white); color: var(--teal); }
.pill-white:hover    { background: var(--cream); }
.pill-ghost-white        { border: 1.5px solid rgba(255,255,255,.4); color: #fff; }
.pill-ghost-white:hover  { border-color: #fff; }
.pill-ghost-dark       { border: 1.5px solid rgba(44,58,56,.3); color: var(--charcoal); }
.pill-ghost-dark:hover { border-color: var(--teal); color: var(--teal); }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-inner .cta-row, .about-cta-inner .cta-row, .portfolio-cta-inner .cta-row { justify-content: center; }

/* ============================================================
   6. REVEAL — disabled, all visible. Re-enable when stable.
   ============================================================ */
.reveal, .reveal.revealed { opacity: 1; transform: none; }
.reveal-left, .reveal-left.revealed { opacity: 1; transform: none; }
.stagger > *, .stagger.revealed > * { opacity: 1; transform: none; }

/* ============================================================
   7. UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 52px; }
.section-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--teal); }
.section-label a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(77,191,184,0.4); transition: border-color 0.2s; }
.section-label a:hover { border-color: var(--teal); }
.section-tag { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-tag::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--teal); flex-shrink: 0; }
.ruled { display: flex; align-items: center; gap: 14px; font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.ruled::before { content: ''; display: block; width: 24px; height: 2px; background: currentColor; border-radius: 2px; flex-shrink: 0; }
.ruled-light { color: var(--teal); }
.ruled-pale  { color: var(--teal-pale); }
.teal { color: var(--teal); }
.teal-light { color: var(--teal-light); }
.teal-light { color: var(--teal-light); }
.lime { color: var(--teal-light); }
/*
 * .outline = faded text, lighter visual weight than solid words.
 */
.outline { color: rgba(255,255,255,.28); -webkit-text-stroke: 0; } /* faded, no stroke */

/* Explicit stroke colours by section — don't rely on currentColor inheritance */
/* Dark backgrounds: white stroke */
.contact-left .outline,
.contact-hed .outline   { color: rgba(255,255,255,.28); -webkit-text-stroke: 0; }
/* Light backgrounds: charcoal stroke */
.about-hed .outline,
.services-hed .outline,
.process-hed .outline   { color: rgba(44,58,56,.22); -webkit-text-stroke: 0; }
.proj-hed .outline { color: rgba(255,255,255,.28); -webkit-text-stroke: 0; }
body.home .process .process-hed .outline { color: #fff; -webkit-text-stroke: 0; }

/* ============================================================
   8. FOOTER
   ============================================================ */
footer { background: #253533; padding: 64px 52px 40px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo .logo-svg { height: 48px; }
.footer-logo .logo-svg .logo-letters, .footer-logo .logo-svg .logo-bar, .footer-logo .logo-svg .logo-wordmark { fill: rgba(255,255,255,.9); }
.footer-logo .logo-svg .logo-border-thin  { stroke: var(--teal-light); }
.footer-logo .logo-svg .logo-border-thick { stroke: var(--teal-light); }
.footer-desc { font-size: 13px; font-weight: 300; line-height: 1.8; margin-top: 20px; color: rgba(255,255,255,.4); }
.footer-col-title { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13px; font-weight: 300; color: rgba(255,255,255,.5); margin-bottom: 10px; transition: color .2s; cursor: none; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.25); cursor: none; }
.footer-legal a:hover { color: var(--teal-light); }

/* ============================================================
   9. INNER PAGE HERO
   ============================================================ */
.page-hero { min-height: 55vh; display: flex; align-items: flex-end; padding: 64px 52px; padding-top: 120px; position: relative; overflow: hidden; background: var(--charcoal); }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(155deg, #1A2E2C 0%, #253533 100%); }
.page-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 1; z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,46,44,.45) 0%, rgba(26,46,44,.65) 60%, rgba(26,46,44,.88) 100%); z-index: 1; }
.page-hero-grain { position: absolute; inset: 0; opacity: .35; pointer-events: none; z-index: 1; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(77,191,184,.04) 0, rgba(77,191,184,.04) 1px, transparent 0, transparent 50%); background-size: 18px 18px; z-index: 1; }
.page-hero-content, .page-hero .hero-content { position: relative; z-index: 2; max-width: 720px; text-shadow: 0 1px 12px rgba(0,0,0,.3); }
.page-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.page-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--teal-light); }
.page-hero h1 { font-family: var(--ff-display); font-size: clamp(36px,5.5vw,72px); font-weight: 800; letter-spacing: -.03em; line-height: 1.0; color: #fff; margin-bottom: 24px; }
/* em in page hero headings = solid teal accent, NOT outline */
.page-hero h1 em { font-style: normal; color: var(--teal-light); -webkit-text-stroke: 0; }
.page-hero-sub, .page-hero .hero-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.7); line-height: 1.75; max-width: 560px; }

/* ============================================================
   10. HOMEPAGE HERO
   ============================================================ */
.hero { min-height: 100vh; position: relative; overflow: hidden; background: var(--charcoal); display: grid; grid-template-rows: 1fr auto; }
.hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; opacity: .22; will-change: auto; }
.hero-grain { position: absolute; inset: 0; opacity: .35; pointer-events: none; z-index: 1; }
.hero-arc   { position: absolute; bottom: -200px; right: -200px; width: clamp(400px,50vw,700px); height: clamp(400px,50vw,700px); border-radius: 50%; border: 1px solid rgba(61,168,159,.15); pointer-events: none; z-index: 1; }
.hero-arc-2 { position: absolute; bottom: -320px; right: -320px; width: clamp(600px,70vw,1000px); height: clamp(600px,70vw,1000px); border-radius: 50%; border: 1px solid rgba(61,168,159,.08); pointer-events: none; z-index: 1; }
.hero-inner { position: relative; z-index: 2; padding: clamp(100px,15vh,160px) clamp(24px,4vw,52px) clamp(40px,6vh,80px); display: flex; flex-direction: column; justify-content: flex-end; }
.hero-hed { display: flex; flex-direction: column; gap: 4px; }
.hed-row { display: flex; align-items: baseline; gap: clamp(12px,2vw,20px); flex-wrap: wrap; }
.hed-lg { font-family: var(--ff-display); font-weight: 800; line-height: .92; font-size: clamp(56px,10vw,160px); letter-spacing: -.03em; color: #fff; }
.hed-sm { font-family: var(--ff-body); font-size: clamp(12px,1.6vw,20px); font-weight: 300; color: rgba(255,255,255,.4); letter-spacing: .02em; align-self: flex-end; padding-bottom: .2em; }
.hed-teal    { color: var(--teal-light); }
.hed-outline { color: rgba(255,255,255,.28); -webkit-text-stroke: 0; }
.hero-foot { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; padding: 0 clamp(24px,4vw,52px) clamp(32px,5vh,52px); border-top: 1px solid rgba(255,255,255,.08); gap: 24px; flex-wrap: wrap; }
.hero-desc { font-size: clamp(13px,1.4vw,15px); font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.55); max-width: 420px; padding-top: 24px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-top: 24px; }

/* ============================================================
   11. MARQUEE
   ============================================================ */
.mq { background: var(--teal-light); padding: 16px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 3; pointer-events: none; }
.mq-track { display: inline-flex; gap: 48px; animation: marquee 28s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-item { font-family: var(--ff-display); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal); opacity: .75; flex-shrink: 0; }
.mq-dot { color: var(--charcoal); opacity: .4; flex-shrink: 0; font-size: 8px; align-self: center; }

/* ============================================================
   12. HOMEPAGE ABOUT
   ============================================================ */
.about { background: var(--cream); padding: clamp(80px,10vw,120px) 0; }
.about-inner { max-width: 1200px; margin: 0 auto; padding: 0 52px; display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.about-text { max-width: 600px; }
.about-hed { font-family: var(--ff-display); font-size: clamp(28px,3.5vw,44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--charcoal); margin-bottom: 20px; }
.about-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--mid); margin-bottom: 32px; }
.about-cta { margin-top: 0; }
.about-quote-block { flex-shrink: 0; width: clamp(240px,30vw,380px); aspect-ratio: 1/1; position: relative; }
.about-quote-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.about-quote-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 40px; box-sizing: border-box; }
.about-quote-text { font-family: var(--ff-display); font-size: clamp(40px,5.5vw,68px); font-weight: 800; letter-spacing: -.03em; line-height: 1.0; color: var(--teal); font-style: normal; opacity: 0; transform: translateY(10px); transition: opacity .45s, transform .45s cubic-bezier(.4,0,.2,1); }
.about-quote-text.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   13. HOMEPAGE SERVICES BENTO
   ============================================================ */
.services { padding: clamp(60px,8vw,100px) 0; background: var(--white); }
.services-editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.services-hed { font-family: var(--ff-display); font-size: clamp(28px,4vw,52px); font-weight: 800; letter-spacing: -.03em; color: var(--charcoal); line-height: 1.1; }
.services-hed em { font-style: normal; color: var(--teal); }
.services-editorial-body { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--mid); margin-bottom: 32px; }
.body-link { color: var(--teal); text-decoration: none; border-bottom: 1px solid rgba(46,139,132,.3); transition: border-color .2s; cursor: none; }
.body-link:hover { border-color: var(--teal); }
.bc.dark .bc-desc { color: rgba(255,255,255,.5); }
.bc.lime .bc-desc { color: rgba(28,55,52,.7); }

/* ============================================================
   14. HOMEPAGE PROJECTS MOSAIC
   ============================================================ */
.projects { padding: clamp(60px,8vw,100px) 0; background: var(--charcoal); overflow: hidden; }
.projects-head { display: flex; justify-content: space-between; align-items: flex-end; padding: 0; margin-bottom: 40px; gap: 24px; flex-wrap: wrap; }
.projects .ruled { color: var(--teal-light); }
.projects .ruled::before { background: var(--teal-light); }
.projects .pill-out { border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.85); }
.projects .pill-out:hover { border-color: var(--teal-light); color: var(--teal-light); background: none; }
.proj-hed { font-family: var(--ff-display); font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -.03em; color: #fff; line-height: 1.1; }
.projects-mosaic { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: 380px 380px; gap: 12px; padding: 0 clamp(24px,4vw,52px); }
.pc { position: relative; overflow: hidden; border-radius: 12px; cursor: none; display: block; text-decoration: none; }
.pc:hover .pc-img { transform: scale(1.05); }
.pc-1 { grid-column: span 7; grid-row: span 2; }
.pc-2 { grid-column: span 5; }
.pc-3 { grid-column: span 3; }
.pc-4 { grid-column: span 2; }
.pc-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--charcoal-2); transition: transform .6s var(--ease), opacity 400ms; }
.pc-img.lazyloaded { transition: transform .6s var(--ease), opacity 400ms; }
.pc-grad { position: absolute; inset: 0; background: linear-gradient(to top,rgba(28,55,52,.85) 0%,transparent 55%); }
.pc-badge { position: absolute; top: 16px; left: 16px; font-family: var(--ff-display); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); color: #fff;; padding: 6px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,.3); }
.pc-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; }
.pc-type  { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 4px; }
.pc-name  { font-family: var(--ff-display); font-size: clamp(15px,2vw,22px); font-weight: 700; color: #fff; letter-spacing: -.01em; }
.pc-sub   { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 3px; }

/* ============================================================
   15. HOMEPAGE PROCESS
   Scoped to body.home to avoid conflict with services page .process
   ============================================================ */
body.home .process { background: var(--charcoal); padding: clamp(60px,8vw,88px) 0; position: relative; overflow: hidden; background-size: cover; background-attachment: fixed; background-position: center; }
.process-img-overlay { position: absolute; inset: 0; background: rgba(26,46,44,.65); z-index: 0; pointer-events: none; }
body.home .process-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 52px; }
body.home .process-bg-word { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--ff-display); font-size: clamp(80px,14vw,200px); font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(46,139,132,.1); white-space: nowrap; pointer-events: none; letter-spacing: -.05em; }
body.home .process-inner { position: relative; z-index: 1; }
body.home .process-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 24px; flex-wrap: wrap; }
body.home .process-hed { font-family: var(--ff-display); font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -.03em; color: #fff; line-height: 1.1; }
body.home .steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
body.home .step { padding: 32px 28px; background: rgba(26,46,44,.75); border-left: 3px solid transparent; transition: background .3s, border-color .3s; }
body.home .step:hover { background: rgba(46,139,132,.2); border-left-color: var(--teal-light); }
body.home .step-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal-light); margin-bottom: 20px; }
body.home .step-n { display: block; font-family: var(--ff-display); font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--teal-light); margin-bottom: 12px; }
body.home .step-t { display: block; font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -.01em; }
body.home .step-d { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.6); }

/* ============================================================
   16. HOMEPAGE CLIENTS
   ============================================================ */
.clients { padding: clamp(48px,6vw,88px) clamp(24px,4vw,52px) clamp(40px,6vw,72px); background: var(--white); position: relative; z-index: 2; }
.clients-inner { margin-top: 24px; }
.clients-row { display: grid; grid-template-columns: repeat(6,1fr); border: 1px solid rgba(46,139,132,.1); border-radius: 8px; overflow: hidden; }
.client-cell { padding: 28px 20px; text-align: center; font-family: var(--ff-display); font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--mid); border-right: 1px solid rgba(46,139,132,.1); transition: color .2s, background .2s; }
.client-cell:last-child { border-right: none; }
.client-cell:hover { color: var(--teal); background: var(--cream); }

/* ============================================================
   17. HOMEPAGE CONTACT BAND
   ============================================================ */
.contact { background: linear-gradient(to right, var(--charcoal) 50%, var(--cream) 50%); position: relative; }
.contact::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(77,191,184,.04) 0,rgba(77,191,184,.04) 1px,transparent 0,transparent 50%); background-size: 18px 18px; pointer-events: none; z-index: 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.contact-left { background: var(--charcoal); padding: clamp(64px,8vw,100px) clamp(32px,5vw,72px); display: flex; flex-direction: column; justify-content: flex-start; position: relative; overflow: hidden; }
.contact-left::before { display: none; }
.contact-hed { font-family: var(--ff-display); font-size: clamp(32px,4vw,52px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: #fff; margin-bottom: 20px; position: relative; z-index: 1; }
.contact-hed em { font-style: normal; color: var(--teal-light); }
.contact-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 36px; position: relative; z-index: 1; }
.contact-deets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; position: relative; z-index: 1; }
.c-row { display: flex; gap: 20px; align-items: baseline; }
.c-lbl { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); min-width: 50px; }
.c-val { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.7); }
.c-val a { color: var(--teal-light); transition: color .2s; cursor: none; }
.c-val a:hover { color: #fff; }
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.contact-right { background: var(--cream); padding: clamp(64px,8vw,100px) clamp(32px,5vw,72px); display: flex; flex-direction: column; justify-content: flex-start; position: relative; }
.contact-right::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,var(--teal) 0,var(--teal) 1px,transparent 0,transparent 50%); background-size: 18px 18px; opacity: .04; pointer-events: none; z-index: 0; }
.form { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-lbl { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal); }
.field input, .field select, .field textarea { font-family: var(--ff-body); font-size: 14px; font-weight: 300; color: var(--charcoal); background: var(--white); border: 1.5px solid rgba(46,139,132,.15); border-left: 3px solid var(--teal-light); border-radius: 0 8px 8px 0; padding: 14px 18px; outline: none; width: 100%; transition: border-color .2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(46,139,132,.4); border-left-color: var(--teal); }
.field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer; }

/* ============================================================
   18. SERVICES PAGE
   ============================================================ */
.audience { padding: 96px 0 80px; background: var(--cream); }
.audience-intro { max-width: 680px; margin-bottom: 64px; }
.audience-intro h2 { font-family: var(--ff-display); font-size: clamp(28px,3.5vw,44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--charcoal); margin-bottom: 20px; }
.audience-intro h2 em { font-style: normal; color: var(--teal); -webkit-text-stroke: 0; }
.audience-intro p { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--mid); }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.audience-card { background: #fff; overflow: hidden; }
.audience-card:first-child { border-radius: 12px 0 0 12px; }
.audience-card:last-child { border-radius: 0 12px 12px 0; }
.audience-card-img { position: relative; height: 160px; background-size: cover; background-position: center; background-color: var(--charcoal); }
.audience-card-img-fade { display: none; }
.audience-card-num { position: absolute; bottom: 0; left: 36px; font-family: var(--ff-display); font-size: 64px; font-weight: 800; color: rgba(255,255,255,.5); letter-spacing: -.04em; line-height: 1; mix-blend-mode: overlay; }
.audience-card:not(:has(.audience-card-img[style])) .audience-card-num { color: rgba(46,139,132,.12); mix-blend-mode: normal; }
.audience-card-body { padding: 20px 36px 48px; }
.audience-card-rule { width: 32px; height: 2px; background: var(--teal); margin-bottom: 20px; }
.audience-card-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.audience-card h3 { font-family: var(--ff-display); font-size: clamp(20px,2vw,26px); font-weight: 800; letter-spacing: -.02em; color: var(--charcoal); margin-bottom: 14px; line-height: 1.1; }



/* Services process — dark bg, 4 phases */
.process { padding: 96px 0; background: var(--charcoal); overflow: hidden; position: relative; }
.process::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(77,191,184,.04) 0,rgba(77,191,184,.04) 1px,transparent 0,transparent 50%); background-size: 18px 18px; }
.process-header { margin-bottom: 56px; position: relative; z-index: 1; padding: 0 52px; }
.process-header .section-label { color: var(--teal-light); }
.process-header .section-label::before { background: var(--teal-light); }
.process-header h2 { font-family: var(--ff-display); font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; color: #fff; }
.process-header h2 em { font-style: normal; color: var(--teal-light); -webkit-text-stroke: 0; }
.process-phases { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; position: relative; z-index: 1; }
.phase { padding: 40px 32px; background: rgba(255,255,255,.04); border-left: 3px solid transparent; transition: background .3s, border-color .3s; }
.phase:hover { background: rgba(255,255,255,.07); border-left-color: var(--teal-light); }
.phase-num { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 14px; }
.phase-title { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 20px; letter-spacing: -.01em; }
.phase-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.phase-list li { font-size: 13px; font-weight: 300; line-height: 1.5; color: rgba(255,255,255,.5); padding-left: 14px; position: relative; }
.phase-list li::before { content: '—'; position: absolute; left: 0; color: var(--teal-light); font-size: 10px; top: 2px; }

.image-break { height: 480px; position: relative; overflow: hidden; }
.image-break img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-break-overlay { position: absolute; inset: 0; background: linear-gradient(to right,rgba(28,55,52,.8) 0%,rgba(28,55,52,.2) 60%,transparent 100%); }
.image-break-content { position: absolute; top: 50%; left: 52px; transform: translateY(-50%); max-width: 440px; z-index: 2; }
.image-break-content blockquote { font-family: var(--ff-display); font-size: clamp(20px,3vw,30px); font-weight: 700; letter-spacing: -.02em; color: #fff; line-height: 1.25; }
.image-break-content blockquote em { font-style: normal; color: var(--teal-light); -webkit-text-stroke: 0; }
.image-break-content cite { display: block; margin-top: 20px; font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-light); font-style: normal; }

.good-fit { padding: 96px 0; background: var(--cream); overflow: hidden; position: relative; }
.good-fit::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,var(--teal) 0,var(--teal) 1px,transparent 0,transparent 50%); background-size: 18px 18px; opacity: .04; pointer-events: none; }
.good-fit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.good-fit-left h2 { font-family: var(--ff-display); font-size: clamp(32px,4.5vw,56px); font-weight: 800; letter-spacing: -.03em; line-height: 1.0; color: var(--charcoal); margin-bottom: 24px; }
.good-fit-left h2 em { font-style: normal; color: var(--teal-light); -webkit-text-stroke: 0; }
.good-fit-left p { font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--mid); margin-bottom: 16px; }
.fit-list { display: flex; flex-direction: column; gap: 2px; }
.fit-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px 24px; background: var(--white); border-left: 3px solid var(--teal-light); border-radius: 0 10px 10px 0; transition: transform .2s, border-left-color .2s; }
.fit-item:hover { transform: translateX(5px); border-left-color: var(--teal); }
.fit-check { width: 22px; height: 22px; border-radius: 50%; background: var(--teal-pale); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.fit-check svg { width: 11px; height: 11px; stroke: var(--teal); }
.fit-text { font-size: 16px; font-weight: 300; color: var(--mid); line-height: 1.5; }
.fit-text strong { font-weight: 500; color: var(--charcoal); }
.fit-note { margin-top: 28px; padding: 20px 24px; background: rgba(46,139,132,.08); border-left: 3px solid var(--teal); border-radius: 0 10px 10px 0; font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--mid); }

.services-cta { padding: 96px 0; background: var(--teal); text-align: center; overflow: hidden; position: relative; }
.services-cta::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(255,255,255,.06) 0,rgba(255,255,255,.06) 1px,transparent 0,transparent 50%); background-size: 18px 18px; }
.cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--ff-display); font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -.03em; color: #fff; margin-bottom: 16px; }
.cta-inner h2 em { font-style: normal; color: rgba(255,255,255,.75); -webkit-text-stroke: 0; }
.cta-inner p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 36px; }

/* ============================================================
   19. ABOUT PAGE
   ============================================================ */
.intro { padding: 96px 0; background: var(--white); }
.intro-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.intro-left { position: sticky; top: 100px; }
.intro-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 0 16px 16px 0; background: var(--cream); }
.intro-stat { margin-top: 24px; padding: 24px 28px; background: var(--teal); border-radius: 12px; }
.intro-stat-num { font-family: var(--ff-display); font-size: 48px; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.intro-stat-label { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.7); margin-top: 4px; }
.intro-right { padding-top: 8px; }
.intro-hed { font-family: var(--ff-display); font-size: clamp(28px,3.5vw,44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--charcoal); margin-bottom: 24px; }
.intro-hed em { font-style: normal; color: var(--teal); -webkit-text-stroke: 0; }
.intro-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--mid); margin-bottom: 16px; }
.intro-body strong { font-weight: 500; color: var(--charcoal); }

.stats-band { background: var(--teal); padding: 40px 52px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; text-align: center; max-width: 1200px; margin: 0 auto; }
.stat-item { padding: 8px; border-right: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--ff-display); font-size: clamp(28px,4vw,44px); font-weight: 800; letter-spacing: -.03em; color: #fff; line-height: 1; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 6px; }

.philosophy { padding: 96px 0; background: var(--white); }
.phil-hed { font-family: var(--ff-display); font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; color: var(--charcoal); margin-bottom: 56px; }
.phil-hed em { font-style: normal; color: var(--teal); -webkit-text-stroke: 0; }
.phil-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.pillar { padding: 40px 32px; background: var(--cream); border-left: 3px solid var(--teal-light); border-radius: 0 12px 12px 0; }
.pillar-num { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .2em; color: var(--teal); margin-bottom: 14px; }
.pillar-title { font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.pillar-body { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--mid); }

.values { padding: 96px 0; background: var(--charcoal); position: relative; overflow: hidden; }
.values-inner { display: flex; flex-direction: column; gap: 48px; }
.values-left { max-width: 640px; }
.values-hed { font-family: var(--ff-display); font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; color: #fff; margin-bottom: 20px; }
.values-hed em { font-style: normal; color: var(--teal-light); -webkit-text-stroke: 0; }
.values-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.55); }
.values-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.value-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: rgba(28,55,52,.92); border-left: 3px solid var(--teal-light); border-radius: 0 10px 10px 0; position: relative; z-index: 2; }
.value-icon { font-size: 24px; flex-shrink: 0; }
.value-title { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.value-desc { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.5); }

.team { padding: 96px 0; background: var(--cream); }
.team-header { text-align: center; margin-bottom: 56px; }
.team-hed { font-family: var(--ff-display); font-size: clamp(32px,5vw,60px); font-weight: 800; letter-spacing: -.03em; line-height: 1.0; color: var(--charcoal); margin-bottom: 16px; }
.team-hed em { font-style: normal; color: var(--teal); -webkit-text-stroke: 0; }
.team-sub { font-size: 15px; font-weight: 300; color: var(--mid); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding: 0 52px; }
.team-card { position: relative; border-radius: 12px; overflow: hidden; cursor: none; }
.team-card:hover .team-overlay { opacity: 1; }

.team-img-wrap { aspect-ratio: 3/4; background: var(--charcoal-2); border-radius: 12px 12px 0 0; overflow: hidden; }
.team-img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.team-img.placeholder { display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 32px; font-weight: 700; color: var(--muted); background: var(--charcoal); height: 100%; }
.team-overlay { position: absolute; inset: 0; background: rgba(28,55,52,.92); padding: 24px; display: flex; align-items: flex-start; overflow-y: auto; opacity: 0; transition: opacity .3s; scrollbar-width: thin; scrollbar-color: rgba(77,191,184,.5) transparent; }
.team-overlay::-webkit-scrollbar { width: 3px; }
.team-overlay::-webkit-scrollbar-track { background: transparent; }
.team-overlay::-webkit-scrollbar-thumb { background: rgba(77,191,184,.5); border-radius: 3px; }
.team-overlay::-webkit-scrollbar-thumb:hover { background: rgba(77,191,184,.8); }
.team-bio-text { font-size: 12px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.8); }
.team-info { padding: 12px 16px 14px; background: var(--white); border-radius: 0 0 12px 12px; display: flex; align-items: stretch; gap: 12px; }
.team-info::before { content: ''; display: block; width: 2px; background: var(--teal-light); border-radius: 1px; flex-shrink: 0; }
.team-info-text { display: flex; flex-direction: column; justify-content: center; }
.team-name { font-family: var(--ff-display); font-size: 14px; font-weight: 700; color: var(--charcoal); }
.team-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

.page-about .about-cta { padding: 96px 0; background: var(--teal); text-align: center; overflow: hidden; position: relative; }
.page-about .about-cta::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(255,255,255,.06) 0,rgba(255,255,255,.06) 1px,transparent 0,transparent 50%); background-size: 18px 18px; }
.page-about .about-cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.page-about .about-cta-inner h2 { font-family: var(--ff-display); font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -.03em; color: #fff; margin-bottom: 16px; }
.page-about .about-cta-inner h2 em { font-style: normal; color: #fff; -webkit-text-stroke: 0; }
.page-about .about-cta-inner h2 .cta-em { color: var(--teal-light); -webkit-text-stroke: 0; }
.page-about .about-cta-inner p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 36px; }

/* ============================================================
   20. CONTACT PAGE
   ============================================================ */
.contact-main { padding: 96px 0; background: var(--white); position: relative; overflow: hidden; }
.contact-main::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,var(--teal) 0,var(--teal) 1px,transparent 0,transparent 50%); background-size: 18px 18px; opacity: .03; pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 96px; align-items: start; position: relative; z-index: 1; }
/* Contact page: .contact-hed is on dark bg (.contact-left = charcoal) — keep white */
.contact-main .contact-hed { color: #fff; }
.contact-main .contact-hed em { font-style: normal; color: var(--teal-light); -webkit-text-stroke: 0; }
.contact-lede { font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.7); margin-bottom: 44px; }
.info-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 36px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 20px; background: var(--cream); border-left: 3px solid var(--teal-light); border-radius: 0 8px 8px 0; transition: transform .2s; }
.info-item:hover { transform: translateX(4px); }
.info-icon { font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.info-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 3px; }
.info-value { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.5; }
.info-value a { color: var(--teal); cursor: none; }
.social-row { display: flex; gap: 8px; }
.social-pill { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 9px 16px; border-radius: 100px; border: 1.5px solid rgba(46,139,132,.2); color: var(--muted); transition: all .2s; cursor: none; }
.social-pill:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.form-wrap { background: var(--white); }
.form-wrap form { display: flex; flex-direction: column; gap: 16px; }
.form-wrap .field { display: flex; flex-direction: column; gap: 7px; }
.form-wrap .field label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal); }
.form-wrap .field input, .form-wrap .field select, .form-wrap .field textarea { font-family: var(--ff-body); font-size: 15px; font-weight: 300; color: var(--charcoal); background: var(--cream); border: 1.5px solid transparent; border-radius: 0 8px 8px 0; border-left: 3px solid var(--teal-light); padding: 15px 20px; outline: none; width: 100%; transition: border-color .2s, background .2s; }
.form-wrap .field input:focus, .form-wrap .field select:focus, .form-wrap .field textarea:focus { background: #fff; border-color: rgba(46,139,132,.2); border-left-color: var(--teal); }
.form-wrap .field textarea { resize: none; min-height: 110px; line-height: 1.6; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.req { color: var(--teal); }
.form-divider { height: 1px; background: rgba(46,139,132,.1); margin: 4px 0; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 4px; }
.form-note { font-size: 12px; color: var(--muted); line-height: 1.6; max-width: 240px; }
.submit-btn { font-family: var(--ff-display); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 16px 36px; border-radius: 100px; background: var(--teal-light); color: var(--charcoal); border: 2px solid var(--teal); cursor: none; display: flex; align-items: center; gap: 10px; transition: background .2s, transform .2s, gap .2s; }
.submit-btn:hover { background: var(--teal-mid); transform: scale(1.03); gap: 14px; }
.form-success { display: none; padding: 48px 40px; background: var(--teal-pale); border-left: 3px solid var(--teal); border-radius: 0 14px 14px 0; }
.form-success.show { display: block; }
.form-success h3 { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--mid); line-height: 1.7; }
.map-section { background: var(--charcoal); }
.map-inner { position: relative; height: 420px; overflow: hidden; }
.map-embed { width: 100%; height: 100%; border: none; }
.map-overlay { position: absolute; top: 36px; left: 52px; background: var(--charcoal); padding: 24px 28px; border-left: 3px solid var(--teal-light); border-radius: 0 12px 12px 0; z-index: 10; }
.map-overlay-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 10px; }
.map-overlay-addr { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.75); margin-bottom: 14px; }
.map-overlay a { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-light); display: flex; align-items: center; gap: 6px; transition: gap .2s; cursor: none; }
.map-overlay a:hover { gap: 10px; }

/* ============================================================
   21. PORTFOLIO PAGE
   ============================================================ */
.filter-bar { padding: 32px 52px 0; background: var(--white); position: sticky; top: 72px; z-index: 50; border-bottom: 1px solid rgba(46,139,132,.08); }
.filter-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 20px; }
.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.filter-btn { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 8px 16px; border-radius: 100px; border: 1.5px solid rgba(46,139,132,.2); background: none; color: var(--muted); cursor: none; transition: all .2s; }
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: #fff; }
.filter-count { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.filter-count span { color: var(--teal); }
.portfolio-section { padding: 56px 52px 96px; background: var(--white); }
.grid-container { max-width: 1200px; margin: 0 auto; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.p-card { position: relative; overflow: hidden; border-radius: 12px; cursor: none; display: block; transition: transform .4s var(--ease); }
.p-card.hidden { display: none; }
.p-card:hover .p-img { transform: scale(1.05); }
.p-card:hover .p-overlay { opacity: 1; }
.p-card:hover .p-cta { transform: translateY(0); opacity: 1; }
.p-card.featured { grid-column: span 2; }
.p-card.featured { aspect-ratio: 16/9; }
.p-card:not(.featured) { aspect-ratio: 8/9; }
.p-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--cream); transition: transform .6s var(--ease), opacity 400ms; }
.p-img.lazyloaded { transition: transform .6s var(--ease), opacity 400ms; }
.p-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(28,55,52,.95) 0%,rgba(28,55,52,.4) 50%,transparent 100%); opacity: 0; transition: opacity .35s var(--ease); }
.p-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 24px; }
.p-sector { font-family: var(--ff-display); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 8px; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.p-card:hover .p-sector { opacity: 1; transform: translateY(0); }
.p-name { font-family: var(--ff-display); font-size: clamp(16px,2vw,22px); font-weight: 700; letter-spacing: -.01em; color: #fff; margin-bottom: 4px; opacity: 0; transform: translateY(8px); transition: opacity .3s .08s, transform .3s .08s; border-left: 2px solid var(--teal-light); padding-left: 10px; }
.p-card:hover .p-name { opacity: 1; transform: translateY(0); }
.p-card:hover .p-label-name { border-left-color: var(--teal-light); border-left-width: 3px; }
.p-location { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.6); opacity: 0; transform: translateY(6px); transition: opacity .3s .12s, transform .3s .12s; }
.p-card:hover .p-location { opacity: 1; transform: translateY(0); }
.p-cta { position: absolute; top: 20px; right: 20px; font-family: var(--ff-display); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 8px 14px; border-radius: 100px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); color: #fff; border: 1px solid rgba(255,255,255,.2); transform: translateY(-8px); opacity: 0; transition: transform .3s, opacity .3s; }
.p-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 20px 16px; background: linear-gradient(to top,rgba(28,55,52,.88) 0%,rgba(28,55,52,.5) 40%,transparent 100%); transition: opacity .3s; }
.p-card:hover .p-label { opacity: 0; }
.p-label-name { font-family: var(--ff-display); font-size: 13px; font-weight: 700; color: #fff; border-left: 2px solid rgba(77,191,184,.45); padding-left: 10px; transition: border-left-color .25s var(--ease), border-left-width .25s var(--ease); }
.p-label-type { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 2px; }
.no-results { display: none; grid-column: 1/-1; text-align: center; padding: 80px 20px; }
.no-results.show { display: block; }
.portfolio-cta { background: var(--charcoal); padding: 80px 52px; text-align: center; position: relative; overflow: hidden; }
.portfolio-cta::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(77,191,184,.04) 0,rgba(77,191,184,.04) 1px,transparent 0,transparent 50%); background-size: 18px 18px; }
.portfolio-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.portfolio-cta h2 { font-family: var(--ff-display); font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -.03em; color: #fff; margin-bottom: 16px; }
.portfolio-cta h2 em { font-style: normal; color: var(--teal-light); -webkit-text-stroke: 0; }
.portfolio-cta p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 36px; }

/* ============================================================
   22. PROJECT PAGE
   ============================================================ */
.project-hero { height: 85vh; min-height: 560px; position: relative; overflow: hidden; }
.project-hero .hero-img { opacity: 1; }
.project-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(28,55,52,.88) 0%,rgba(28,55,52,.3) 35%,transparent 65%); }
.project-hero .hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 64px 52px; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a, .breadcrumb span { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); cursor: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }
.breadcrumb .current { color: var(--teal-light); }
.project-title { font-family: var(--ff-display); font-size: clamp(40px,6vw,80px); font-weight: 800; letter-spacing: -.03em; line-height: .95; color: #fff; margin-bottom: 20px; }
.project-meta-row { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.meta-tag { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.meta-tag.sector { color: var(--teal-light); }
.meta-tag.year, .meta-tag.location { color: rgba(255,255,255,.5); }
.meta-sep { color: rgba(255,255,255,.2); }
.stats-bar { background: var(--teal); padding: 32px 52px 56px;  }
.stats-bar .stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; text-align: center; }
.stats-bar .stat-item { padding: 8px; border-right: 1px solid rgba(255,255,255,.15); }
.stats-bar .stat-item:last-child { border-right: none; }
.stats-bar .stat-num { font-family: var(--ff-display); font-size: clamp(28px,4vw,44px); font-weight: 800; letter-spacing: -.03em; color: #fff; line-height: 1; }
.stats-bar .stat-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 6px; }
.project-body { padding: 80px 0; background: var(--white); }
.body-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
.body-left { position: sticky; top: 100px; }
.detail-block { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(46,139,132,.1); }
.detail-block:last-child { border-bottom: none; margin-bottom: 0; }
.detail-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.detail-value { font-size: 15px; font-weight: 300; color: var(--charcoal); line-height: 1.5; }
.detail-value strong { font-weight: 500; }
.detail-link { color: var(--teal); text-decoration: none; border-bottom: 1px solid rgba(46,139,132,.3); transition: border-color .2s; cursor: none; }
.detail-link:hover { border-color: var(--teal); }
.services-used { margin-top: 40px; }
.services-title { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.service-tag { font-size: 13px; font-weight: 300; color: var(--mid); padding: 10px 16px; background: var(--cream); border-left: 3px solid var(--teal-light); border-radius: 0 6px 6px 0; margin-bottom: 2px; display: block; }
.service-tags { display: flex; flex-direction: column; gap: 2px; }
.project-desc { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--mid); }
.project-desc p + p { margin-top: 16px; }
.project-desc strong { font-weight: 500; color: var(--charcoal); }
.gallery-section { padding: 0 0 80px; background: var(--white); }
.gallery-grid { display: flex; flex-direction: column; gap: 20px; }
.gallery-row-main, .gallery-row-two, .gallery-row-three { display: flex; flex-direction: column; gap: 20px; }
.gallery-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; display: block; }
.gallery-img-tall { aspect-ratio: 16/9; }
.gallery-img-sq   { aspect-ratio: 16/9; }
/* Body image pair */
.body-right { display: flex; flex-direction: column; gap: 0; }
/* Editorial image sequence */
.img-sequence { padding: 48px 0 80px; }
.img-seq-item { width: 100%; margin-bottom: 16px; }
.img-seq-item:last-child { margin-bottom: 0; }
.img-seq-item img { display: block; border-radius: 8px; }
/* Landscape/square sequence images — full width */
.img-seq-item--landscape img,
.img-seq-item--square    img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
/* Portrait sequence images — natural size, never stretched */
.img-seq-item--portrait  img { width: auto; max-width: 72%; max-height: 85vh; margin: 0 auto; }
.outcomes-section { padding: 80px 0; background: var(--charcoal); overflow: hidden; position: relative; }
.outcomes-section::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(77,191,184,.04) 0,rgba(77,191,184,.04) 1px,transparent 0,transparent 50%); background-size: 18px 18px; }
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; position: relative; z-index: 1; }
.outcome-card { padding: 40px; background: rgba(255,255,255,.04); border-left: 3px solid var(--teal-light); border-radius: 0 12px 12px 0; }
.outcome-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 16px; }
.outcome-title { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: -.01em; }
.outcome-body { font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.55); }
/* Logo marquee */
.logo-marquee-wrap { overflow: hidden; padding: clamp(28px,3vw,40px) 0; background: var(--white); border-top: 1px solid rgba(44,58,56,.06); border-bottom: 1px solid rgba(44,58,56,.06); }
.logo-marquee-header { margin-bottom: 16px; }
.logo-marquee { position: relative; }
.logo-marquee::before,
.logo-marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.logo-marquee::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.logo-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: marquee 30s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.logo-item { flex-shrink: 0; transition: opacity .2s; }
.logo-item img { height: 60px; width: auto; display: block; filter: brightness(0) opacity(.35); transition: filter .25s; }
.logo-item img[src*="newmont"] { height: 36px !important; }
.logo-item img[src*="CBRE"] { height: 32px !important; }
.logo-item img[src*="Oxford"] { height: 48px !important; }
.logo-item:hover img { filter: brightness(0) opacity(.75); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Related projects */
.related-projects { padding: 96px 0; background: var(--cream); }
.related-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.related-all { font-size: 12px; border-color: rgba(44,58,56,.3); color: var(--charcoal); }
.related-all:hover { border-color: var(--teal); color: var(--teal); }
.good-fit-left .pill-ghost { border-color: rgba(44,58,56,.3); color: var(--charcoal); }
.good-fit-left .pill-ghost:hover { border-color: var(--teal); color: var(--teal); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-grid .p-card { aspect-ratio: 8/9; border-radius: 12px; }


/* ── CONTACT FORM 7 ── */
/* Labels hidden — placeholders are sufficient */
.wpcf7 .field label,
.wpcf7 .field > label { display: none; }
/* Remove gap caused by CF7 p wrapper */
.wpcf7 .field > p { margin: 0; }

.wpcf7 { width: 100%; }
.wpcf7 fieldset.hidden-fields-container { display: none; }
.wpcf7 fieldset { border: none; margin: 0; padding: 0; }
.wpcf7 form > p { display: none; } /* hide CF7's auto-generated p wrappers */
.form-footer p { display: flex !important; } /* but keep our form-footer intact */
.wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-select {
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    border: 1.5px solid transparent;
    border-radius: 0 8px 8px 0;
    border-left: 3px solid var(--teal-light);
    padding: 15px 20px;
    outline: none;
    width: 100%;
    display: block;
    transition: border-color .2s, background .2s;
    box-sizing: border-box;
    line-height: 1.5;
    font-size: 15px;
}
.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-email:focus,
.wpcf7-form-control.wpcf7-tel:focus,
.wpcf7-form-control.wpcf7-textarea:focus,
.wpcf7-form-control.wpcf7-select:focus {
    background: #fff;
    border-color: rgba(46,139,132,.2);
    border-left-color: var(--teal);
}
.wpcf7-form-control.wpcf7-textarea { resize: none; min-height: 110px; line-height: 1.6; }
.wpcf7-form-control.wpcf7-select { appearance: none; cursor: pointer; }
.wpcf7-form-control.wpcf7-submit {
    font-family: var(--ff-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 100px;
    background: var(--teal-light);
    color: var(--charcoal);
    border: 2px solid var(--teal);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s, transform .2s;
    width: 100%;
    justify-content: center;
}
.wpcf7-form-control.wpcf7-submit:hover { background: var(--teal-mid); transform: scale(1.02); }
.wpcf7-not-valid-tip { font-size: 12px; color: #c0392b; margin-top: 4px; display: block; }
.wpcf7-form-control.wpcf7-not-valid { border-left-color: #c0392b; }
.wpcf7-response-output { font-size: 13px; margin-top: 16px; padding: 12px 16px; border-radius: 0 8px 8px 0; border-left: 3px solid var(--teal); background: var(--teal-pale); color: var(--charcoal); display: none; }
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.sent .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output { display: block; }
.wpcf7-form.invalid .wpcf7-response-output { border-left-color: #c0392b; background: #fdf2f2; }
.wpcf7-form.sent .wpcf7-response-output { border-left-color: var(--teal); background: var(--teal-pale); }
/* Constrain CF7 form width inside panels */
.contact-right .wpcf7,
.form-wrap .wpcf7 { width: 100%; max-width: 100%; position: relative; z-index: 2; }

/* Contact right panel: dark bg needs light field treatment */
.contact-right .wpcf7-form-control.wpcf7-text,
.contact-right .wpcf7-form-control.wpcf7-email,
.contact-right .wpcf7-form-control.wpcf7-tel,
.contact-right .wpcf7-form-control.wpcf7-textarea,
.contact-right .wpcf7-form-control.wpcf7-select { background: var(--white); }

/* ============================================================
   PROCESS TIMELINE — HOW WE WORK
   ============================================================ */
.process-timeline { padding: 96px 0; background: var(--charcoal); }
.process-header { margin-bottom: 48px; }
.process-header h2 { font-family: var(--ff-display); font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.1; margin-top: 12px; }
.process-header h2 em { font-style: normal; color: var(--teal-light); }
.timeline-nav { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; margin-bottom: 3px; }
.tl-nav-item { padding: 20px 20px 0; background: rgba(255,255,255,.05); cursor: none; transition: background .25s; position: relative; overflow: hidden; }
.tl-nav-item:first-child { border-radius: 10px 0 0 0; }
.tl-nav-item:last-child { border-radius: 0 10px 0 0; }
.tl-nav-item.active { background: rgba(77,191,184,.12); }
.tl-nav-item:hover:not(.active) { background: rgba(255,255,255,.08); }
.tl-nav-num { font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--teal-light); margin-bottom: 4px; }
.tl-nav-title { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -.01em; margin-bottom: 2px; }
.tl-nav-tag { font-size: 11px; color: rgba(255,255,255,.35); font-weight: 300; padding-bottom: 16px; }
.tl-bar-track { height: 2px; background: rgba(255,255,255,.06); }
.tl-bar-fill { height: 100%; background: var(--teal-light); width: 0; transition: none; }
.tl-bar-fill.animate { transition: width .45s cubic-bezier(.4,0,.2,1); width: 100%; }
.timeline-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.tl-col { background: rgba(255,255,255,.04); padding: 28px 24px 36px; transition: background .25s; }
.tl-col:first-child { border-radius: 0 0 0 10px; }
.tl-col:last-child { border-radius: 0 0 10px 0; }
.tl-col.active { background: rgba(77,191,184,.07); }
.tl-del-label { font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 16px; }
.tl-item { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 300; line-height: 1.5; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05); display: flex; align-items: flex-start; gap: 10px; }
.tl-item:last-child { border-bottom: none; }
.tl-item::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--teal-light); flex-shrink: 0; margin-top: 5px; opacity: .3; transition: opacity .2s; }
.tl-col.active .tl-item { color: rgba(255,255,255,.7); }
.tl-col.active .tl-item::before { opacity: 1; }
.tl-item.stagger-hide { opacity: 0; transform: translateY(10px); }
.tl-item.stagger-show { transition: opacity .3s ease, transform .3s ease; opacity: 1; transform: translateY(0); }
/* Process light variant — cream background with texture */
.process-light { background: var(--white); position: relative; }
.process-light::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(46,139,132,.035) 0,rgba(46,139,132,.035) 1px,transparent 0,transparent 50%); background-size: 18px 18px; pointer-events: none; }
.process-light .process-header h2 { color: var(--charcoal); }
.process-light .process-header h2 em { color: var(--teal); }
.process-light .process-header .section-label { color: var(--teal); }
.process-light .process-header .section-label::before { background: var(--teal); }
.process-light .tl-nav-item { background: rgba(44,58,56,.07); }
.process-light .tl-nav-item.active { background: rgba(46,139,132,.15); }
.process-light .tl-nav-item:hover:not(.active) { background: rgba(44,58,56,.1); }
.process-light .tl-nav-num { color: var(--teal); }
.process-light .tl-nav-title { color: var(--charcoal); }
.process-light .tl-nav-tag { color: rgba(44,58,56,.45); }
.process-light .tl-bar-track { background: rgba(44,58,56,.08); }
.process-light .tl-bar-fill { background: var(--teal); }
.process-light .tl-col { background: rgba(44,58,56,.06); }
.process-light .tl-col.active { background: rgba(46,139,132,.12); }
.process-light .tl-del-label { color: rgba(44,58,56,.35); }
.process-light .tl-item { color: rgba(44,58,56,.5); border-bottom-color: rgba(44,58,56,.07); }
.process-light .tl-item::before { background: var(--teal); }
.process-light .tl-col.active .tl-item { color: rgba(44,58,56,.85); }

/* ============================================================
   SERVICES — DIFFERENTIATORS (unified dark section)
   ============================================================ */
.services-differentiators { background: var(--white); overflow: hidden; position: relative; padding: 80px 0; }
.diff-label { color: var(--teal); }
.diff-label::before { background: var(--teal); }
.diff-hed { font-family: var(--ff-display); font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: var(--charcoal); letter-spacing: -.03em; line-height: 1.1; margin: 12px 0 16px; }
.diff-hed em { font-style: normal; color: var(--teal); }
.diff-intro { font-size: 17px; font-weight: 300; color: var(--mid); line-height: 1.8; max-width: 620px; margin-bottom: 56px; }
.diff-grid { display: flex; flex-direction: column; gap: 48px; }
.diff-panel { display: grid; grid-template-columns: 70% 30%; gap: 48px; align-items: center; }
.diff-panel .diff-panel-text { order: 2; }
.diff-panel .diff-panel-media { order: 1; }
.diff-panel-reverse { grid-template-columns: 30% 70%; }
.diff-panel-reverse .diff-panel-text { order: 1; }
.diff-panel-reverse .diff-panel-media { order: 2; }
.diff-panel-media { position: relative; aspect-ratio: 3/2; overflow: hidden; border-radius: 10px; }
.diff-panel-text { display: flex; flex-direction: column; justify-content: center; }
.diff-panel-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.diff-panel-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--teal); }
.diff-panel-body { font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.85; margin-bottom: 28px; }
.diff-panel-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); border: 1px solid rgba(46,139,132,.3); padding: 8px 18px; border-radius: 20px; margin-bottom: 20px; }
.diff-panel-clients { font-size: 13px; color: rgba(44,58,56,.35); letter-spacing: .04em; margin-top: 16px; }
.diff-divider { height: 1px; background: rgba(44,58,56,.08); }
.render-carousel { position: absolute; inset: 0; }
.render-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s var(--ease); pointer-events: none; }
.render-slide.active { pointer-events: all; opacity: 1; }
.render-slide img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: none; }
.render-slide-tag { position: absolute; top: 14px; left: 14px; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); background: rgba(28,55,52,.85); padding: 5px 10px; border-radius: 4px; }
.graphics-img-wrap { display: grid; grid-template-columns: 3fr 2fr; gap: 3px; position: absolute; inset: 0; }
.graphics-img-main { width: 100%; height: 100%; object-fit: cover; display: block; }
.graphics-img-secondary { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof-strip { background: var(--charcoal); padding: 80px 0; position: relative; overflow: hidden; }
.proof-strip::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(77,191,184,.04) 0,rgba(77,191,184,.04) 1px,transparent 0,transparent 50%); background-size: 18px 18px; pointer-events: none; }
.proof-strip .container { position: relative; z-index: 1; }
.proof-grid { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr; align-items: start; padding: 0 52px; }
.proof-divider { background: rgba(255,255,255,.08); min-height: 80px; }
.proof-item { padding: 0 32px; }
.proof-item:first-child { padding-left: 0; }
.proof-num { font-family: var(--ff-display); font-size: 40px; font-weight: 800; color: var(--teal-light); line-height: 1; margin-bottom: 6px; }
.proof-stat { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.proof-line { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.65; }
.proof-line em { color: var(--teal-light); font-style: normal; }
.proof-quote { padding: 48px 52px 0; border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; }
.proof-quote blockquote { font-family: var(--ff-display); font-size: clamp(18px,2.5vw,32px); font-weight: 700; letter-spacing: -.02em; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.proof-quote blockquote em { font-style: normal; color: var(--teal-light); -webkit-text-stroke: 0; }
.proof-quote cite { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-light); font-style: normal; }

/* ============================================================
   SERVICES — 3D RENDER SECTION
   ============================================================ */
.services-render { padding: 96px 0; background: var(--charcoal); border-top: 1px solid rgba(255,255,255,.06); overflow: hidden; }
.services-render-grid { display: grid; grid-template-columns: 48% 52%; align-items: center; }
.services-render-text { padding: 0 52px; }
.services-render-text .section-label { color: var(--teal-light); }
.services-render-text .section-label::before { background: var(--teal-light); }
.services-render-text h2 { font-family: var(--ff-display); font-size: clamp(24px,3vw,40px); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px; }
.services-render-text h2 em { font-style: normal; color: var(--teal-light); }
.services-render-text p { font-size: 14px; color: rgba(255,255,255,.6); font-weight: 300; line-height: 1.8; margin-bottom: 24px; }
.services-render-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-light); border: 1px solid rgba(77,191,184,.3); padding: 8px 18px; border-radius: 20px; margin-bottom: 28px; }
.render-controls { display: flex; align-items: center; gap: 12px; }
.render-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(44,58,56,.2); background: transparent; color: rgba(44,58,56,.6); font-size: 14px; cursor: none; display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.render-btn:hover { border-color: var(--teal); color: var(--teal); }
.render-dots { display: flex; gap: 6px; }
.render-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(44,58,56,.2); cursor: none; transition: all .25s; }
.render-dot.active { background: var(--teal); width: 20px; border-radius: 3px; }
.render-counter { font-size: 11px; color: rgba(44,58,56,.35); margin-left: auto; letter-spacing: .05em; }
.services-render-imgs { position: relative; padding: 48px 0 48px 8px; }
.render-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.04); font-size: 12px; color: rgba(255,255,255,.25); padding: 20px; text-align: center; }
.render-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(44,58,56,.08); }
.render-progress-fill { height: 100%; background: var(--teal); width: 25%; transition: width 3.5s linear; }
.render-ortho { display: none; }

/* ============================================================
   SERVICES — GRAPHICS & SIGNAGE SECTION
   ============================================================ */
.services-graphics { padding: 96px 0; background: var(--cream); overflow: hidden; }
.services-graphics-grid { display: grid; grid-template-columns: 52% 48%; align-items: center; }
.services-graphics-text { padding: 0 52px; }
.services-graphics-text h2 { font-family: var(--ff-display); font-size: clamp(24px,3vw,40px); font-weight: 800; color: var(--charcoal); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px; }
.services-graphics-text h2 em { font-style: normal; color: var(--teal); }
.services-graphics-text p { font-size: 14px; color: rgba(44,58,56,.6); font-weight: 300; line-height: 1.8; margin-bottom: 24px; }
.services-graphics-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); border: 1px solid rgba(46,139,132,.3); padding: 8px 18px; border-radius: 20px; margin-bottom: 16px; }
.services-graphics-clients { font-size: 11px; color: rgba(44,58,56,.4); font-weight: 300; letter-spacing: .05em; }
.graphics-img-placeholder { background: var(--charcoal); display: flex; align-items: center; justify-content: center; font-size: 11px; color: rgba(255,255,255,.3); border-radius: 10px; }


/* ============================================================
   SERVICES — PROCESS ACCORDION
   ============================================================ */
.process-accord { padding: 96px 0; background: var(--white); position: relative; }
.process-accord::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(46,139,132,.035) 0,rgba(46,139,132,.035) 1px,transparent 0,transparent 50%); background-size: 18px 18px; pointer-events: none; }
.process-accord .container { position: relative; z-index: 1; }
.process-accord .section-label { color: var(--teal); }
.process-accord .section-label::before { background: var(--teal); }
.process-accord-hed { font-family: var(--ff-display); font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; color: var(--charcoal); margin-bottom: 8px; }
.process-accord-hed em { font-style: normal; color: var(--teal); }
.process-accord-sub { font-size: 15px; font-weight: 300; color: var(--muted); margin-bottom: 56px; letter-spacing: -.01em; }
.process-accord-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.process-accord-left { position: sticky; top: 100px; }
.process-accord-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--mid); margin-bottom: 28px; }
.process-accord-tagline { font-family: var(--ff-display); font-size: clamp(22px,2.5vw,32px); font-weight: 800; letter-spacing: -.03em; color: var(--teal); border-left: 3px solid var(--teal-light); padding-left: 16px; line-height: 1.2; margin-top: 40px; }
.process-accord-right { display: flex; flex-direction: column; gap: 3px; }
.pacc-item { background: rgba(26,46,44,.88); border-radius: 0; overflow: hidden; transition: background .2s, border-left-color .2s; border-left: 3px solid transparent; }
.pacc-item:hover { background: rgba(26,46,44,.9); border-left-color: var(--teal-light); }
.pacc-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; gap: 16px; background: none; border: none; cursor: none; text-align: left; transition: background .2s; }
.pacc-header:focus { outline: none; }
.pacc-header-left { display: flex; align-items: baseline; gap: 14px; flex-shrink: 0; }
.pacc-num { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .18em; color: var(--teal-light); }
.pacc-title { font-family: var(--ff-display); font-size: 16px; font-weight: 800; letter-spacing: -.01em; color: #fff; }
.pacc-tagline { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.5); flex: 1; text-align: right; padding-right: 12px; }
.pacc-chevron { width: 18px; height: 18px; flex-shrink: 0; position: relative; }
.pacc-chevron::before, .pacc-chevron::after { content: ''; position: absolute; background: var(--teal-light); border-radius: 2px; transition: transform .25s var(--ease); }
.pacc-chevron::before { width: 10px; height: 2px; top: 8px; left: 4px; transform: rotate(45deg) translateX(-2px); }
.pacc-chevron::after { width: 10px; height: 2px; top: 8px; left: 9px; transform: rotate(-45deg) translateX(2px); }
.pacc-item.open .pacc-chevron::before { transform: rotate(-45deg) translateX(-2px); }
.pacc-item.open .pacc-chevron::after { transform: rotate(45deg) translateX(2px); }
.pacc-item.open { border-left-color: var(--teal-light); background: rgba(26,46,44,.92); }
.pacc-body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.pacc-body-inner { padding: 0 20px 18px; border-top: 1px solid rgba(255,255,255,.08); }
.pacc-del-label { font-family: var(--ff-display); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.2); margin: 14px 0 10px; }
.pacc-items { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.pacc-items li { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.6); padding-left: 14px; position: relative; line-height: 1.5; }
.pacc-items li::before { content: '—'; position: absolute; left: 0; color: var(--teal-light); font-size: 10px; top: 1px; }
@keyframes pacc-pulse { 0%, 100% { background: rgba(26,46,44,.75); } 50% { background: rgba(26,46,44,.95); border-left-color: var(--teal-light); } }
.pacc-pulse { animation: pacc-pulse 1s ease-in-out 2; }


.process-accord:has(.process-img-overlay) { background-attachment: fixed; }
.process-accord .process-img-overlay { background: rgba(26,46,44,.82); }
.process-accord:has(.process-img-overlay) .process-accord-hed { color: #fff; }
.process-accord:has(.process-img-overlay) .process-accord-sub { color: rgba(255,255,255,.6); }
.process-accord:has(.process-img-overlay) .process-accord-body { color: rgba(255,255,255,.75); }
.process-accord:has(.process-img-overlay) .process-accord-tagline { color: var(--teal-light); border-left-color: var(--teal-light); }
.process-accord:has(.process-img-overlay) .section-label { color: var(--teal-light); }
.process-accord:has(.process-img-overlay) .section-label::before { background: var(--teal-light); }
.process-accord:has(.process-img-overlay) .pacc-item:hover { background: rgba(46,139,132,.2); }
.process-accord:has(.process-img-overlay) .pacc-del-label { color: rgba(255,255,255,.35); }
.process-accord:has(.process-img-overlay) .pacc-items li { color: rgba(255,255,255,.75); }
@keyframes pacc-pulse-dark { 0%, 100% { background: rgba(26,46,44,.75); } 50% { background: rgba(46,139,132,.2); border-left-color: var(--teal-light); } }
.process-accord:has(.process-img-overlay) .pacc-pulse { animation-name: pacc-pulse-dark; }


/* ============================================================
   ABOUT — STUDIO STORY + TEAM ETHOS
   ============================================================ */

.studio-story:has(.studio-story-overlay) .studio-story-hed { color: #fff; }
.studio-story:has(.studio-story-overlay) .studio-story-hed em { color: var(--teal-light); }
.studio-story:has(.studio-story-overlay) .studio-story-body { color: rgba(255,255,255,.75); }
.studio-story:has(.studio-story-overlay) .section-label { color: var(--teal-light); }
.studio-story:has(.studio-story-overlay) .section-label::before { background: var(--teal-light); }
.studio-story-overlay { position: absolute; inset: 0; background: rgba(26,46,44,.82); z-index: 0; pointer-events: none; }
.studio-story { padding: clamp(80px,10vw,120px) 0; background: var(--cream); position: relative; }
.studio-story .container { position: relative; z-index: 1; }
/* studio-story: subgrid — left col spans 2 rows, right col aligns to body copy row */
.studio-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 80px;
  align-items: start;
}
.studio-story-left {
  grid-column: 1;
  grid-row: 1 / 3;
  display: grid;
  grid-template-rows: subgrid;
}
.studio-story-heading { padding-bottom: 40px; }
.studio-story-body-group { align-self: start; }
.studio-story-right {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}
.studio-story-hed { font-family: var(--ff-display); font-size: clamp(24px,3vw,38px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--charcoal); margin-top: 12px; margin-bottom: 0; }
.studio-story-hed em { font-style: normal; color: var(--teal); }
.studio-story-body { font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--mid); margin-bottom: 20px; }
.studio-story-body:last-child { margin-bottom: 0; }


/* ============================================================
   22b. 404 PAGE
   ============================================================ */
.page-hero-404 { min-height: 80vh; align-items: center; justify-content: flex-start; }
.error-404-num {
  font-family: var(--ff-display);
  font-size: clamp(160px,22vw,280px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(77,191,184,.25);
  position: absolute;
  top: 50%;
  right: clamp(24px,6vw,80px);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.error-404-nav { padding: clamp(64px,8vw,96px) 0; background: var(--cream); }
.error-404-nav-inner { max-width: 860px; }
.error-404-nav-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 40px; display: flex; align-items: center; gap: 12px; }
.error-404-nav-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--muted); }
.error-404-nav-links { display: flex; flex-direction: column; }
.error-404-link {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  align-items: center;
  gap: 0 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(46,139,132,.12);
  text-decoration: none;
  transition: background .2s;
  cursor: none;
}
.error-404-link:first-child { border-top: 1px solid rgba(46,139,132,.12); }
.error-404-link:hover .error-404-link-title { color: var(--teal); }
.error-404-link:hover .error-404-link-arrow { transform: translate(3px,-3px); color: var(--teal); }
.error-404-link-num { font-family: var(--ff-display); font-size: 11px; font-weight: 700; letter-spacing: .15em; color: var(--teal); }
.error-404-link-title { font-family: var(--ff-display); font-size: clamp(18px,2vw,24px); font-weight: 700; letter-spacing: -.02em; color: var(--charcoal); transition: color .2s; }
.error-404-link-desc { font-size: 13px; font-weight: 300; color: var(--mid); }
.error-404-link-arrow { font-size: 20px; color: var(--muted); transition: transform .2s, color .2s; }


/* ============================================================
   CAREERS PAGE
   ============================================================ */
.page-hero-careers { min-height: 65vh; align-items: flex-end; }

.careers-intro { padding: clamp(80px,10vw,120px) 0; background: var(--white); }
.careers-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.careers-hed { font-family: var(--ff-display); font-size: clamp(24px,3vw,38px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--charcoal); margin-top: 12px; }
.careers-body { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--mid); margin-bottom: 20px; }
.careers-body:last-child { margin-bottom: 0; }
.careers-body em { font-style: italic; color: var(--teal); }

.careers-values { padding: clamp(64px,8vw,96px) 0; background: var(--charcoal); position: relative; overflow: hidden; }
.careers-values::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(77,191,184,.04) 0,rgba(77,191,184,.04) 1px,transparent 0,transparent 50%); background-size: 18px 18px; }
.careers-values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; position: relative; z-index: 1; }
.careers-value-card { padding: 40px 32px; background: rgba(255,255,255,.04); border-left: 3px solid transparent; transition: background .3s, border-color .3s; }
.careers-value-card:hover { background: rgba(77,191,184,.08); border-left-color: var(--teal-light); }
.careers-value-num { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .2em; color: var(--teal-light); margin-bottom: 16px; }
.careers-value-title { font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: -.01em; }
.careers-value-body { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.55); }

.careers-looking { padding: clamp(80px,10vw,120px) 0; background: var(--cream); }
.careers-looking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.careers-looking-hed { font-family: var(--ff-display); font-size: clamp(24px,3vw,38px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--charcoal); margin-top: 12px; margin-bottom: 24px; }
.careers-looking-hed em { font-style: normal; color: var(--teal); }
.careers-looking-body { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--mid); }
.careers-fit-list { display: flex; flex-direction: column; gap: 2px; }
.careers-fit-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 20px; background: var(--white); border-left: 3px solid var(--teal-light); border-radius: 0 8px 8px 0; transition: transform .2s; font-size: 15px; font-weight: 300; color: var(--mid); }
.careers-fit-item:hover { transform: translateX(4px); }
.careers-fit-check { width: 22px; height: 22px; border-radius: 50%; background: var(--teal-pale); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; color: var(--teal); }
.careers-fit-check svg { width: 12px; height: 12px; }

.careers-openings { padding: clamp(80px,10vw,120px) 0; background: var(--white); }
.careers-no-openings { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.careers-no-openings-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.careers-no-openings-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--teal); }
.careers-no-openings-hed { font-family: var(--ff-display); font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; color: var(--charcoal); margin-bottom: 20px; }
.careers-no-openings-hed em { font-style: normal; color: var(--teal); }
.careers-no-openings-body { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--mid); margin-bottom: 36px; max-width: 520px; }
.careers-no-openings-aside { display: flex; flex-direction: column; gap: 2px; min-width: 200px; }
.careers-aside-block { padding: 24px 28px; background: var(--cream); border-left: 3px solid var(--teal-light); border-radius: 0 8px 8px 0; }
.careers-aside-num { font-family: var(--ff-display); font-size: 36px; font-weight: 800; letter-spacing: -.03em; color: var(--teal); line-height: 1; margin-bottom: 4px; }
.careers-aside-label { font-size: 11px; font-weight: 300; color: var(--muted); letter-spacing: .05em; }
.careers-form-wrap { max-width: 680px; margin: 0 auto; }
.careers-openings-hed { font-family: var(--ff-display); font-size: clamp(24px,3vw,38px); font-weight: 800; letter-spacing: -.03em; color: var(--charcoal); margin-top: 12px; margin-bottom: 16px; }
.careers-openings-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--mid); margin-bottom: 40px; }
.careers-form .wpcf7 { width: 100%; }

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.page-hero-privacy { min-height: 40vh; }
.privacy-body { padding: clamp(64px,8vw,96px) 0; background: var(--white); }
.privacy-inner { display: grid; grid-template-columns: 220px 1fr; gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto; }
.privacy-updated { font-size: 12px; color: var(--muted); margin-bottom: 48px; font-weight: 300; letter-spacing: .04em; }
.privacy-nav { position: sticky; top: 120px; }
.privacy-nav-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.privacy-nav nav { display: flex; flex-direction: column; gap: 2px; }
.privacy-nav nav a { font-size: 13px; font-weight: 300; color: var(--mid); padding: 8px 12px; border-left: 2px solid rgba(46,139,132,.12); transition: color .2s, border-color .2s; cursor: none; }
.privacy-nav nav a:hover { color: var(--teal); border-left-color: var(--teal); }
.privacy-content { max-width: 680px; }
.privacy-section { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(46,139,132,.1); }
.privacy-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.privacy-section h2 { font-family: var(--ff-display); font-size: clamp(20px,2.5vw,28px); font-weight: 800; letter-spacing: -.02em; color: var(--charcoal); margin-bottom: 20px; }
.privacy-section h3 { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; margin-top: 24px; }
.privacy-section p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--mid); margin-bottom: 16px; }
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; padding: 0; }
.privacy-section ul li { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--mid); padding-left: 20px; position: relative; }
.privacy-section ul li::before { content: '—'; position: absolute; left: 0; color: var(--teal-light); font-size: 11px; top: 3px; }
.privacy-section a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; cursor: none; }
.privacy-section a:hover { color: var(--teal-dark); }
.privacy-contact-block { background: var(--cream); border-left: 3px solid var(--teal-light); border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 20px 0; display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.6; }
.privacy-contact-block strong { color: var(--charcoal); font-weight: 600; }


/* ============================================================
   CAREERS — PERKS SECTION
   ============================================================ */
.careers-perks { padding: clamp(80px,10vw,120px) 0; background: var(--white); }
.careers-perks-hed { font-family: var(--ff-display); font-size: clamp(24px,3vw,38px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--charcoal); margin-top: 12px; margin-bottom: 48px; }
.careers-perks-hed em { font-style: normal; color: var(--teal); }
.careers-perks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.careers-perk { padding: 32px 28px; background: var(--cream); border-left: 3px solid transparent; transition: border-color .2s, background .2s; }
.careers-perk:hover { border-left-color: var(--teal-light); background: var(--teal-pale); }
.careers-perk-num { font-family: var(--ff-display); font-size: clamp(48px,6vw,72px); font-weight: 800; letter-spacing: -.03em; color: var(--teal-light); margin-bottom: 16px; line-height: 1; }
.careers-perk-title { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; letter-spacing: -.01em; }
.careers-perk-body { font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--mid); }

/* Hero fade-in */
.hero-img-fade { animation: hero-fade-in .8s ease forwards; }
@keyframes hero-fade-in { from { opacity: 0; } to { opacity: .22; } }

/* ============================================================
   23. RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  nav { padding: 18px 28px; }
  nav.scrolled { padding: 14px 28px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .about-inner { gap: 40px; padding: 0 28px; }
  .about-quote-block { width: clamp(180px,22vw,260px); }
  .about-quote-text { font-size: clamp(24px,4vw,44px); }
  /* Proof strip */
  .proof-grid { grid-template-columns: 1fr 1px 1fr; padding: 0 28px; }
  .proof-line { font-size: 13px; }
  /* Services differentiators */
  .diff-panel,
  .diff-panel-reverse { grid-template-columns: 1fr; gap: 32px; }
  .diff-panel .diff-panel-text,
  .diff-panel .diff-panel-media,
  .diff-panel-reverse .diff-panel-text,
  .diff-panel-reverse .diff-panel-media { order: unset; }
  .diff-panel-media { aspect-ratio: 16/9; }
  .services-render-grid { grid-template-columns: 1fr; }
  .services-render-text { padding: 40px 28px; }
  .bento { grid-template-columns: repeat(2,1fr); }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5 { grid-column: span 1; }
  .projects-mosaic { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .pc-1 { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .pc-2,.pc-3,.pc-4 { grid-column: span 1; aspect-ratio: 4/3; }
  body.home .steps { grid-template-columns: repeat(2,1fr); }
  .clients-row { grid-template-columns: repeat(3,1fr); }
  .contact { background: var(--charcoal); }
  .contact-inner { grid-template-columns: 1fr; min-height: auto; }
  .contact-left { padding: 48px 28px; }
  .contact-right { padding: 48px 28px; }
  .audience-grid { grid-template-columns: 1fr; }
  .process-phases { grid-template-columns: repeat(2,1fr); }
  .process-header { padding: 0 28px; }
  .good-fit-inner { grid-template-columns: 1fr; gap: 48px; }
  .studio-story-inner { grid-template-columns: 1fr; grid-template-rows: auto; column-gap: 0; }
  .studio-story-left { grid-column: auto; grid-row: auto; display: block; }
  .studio-story-right { grid-column: auto; grid-row: auto; }

  .process-accord-inner { grid-template-columns: 1fr; gap: 40px; }
  .process-accord-left { position: static; }
  .pacc-tagline { display: none; }
  .intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .intro-left { position: static; }
  .phil-pillars { grid-template-columns: 1fr; }
  .values-inner { gap: 32px; }
  .team-grid { grid-template-columns: repeat(2,1fr); padding: 0 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .body-grid { display: flex; flex-direction: column; gap: 0; }
  .body-left { position: static; order: 2; padding-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
  .body-left .detail-block:last-child { border-bottom: 1px solid rgba(46,139,132,.1); }
  .body-right { order: 1; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .stats-bar .stats-grid { grid-template-columns: repeat(2,1fr); }
  .image-break-content { left: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .filter-bar { padding: 20px 24px 0; }
  .portfolio-section { padding: 40px 24px 80px; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .p-card.featured { grid-column: span 2; }
  .careers-perks-grid { grid-template-columns: repeat(2,1fr); }
  .careers-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .careers-values-grid { grid-template-columns: repeat(2,1fr); }
  .careers-looking-inner { grid-template-columns: 1fr; gap: 48px; }
  .careers-no-openings { grid-template-columns: 1fr; gap: 48px; }
  .privacy-inner { grid-template-columns: 1fr; gap: 40px; }
  .privacy-nav { position: static; }
  .privacy-nav nav { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .privacy-nav nav a { border-left: none; border-bottom: 2px solid rgba(46,139,132,.12); padding: 6px 10px; font-size: 12px; }
}

@media (max-width: 880px) {
  .proof-grid { grid-template-columns: 1fr; padding: 0 28px; }
  .proof-divider { display: none; }
  .proof-item { padding: 0 0 32px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .proof-item:last-child { border-bottom: none; padding-bottom: 0; }
  .proof-quote { padding: 32px 0 0; }
}

@media (max-width: 680px) {
  nav { padding: 16px 20px; }
  .container { padding: 0 24px; }
  .page-hero { padding: 40px 24px; padding-top: 100px; }
  .hero-inner { padding: 100px 20px 32px; }
  .hero-foot { padding: 0 20px 36px; flex-direction: column; align-items: flex-start; }
  .hed-lg { font-size: clamp(44px,12vw,72px); }
  .hero { min-height: 85svh; }
  .about-inner { grid-template-columns: 1fr auto; gap: 24px; align-items: start; }
  .about-quote-block { width: 120px; aspect-ratio: 1/1; margin: 0; }
  .about-quote-text { font-size: 28px; }
  .proof-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .proof-divider { display: none; }
  .proof-item { padding: 0 0 32px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .proof-item:last-child { border-bottom: none; padding-bottom: 0; }
  .proof-quote { padding: 32px 0 0; }
  .body-grid { display: flex; flex-direction: column; gap: 0; }
  .body-left { order: 2; padding-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .body-right { order: 1; }
  .img-seq-item--portrait img { max-width: 100%; }
  .bento { grid-template-columns: 1fr; }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5 { grid-column: span 1; }
  .projects-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .pc-1,.pc-2,.pc-3,.pc-4 { grid-column: span 1; aspect-ratio: 4/3; }
  body.home .steps { grid-template-columns: 1fr; }
  body.home .process { padding: 56px 20px; }
  .clients-row { grid-template-columns: repeat(2,1fr); }
  .contact { background: var(--charcoal); }
  .contact-inner { grid-template-columns: 1fr; min-height: auto; }
  .contact-left { padding: 40px 24px; }
  .contact-right { padding: 40px 24px; }
  .process-phases { grid-template-columns: 1fr; }
  .process-header { padding: 0 20px; }
  .image-break { height: 320px; }
  .image-break-content { left: 24px; right: 24px; }
  .team-grid { grid-template-columns: repeat(2,1fr); gap: 12px; padding: 0 20px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; gap: 16px; padding: 0 16px; }
  .stats-band { padding: 32px 24px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .field-row { grid-template-columns: 1fr; }
  .map-inner { height: 320px; }
  .map-overlay { left: 20px; top: 20px; }
  .filter-bar { padding: 16px 20px 0; }
  .portfolio-section { padding: 40px 20px 60px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .p-card.featured { grid-column: span 1; }
  .p-card.featured { aspect-ratio: 16/9; }
  .stats-bar { padding: 24px; }
  .related-grid { grid-template-columns: 1fr; gap: 12px; }
  .related-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .error-404-num { font-size: clamp(80px,18vw,140px); right: 20px; }
  .error-404-link { grid-template-columns: 36px 1fr auto; }
  .error-404-link-desc { display: none; }
  .careers-perks-grid { grid-template-columns: 1fr; }
  .careers-values-grid { grid-template-columns: 1fr; }
  .careers-no-openings-aside { flex-direction: row; flex-wrap: wrap; }
  .careers-aside-block { flex: 1; min-width: 140px; }
  .privacy-nav nav { display: none; }
}

@media (max-width: 480px) {
  .mak-lightbox-prev,
  .mak-lightbox-next { top: auto; bottom: 60px; transform: none; width: 44px; height: 44px; font-size: 18px; }
  .mak-lightbox-prev { left: calc(50% - 56px); }
  .mak-lightbox-next { right: calc(50% - 56px); }
  .mak-lightbox img { max-width: 96vw; max-height: 72vh; }
  .mak-lightbox-caption { bottom: 16px; }
}
/* ============================================================
   OFFICE DESIGN VANCOUVER — LANDING PAGE
   page-office-design-vancouver.php
   ============================================================ */

/* Hero adjustment — slightly taller than standard inner page */
.page-hero-od { min-height: 72vh; }

/* ── INTRO SECTION ── */
.od-intro { padding: clamp(80px,10vw,120px) 0; background: var(--white); }
.od-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.od-intro-text .section-label { margin-bottom: 20px; }
.od-intro-text h2 { font-family: var(--ff-display); font-size: clamp(28px,3.5vw,44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; color: var(--charcoal); margin-bottom: 24px; }
.od-intro-text h2 em { font-style: normal; color: var(--teal); }
.od-intro-text p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--mid); margin-bottom: 16px; }
.od-intro-text p:last-of-type { margin-bottom: 0; }

/* Stat cards */
.od-intro-stats { display: flex; flex-direction: column; gap: 3px; }
.od-stat-card { padding: 28px 32px; background: var(--cream); border-left: 3px solid var(--teal-light); border-radius: 0 12px 12px 0; }
.od-stat-card--teal { background: var(--teal); border-left-color: var(--teal-dark); }
.od-stat-num { font-family: var(--ff-display); font-size: clamp(36px,4vw,52px); font-weight: 800; letter-spacing: -.03em; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.od-stat-card--teal .od-stat-num { color: #fff; }
.od-stat-num span { font-size: .65em; opacity: .7; }
.od-stat-label { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; }
.od-stat-card--teal .od-stat-label { color: rgba(255,255,255,.7); }
.od-stat-desc { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--mid); }
.od-stat-card--teal .od-stat-desc { color: rgba(255,255,255,.75); }

/* ── PROJECTS SECTION ── */
.od-projects { padding: clamp(80px,10vw,120px) 0 48px; background: var(--charcoal); overflow: hidden; }
.od-projects-head { margin-bottom: 48px; }
.od-projects-head .section-label { color: var(--teal-light); }
.od-projects-head .section-label::before { background: var(--teal-light); }
.od-projects-head h2 { font-family: var(--ff-display); font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -.03em; color: #fff; line-height: 1.05; margin-bottom: 12px; }
.od-projects-head h2 em { font-style: normal; color: var(--teal-light); }
.od-projects-head p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.7; }
.od-projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 300px 300px; gap: 8px; margin-bottom: 40px; }
.od-projects-grid .p-card { aspect-ratio: unset; }
.od-project-card--wide { grid-column: span 2; }
.od-project-card--tall { grid-row: span 2; }
.od-projects-footer { text-align: center; padding-top: 8px; }

/* ── CONTENT / PILLARS SECTION ── */
.od-content { padding: clamp(80px,10vw,120px) 0; background: var(--cream); }
.od-content::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(46,139,132,.035) 0,rgba(46,139,132,.035) 1px,transparent 0,transparent 50%); background-size: 18px 18px; pointer-events: none; }
.od-content { position: relative; }
.od-content .container { position: relative; z-index: 1; }
.od-content-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.od-content-left h2 { font-family: var(--ff-display); font-size: clamp(28px,3.5vw,44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; color: var(--charcoal); margin-bottom: 24px; }
.od-content-left h2 em { font-style: normal; color: var(--teal); }
.od-content-left p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--mid); margin-bottom: 16px; }
.od-content-right { display: flex; flex-direction: column; gap: 3px; }
.od-pillar { padding: 28px 32px; background: var(--white); border-left: 3px solid var(--teal-light); border-radius: 0 12px 12px 0; transition: transform .2s, border-left-color .2s; }
.od-pillar:hover { transform: translateX(4px); border-left-color: var(--teal); }
.od-pillar-num { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .16em; color: var(--teal); margin-bottom: 8px; text-transform: uppercase; }
.od-pillar-title { font-family: var(--ff-display); font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; letter-spacing: -.01em; }
.od-pillar-body { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--mid); }

/* ── CONTACT SECTION ── */
.od-contact { padding: clamp(80px,10vw,120px) 0; background: var(--white); position: relative; overflow: hidden; }
.od-contact::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(46,139,132,.035) 0,rgba(46,139,132,.035) 1px,transparent 0,transparent 50%); background-size: 18px 18px; pointer-events: none; }
.od-contact .container { position: relative; z-index: 1; }
.od-contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.od-contact-left .section-label { color: var(--teal); }
.od-contact-left .section-label::before { background: var(--teal); }
.od-contact-left h2 { font-family: var(--ff-display); font-size: clamp(28px,3.5vw,44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; color: var(--charcoal); margin-bottom: 20px; }
.od-contact-left h2 em { font-style: normal; color: var(--teal); }
.od-contact-left p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--mid); margin-bottom: 32px; }
.od-contact-deets { display: flex; flex-direction: column; gap: 2px; }
.od-contact-row { display: flex; gap: 20px; align-items: baseline; padding: 12px 16px; background: var(--cream); border-left: 3px solid var(--teal-light); border-radius: 0 6px 6px 0; }
.od-contact-lbl { font-family: var(--ff-display); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); min-width: 48px; flex-shrink: 0; }
.od-contact-val { font-size: 14px; font-weight: 300; color: var(--charcoal); }
.od-contact-val a { color: var(--teal); transition: color .2s; cursor: none; }
.od-contact-val a:hover { color: var(--teal-dark); }
.od-contact-right { background: var(--cream); border-radius: 12px; padding: 40px; }
/* Explicitly reinforce CF7 field styles within the od-contact wrapper */
.od-contact-right .wpcf7-form-control.wpcf7-text,
.od-contact-right .wpcf7-form-control.wpcf7-email,
.od-contact-right .wpcf7-form-control.wpcf7-tel,
.od-contact-right .wpcf7-form-control.wpcf7-textarea,
.od-contact-right .wpcf7-form-control.wpcf7-select {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid transparent;
  border-left: 3px solid var(--teal-light);
  border-radius: 0 8px 8px 0;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 300;
  padding: 15px 20px;
  width: 100%;
  display: block;
  box-sizing: border-box;
  outline: none;
  transition: border-color .2s, background .2s;
}
.od-contact-right .wpcf7-form-control.wpcf7-text:focus,
.od-contact-right .wpcf7-form-control.wpcf7-email:focus,
.od-contact-right .wpcf7-form-control.wpcf7-tel:focus,
.od-contact-right .wpcf7-form-control.wpcf7-textarea:focus,
.od-contact-right .wpcf7-form-control.wpcf7-select:focus {
  background: var(--white);
  border-color: rgba(46,139,132,.2);
  border-left-color: var(--teal);
}
.od-contact-right .wpcf7-form-control.wpcf7-textarea { min-height: 110px; resize: none; line-height: 1.6; }
.od-contact-right .wpcf7-form-control.wpcf7-submit {
  background: var(--teal-light);
  color: var(--charcoal);
  border: 2px solid var(--teal);
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.od-contact-right .wpcf7-form-control.wpcf7-submit:hover { background: var(--teal-mid); transform: scale(1.02); }
.od-process { padding: clamp(80px,10vw,120px) 0 clamp(48px,5vw,64px); background: var(--charcoal); position: relative; overflow: hidden; }
.od-process::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,rgba(77,191,184,.04) 0,rgba(77,191,184,.04) 1px,transparent 0,transparent 50%); background-size: 18px 18px; }
.od-process .container { position: relative; z-index: 1; }
.od-process-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.od-process-left { position: static; }
.od-process-left .section-label { color: var(--teal-light); }
.od-process-left .section-label::before { background: var(--teal-light); }
.od-process-left h2 { font-family: var(--ff-display); font-size: clamp(28px,3.5vw,44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; color: #fff; margin-bottom: 24px; }
.od-process-left h2 em { font-style: normal; color: var(--teal-light); }
.od-process-left p { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.od-process-right { display: flex; flex-direction: column; gap: 3px; }
/* Inherit .pacc-* styles from services page — no duplication needed */

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .od-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .od-intro-stats { flex-direction: row; flex-wrap: wrap; }
  .od-stat-card { flex: 1; min-width: 200px; }
  .od-projects-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px 280px; }
  .od-project-card--wide { grid-column: span 2; }
  .od-project-card--tall { grid-row: span 1; }
  .od-content-inner { grid-template-columns: 1fr; gap: 48px; }
  .od-process-inner { grid-template-columns: 1fr; gap: 48px; }
  .od-process-left { position: static; }
  .od-contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .pacc-tagline { display: none; }
}

@media (max-width: 680px) {
  .od-projects-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 8px; }
  .od-projects-grid .p-card { aspect-ratio: 4/3; }
  .od-project-card--wide,
  .od-project-card--tall { grid-column: span 1; grid-row: span 1; }
  .od-intro-stats { flex-direction: column; }
  .od-contact-right { padding: 24px; }
}

@media (max-width: 480px) {
  .od-contact-right { padding: 20px; }
}
/* ============================================================
   TESTIMONIAL SECTIONS — homepage & services
   ============================================================ */
/* ============================================================
   TESTIMONIAL SECTIONS — homepage & services
   ============================================================ */
.hp-testimonial { padding: clamp(48px,5vw,72px) 0; background: var(--charcoal); position: relative; overflow: hidden; }
.hp-testimonial::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg,rgba(255,255,255,.025) 0,rgba(255,255,255,.025) 1px,transparent 0,transparent 50%); background-size: 18px 18px; pointer-events: none; }
.hp-testimonial .container { position: relative; z-index: 1; }
.hp-testimonial-inner { max-width: 820px; }
.hp-testimonial-quote { font-family: var(--ff-display); font-size: clamp(18px,1.4vw,28px); font-weight: 800; font-style: normal; line-height: 1.15; color: #fff; margin: 0 0 24px; border: none; padding: 0; quotes: none; letter-spacing: -.02em; }
.hp-testimonial-accent { color: var(--teal-light); }
.hp-testimonial-cite { font-family: var(--ff-display); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-light); font-style: normal; }

/* Light variant — services page where surrounding sections are dark */
.hp-testimonial--light { background: var(--cream); }
.hp-testimonial--light::before { background-image: repeating-linear-gradient(135deg,rgba(46,139,132,.035) 0,rgba(46,139,132,.035) 1px,transparent 0,transparent 50%); }
.hp-testimonial--light .hp-testimonial-quote { color: var(--charcoal); }
.hp-testimonial--light .hp-testimonial-accent { color: var(--teal); }
.hp-testimonial--light .hp-testimonial-cite { color: var(--teal); }

@media (max-width: 680px) {
  .hp-testimonial-quote { font-size: 18px; }
}

/* ── OFFICE DESIGN FAQ ACCORDION ── */
.od-faq { }
.od-faq-item { border-bottom: 1px solid rgba(46,139,132,.15); }
.od-faq-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; cursor: none; gap: 16px; }
.od-faq-q { font-family: var(--ff-display); font-size: 14px; font-weight: 600; color: var(--charcoal); line-height: 1.3; letter-spacing: -.01em; }
.od-faq-chevron { width: 16px; height: 16px; flex-shrink: 0; position: relative; }
.od-faq-chevron::before, .od-faq-chevron::after { content: ''; position: absolute; background: var(--teal); border-radius: 2px; transition: transform .25s; }
.od-faq-chevron::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.od-faq-chevron::after { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.od-faq-item.open .od-faq-chevron::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.od-faq-body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.od-faq-a { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--mid); padding: 0 0 16px; margin: 0; }

/* ── PROCESS SECTION PULL QUOTE ── */
.od-process-quote { padding: 48px 0 64px; position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; }
.od-process-quote-text { font-family: var(--ff-display); font-size: clamp(16px,1.6vw,22px); font-weight: 700; line-height: 1.3; color: rgba(255,255,255,.9); letter-spacing: -.02em; margin: 0 0 16px; border: none; padding: 0; quotes: none; max-width: 720px; }
.od-process-quote-cite { font-family: var(--ff-display); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-light); font-style: normal; }