/* ===== SHARED: CSS Variables ===== */
:root {
  --cream: #EEE1C6;
  --dark: #393D47;
  --orange: #EA6B21;
  --light-gray: #E3E4E5;
  --mid-gray: #B4B9C7;
  --black: #000000;
  --white: #FFFFFF;
  --cream-dark: #D9C9A8;
  --dark-deep: #262930;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
}

/* ===== SHARED: Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SHARED: Navigation ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 4vw 0rem 4vw;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(57,61,71,0.08);
  transition: background 0.3s;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.nav-active {
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 1.5rem 4vw;
  flex-direction: column;
  gap: 0;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--light-gray);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--orange); }

/* Mobile nav toggle — shared across all pages */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ===== SHARED: Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--dark); transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(238,225,198,0.35);
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--mid-gray);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--orange); border-color: var(--orange); }

/* ===== SHARED: Section Label / Title Utilities ===== */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--orange);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--orange); }
.section-title.on-dark { color: var(--cream); }
.section-title.on-cream { color: var(--dark); }

/* ===== SHARED: Footer ===== */
footer {
  background: var(--dark-deep);
  padding: 4rem 6vw 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer-brand span { color: var(--orange); }
.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-contact-info {
  font-size: 0.78rem;
  color: rgba(180,185,199,0.7);
  line-height: 2;
}
.footer-contact-info a {
  color: rgba(180,185,199,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--orange); }
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(238,225,198,0.45);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--orange); }
.footer-links a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background: currentColor;
  transition: width 0.2s;
}
.footer-links a:hover::before { width: 18px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(180,185,199,0.4);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.72rem;
  color: rgba(180,185,199,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--mid-gray); }

/* ===== SHARED: Keyframe Animations ===== */
/* NOTE: where pages defined the same keyframe name with very minor
   value differences (a couple of pixels), the first-encountered
   version was kept — the visual difference was negligible. */
@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeLeft { from { opacity:0; transform:translateX(12px); }  to { opacity:1; transform:translateX(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }


/* ============================================================
   PAGE: Homepage (index.html)
   Scope: body.page-home
   ============================================================ */
body.page-home .nav-cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--cream) !important;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

body.page-home .nav-cta:hover { background: var(--orange) !important; color: var(--white) !important; }

body.page-home #hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
  background-size: cover;
  background-position: right;
}

body.page-home .hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vw 4vw 6vw 6vw;
}

body.page-home .hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

body.page-home .hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--orange);
}

body.page-home .hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

body.page-home .hero-headline em {
  font-style: italic;
  color: var(--orange);
}

body.page-home .hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--dark);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

body.page-home .hero-detail {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--dard);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

body.page-home .hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

body.page-home .hero-right {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-home .hero-right-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem;
}

body.page-home .hero-pillars-display {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.page-home .hero-pillar-line {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateX(30px);
  animation: slideIn 0.7s forwards;
  cursor: default;
  transition: color 0.2s;
}

body.page-home .hero-pillar-line:hover { color: var(--orange); }

body.page-home .hero-pillar-line:nth-child(1) { animation-delay: 0.2s; }

body.page-home .hero-pillar-line:nth-child(2) { animation-delay: 0.45s; }

body.page-home .hero-pillar-line:nth-child(3) { animation-delay: 0.7s; }

body.page-home .hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(238,225,198,0.2);
  margin: 0 auto;
}

body.page-home .hero-bg-text {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 18vw;
  font-weight: 600;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

body.page-home .hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(57,61,71,0.1);
}

body.page-home .hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}

body.page-home .hero-stat-num em { font-style: italic; color: var(--orange); }

body.page-home .hero-stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--dark);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

body.page-home #pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

body.page-home .pillar-card {
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.35s;
  text-decoration: none;
  display: block;
  border-top: 3px solid var(--orange);;
}

body.page-home .pillar-card:nth-child(1) { background: var(--cream); }

body.page-home .pillar-card:nth-child(2) { background: var(--dark); }

body.page-home .pillar-card:nth-child(3) { background: var(--light-gray); }

body.page-home .pillar-card:nth-child(1):hover { background: var(--cream-dark); }

body.page-home .pillar-card:nth-child(2):hover { background: var(--dark-deep); }

body.page-home .pillar-card:nth-child(3):hover { background: #D0D1D3; }

body.page-home .pillar-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.18;
  margin-bottom: 1rem;
}

body.page-home .pillar-card:nth-child(1) .pillar-number { color: var(--dark); }

body.page-home .pillar-card:nth-child(2) .pillar-number { color: var(--cream); }

body.page-home .pillar-card:nth-child(3) .pillar-number { color: var(--dark); }

body.page-home .pillar-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

body.page-home .pillar-card:nth-child(1) .pillar-title { color: var(--dark); }

body.page-home .pillar-card:nth-child(2) .pillar-title { color: var(--cream); }

body.page-home .pillar-card:nth-child(3) .pillar-title { color: var(--dark); }

body.page-home .pillar-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

body.page-home .pillar-card:nth-child(1) .pillar-desc { color: #6B6046; }

body.page-home .pillar-card:nth-child(2) .pillar-desc { color: var(--mid-gray); }

body.page-home .pillar-card:nth-child(3) .pillar-desc { color: #6B6E77; }

body.page-home .pillar-services {
  list-style: none;
  margin-bottom: 2rem;
}

body.page-home .pillar-services li {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.page-home .pillar-services li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

body.page-home .pillar-card:nth-child(1) .pillar-services li { color: #6B6046; }

body.page-home .pillar-card:nth-child(2) .pillar-services li { color: var(--mid-gray); }

body.page-home .pillar-card:nth-child(3) .pillar-services li { color: #6B6E77; }

body.page-home .pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.2s;
}

body.page-home .pillar-card:nth-child(1) .pillar-link { color: var(--orange); }

body.page-home .pillar-card:nth-child(2) .pillar-link { color: var(--orange); }

body.page-home .pillar-card:nth-child(3) .pillar-link { color: var(--dark); }

body.page-home .pillar-card:hover .pillar-link { gap: 0.8rem; }

body.page-home #credibility {
  background: var(--dark);
  padding: 4rem 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.page-home .credibility-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 2.5rem;
}

body.page-home .credibility-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

body.page-home .credibility-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(238,225,198,0.35);
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: default;
}

body.page-home .credibility-logo:hover { color: var(--cream); }

body.page-home #work {
  padding: 7rem 6vw;
  background: var(--white);
}

body.page-home .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
}

body.page-home .section-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-bottom: 1px solid var(--mid-gray);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

body.page-home .section-link:hover { color: var(--orange); border-color: var(--orange); }

body.page-home .work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

body.page-home .work-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

body.page-home .work-card:nth-child(1) { grid-column: span 7; }

body.page-home .work-card:nth-child(2) { grid-column: span 5; }

body.page-home .work-card:nth-child(3) { grid-column: span 5; }

body.page-home .work-card:nth-child(4) { grid-column: span 7; }

body.page-home .work-card-img {
  width: 100%;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

body.page-home .work-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-home .work-card:nth-child(1) .work-card-placeholder { background: var(--cream); }

body.page-home .work-card:nth-child(2) .work-card-placeholder { background: var(--dark); }

body.page-home .work-card:nth-child(3) .work-card-placeholder { background: var(--light-gray); }

body.page-home .work-card:nth-child(4) .work-card-placeholder { background: #2A2D35; }

body.page-home .work-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-home .work-card:hover .work-card-overlay { opacity: 0.82; }

body.page-home .work-card-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.page-home .work-card:hover .work-card-cta { opacity: 1; transform: translateY(0); }

body.page-home .placeholder-icon {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  opacity: 0.25;
}

body.page-home .work-card:nth-child(1) .placeholder-icon { color: var(--dark); }

body.page-home .work-card:nth-child(2) .placeholder-icon { color: var(--cream); }

body.page-home .work-card:nth-child(3) .placeholder-icon { color: var(--dark); }

body.page-home .work-card:nth-child(4) .placeholder-icon { color: var(--cream); }

body.page-home .work-card-info {
  padding: 1rem 0 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

body.page-home .work-card-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.3rem;
}

body.page-home .work-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
}

body.page-home .work-card-result {
  font-size: 0.72rem;
  color: var(--mid-gray);
  font-style: italic;
  text-align: right;
  flex-shrink: 0;
  max-width: 140px;
  line-height: 1.4;
}

body.page-home #about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

body.page-home .about-left {
  padding: 7rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-home .about-body {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: #6B6046;
  max-width: 480px;
  margin-bottom: 1.25rem;
}

body.page-home .about-right {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:2vh;
}

body.page-home .about-photo-placeholder {
  width: 260px;
  height: 320px;
  border: 1px solid rgba(238,225,198,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

body.page-home .photo-placeholder-icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(238,225,198,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-home .photo-placeholder-text {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238,225,198,0.3);
}

body.page-home .about-bg-num {
  position: absolute;
  bottom: -30px;
  left: -20px;
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 600;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
}

body.page-home .about-credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(57,61,71,0.12);
}

body.page-home .credential-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

body.page-home .credential-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

body.page-home .credential-text {
  font-size: 0.85rem;
  color: #6B6046;
  line-height: 1.5;
}

body.page-home #testimonials {
  padding: 7rem 6vw;
  background: var(--white);
}

body.page-home .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

body.page-home .testimonial-card {
  padding: 2.5rem;
  border: 1px solid var(--light-gray);
  position: relative;
  transition: border-color 0.2s;
}

body.page-home .testimonial-card:hover { border-color: var(--orange); }

body.page-home .testimonial-card::before {
  content: "\"";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.25;
  position: absolute;
  top: 1rem;
  left: 1.75rem;
  pointer-events: none;
}

body.page-home .testimonial-placeholder {
  padding: 2rem 0 2rem;
}

body.page-home .testimonial-bar {
  height: 8px;
  background: var(--light-gray);
  border-radius: 0;
  margin-bottom: 0.75rem;
}

body.page-home .testimonial-bar:nth-child(1) { width: 100%; }

body.page-home .testimonial-bar:nth-child(2) { width: 85%; }

body.page-home .testimonial-bar:nth-child(3) { width: 70%; }

body.page-home .testimonial-placeholder-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--mid-gray);
  font-style: italic;
  margin-top: 1rem;
}

body.page-home .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
}

body.page-home .testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  border-radius: 50%;
  flex-shrink: 0;
}

body.page-home .testimonial-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
}

body.page-home .testimonial-role {
  font-size: 0.72rem;
  color: var(--mid-gray);
}

body.page-home #cta {
  background: var(--dark);
  padding: 7rem 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.page-home .cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

body.page-home .cta-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(234,107,33,0.12);
}

body.page-home .cta-bg-circle:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -150px; }

body.page-home .cta-bg-circle:nth-child(2) { width: 400px; height: 400px; top: -100px; right: -50px; }

body.page-home .cta-bg-circle:nth-child(3) { width: 200px; height: 200px; top: 0; right: 50px; }

body.page-home .cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

body.page-home .cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

body.page-home .cta-headline em { font-style: italic; }

body.page-home .cta-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid-gray);
  margin-bottom: 3rem;
}

body.page-home .cta-response {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(180,185,199,0.6);
  margin-top: 1.25rem;
}

@media (max-width: 1024px) {
  body.page-home .work-card:nth-child(1) { grid-column: span 12; }
  body.page-home .work-card:nth-child(2) { grid-column: span 6; }
  body.page-home .work-card:nth-child(3) { grid-column: span 6; }
  body.page-home .work-card:nth-child(4) { grid-column: span 12; }
  body.page-home .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  body.page-home .footer-top > div:first-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  body.page-home #hero { grid-template-columns: 1fr; min-height: auto; }
  body.page-home .hero-right { min-height: 50vw; }
  body.page-home .hero-left { padding: 4rem 6vw 3rem; }
  body.page-home #about { grid-template-columns: 1fr; }
  body.page-home .about-right { min-height: 50vw; }
  body.page-home .testimonials-grid { grid-template-columns: 1fr; }
  body.page-home #pillars { grid-template-columns: 1fr; }
  body.page-home .pillar-card { padding: 3rem 6vw; }
}

@media (max-width: 768px) {
  body.page-home .nav-links { display: none; }
  body.page-home .nav-hamburger { display: flex; }
  body.page-home .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  body.page-home .hero-stats { gap: 1.5rem; }
  body.page-home .work-card:nth-child(1), body.page-home .work-card:nth-child(2), body.page-home .work-card:nth-child(3), body.page-home .work-card:nth-child(4) { grid-column: span 12; }
  body.page-home .about-right { padding-top:3vh; }
  body.page-home .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  body.page-home .footer-top > div:first-child { grid-column: span 1; }
  body.page-home .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  body.page-home .credibility-logos { gap: 2rem; }
  body.page-home .hero-actions { flex-direction: column; align-items: flex-start; }
  body.page-home .about-right { padding-top:3vh; }
}


/* ============================================================
   PAGE: Design (design.html)
   Scope: body.page-design
   ============================================================ */
body.page-design .nav-cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--cream) !important;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s;
}

body.page-design .nav-cta:hover { background: var(--orange) !important; color: var(--white) !important; }

body.page-design .section-label.light::before { background: rgba(234,107,33,0.6); }

body.page-design .section-label.on-dark::before { background: var(--orange); }

body.page-design #page-hero {
  background: var(--dark);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

body.page-design .hero-bg-num {
  position: absolute;
  top: 50%;
  right: -2vw;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(18rem, 28vw, 28rem);
  font-weight: 600;
  color: rgba(255,255,255,0.028);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

body.page-design .pillar-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 6vw 0;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}

body.page-design .pi-item {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(180,185,199,0.45);
  cursor: default;
}

body.page-design .pi-item.pi-active {
  color: var(--orange);
}

body.page-design .pi-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

body.page-design .pi-item a:hover { color: var(--mid-gray); }

body.page-design .pi-divider {
  color: rgba(180,185,199,0.2);
  font-size: 0.65rem;
}

body.page-design .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 4vw 6vw 5vw;
  align-items: end;
}

body.page-design .hero-left {
  padding-right: 5vw;
  border-right: 1px solid rgba(238,225,198,0.08);
}

body.page-design .hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(180,185,199,0.5);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}

body.page-design .hero-breadcrumb a {
  color: rgba(180,185,199,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

body.page-design .hero-breadcrumb a:hover { color: var(--mid-gray); }

body.page-design .hero-breadcrumb span:last-child { color: var(--cream); }

body.page-design .hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}

body.page-design .hero-headline em {
  font-style: italic;
  color: var(--orange);
}

body.page-design .hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid-gray);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.5s forwards;
}

body.page-design .hero-cta-wrap {
  opacity: 0;
  animation: fadeUp 0.6s 0.65s forwards;
}

body.page-design .hero-right {
  padding-left: 5vw;
}

body.page-design .hero-service-list {
  list-style: none;
  border-top: 1px solid rgba(238,225,198,0.1);
}

body.page-design .hero-service-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(238,225,198,0.08);
  transition: padding-left 0.3s, border-color 0.3s;
  cursor: default;
  opacity: 0;
}

body.page-design .hero-service-item:hover {
  padding-left: 0.75rem;
  border-bottom-color: rgba(234,107,33,0.3);
}

body.page-design .hero-service-item:nth-child(1) { animation: fadeRight 0.5s 0.5s forwards; }

body.page-design .hero-service-item:nth-child(2) { animation: fadeRight 0.5s 0.6s forwards; }

body.page-design .hero-service-item:nth-child(3) { animation: fadeRight 0.5s 0.7s forwards; }

body.page-design .hero-service-item:nth-child(4) { animation: fadeRight 0.5s 0.8s forwards; }

body.page-design .hero-service-item:nth-child(5) { animation: fadeRight 0.5s 0.9s forwards; }

body.page-design .hero-service-item:nth-child(6) { animation: fadeRight 0.5s 1.0s forwards; }

body.page-design .hero-service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--orange);
  opacity: 0.65;
  min-width: 28px;
  letter-spacing: 0.04em;
}

body.page-design .hero-service-name {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.02em;
  flex: 1;
}

body.page-design .hero-service-arrow {
  color: rgba(234,107,33,0);
  font-size: 0.75rem;
  transition: color 0.2s, transform 0.2s;
}

body.page-design .hero-service-item:hover .hero-service-arrow {
  color: var(--orange);
  transform: translateX(3px);
}

body.page-design #services {
  background: var(--white);
  padding: 7rem 6vw;
}

body.page-design .services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

body.page-design .services-intro-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5A5E68;
  max-width: 520px;
}

body.page-design .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
}

body.page-design .service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.25s;
  overflow: hidden;
}

body.page-design .service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

body.page-design .service-card:hover { background: #FAFAFA; }

body.page-design .service-card:hover::before { transform: scaleX(1); }

body.page-design .service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  color: var(--orange);
}

body.page-design .service-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

body.page-design .service-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: #6B6E77;
  margin-bottom: 1.5rem;
}

body.page-design .service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

body.page-design .service-includes li {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.page-design .service-includes li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

body.page-design #results {
  background: var(--dark-deep);
  padding: 5rem 6vw;
  position: relative;
  overflow: hidden;
}

body.page-design .results-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(234,107,33,0.7);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

body.page-design .results-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(234,107,33,0.7);
}

body.page-design .results-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 3.5rem;
  opacity: 0.85;
}

body.page-design .results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

body.page-design .result-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

body.page-design .result-card:last-child { border-right: none; }

body.page-design .result-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px;
  height: 2px;
  background: var(--orange);
  opacity: 0.6;
}

body.page-design .result-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}

body.page-design .result-number em {
  font-style: normal;
  color: var(--orange);
}

body.page-design .result-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(180,185,199,0.7);
  margin-bottom: 0.75rem;
}

body.page-design .result-context {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(180,185,199,0.4);
  line-height: 1.5;
  font-style: italic;
}

body.page-design .results-bg {
  position: absolute;
  right: 0; bottom: 0;
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 600;
  color: rgba(255,255,255,0.018);
  line-height: 1;
  pointer-events: none;
}

body.page-design #process {
  background: var(--cream);
  padding: 7rem 6vw;
  position: relative;
  overflow: hidden;
}

body.page-design .process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

body.page-design .process-header-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-text);
  max-width: 420px;
}

body.page-design .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

body.page-design .process-connector {
  position: absolute;
  top: 2.1rem;
  left: calc(25% - 0px);
  right: calc(25% - 0px);
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(57,61,71,0.2) 0,
    rgba(57,61,71,0.2) 6px,
    transparent 6px,
    transparent 12px
  );
  pointer-events: none;
  z-index: 0;
}

body.page-design .process-step {
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

body.page-design .process-step:first-child { padding-left: 0; }

body.page-design .process-step:last-child { padding-right: 0; }

body.page-design .process-step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

body.page-design .process-step-num::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  bottom: -0.4rem;
  left: 0;
}

body.page-design .process-step-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

body.page-design .process-step-desc {
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream-text);
}

body.page-design .process-bg {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 600;
  color: rgba(57,61,71,0.04);
  line-height: 1;
  pointer-events: none;
}

body.page-design #work {
  background: var(--white);
  padding: 7rem 6vw;
}

body.page-design .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
}

body.page-design .section-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-bottom: 1px solid var(--mid-gray);
  padding-bottom: 2px;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}

body.page-design .section-link:hover { color: var(--orange); border-color: var(--orange); }

body.page-design .work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

body.page-design .work-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

body.page-design .work-card:nth-child(1) { grid-column: span 7; }

body.page-design .work-card:nth-child(2) { grid-column: span 5; }

body.page-design .work-card:nth-child(3) { grid-column: span 5; }

body.page-design .work-card:nth-child(4) { grid-column: span 7; }

body.page-design .work-card-img {
  width: 100%;
  padding-bottom: 0%;
  position: relative;
  overflow: hidden;
}

body.page-design .work-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-design .work-card:nth-child(1) .work-card-placeholder { background: var(--cream); }

body.page-design .work-card:nth-child(2) .work-card-placeholder { background: var(--dark); }

body.page-design .work-card:nth-child(3) .work-card-placeholder { background: var(--light-gray); }

body.page-design .work-card:nth-child(4) .work-card-placeholder { background: #2A2D35; }

body.page-design .work-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-design .work-card:hover .work-card-overlay { opacity: 0.82; }

body.page-design .work-card-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}

body.page-design .work-card:hover .work-card-cta { opacity: 1; transform: translateY(0); }

body.page-design .placeholder-icon {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.22;
}

body.page-design .work-card:nth-child(1) .placeholder-icon { color: var(--dark); }

body.page-design .work-card:nth-child(2) .placeholder-icon { color: var(--cream); }

body.page-design .work-card:nth-child(3) .placeholder-icon { color: var(--dark); }

body.page-design .work-card:nth-child(4) .placeholder-icon { color: var(--cream); }

body.page-design .work-card-info {
  padding: 1rem 0 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

body.page-design .work-card-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.3rem;
}

body.page-design .work-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
}

body.page-design .work-card-result {
  font-size: 0.72rem;
  color: var(--mid-gray);
  font-style: italic;
  text-align: right;
  flex-shrink: 0;
  max-width: 160px;
  line-height: 1.4;
}

body.page-design #explore {
  background: var(--light-gray);
  padding: 5rem 6vw;
}

body.page-design .explore-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A8E98;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

body.page-design .explore-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #8A8E98;
}

body.page-design .explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

body.page-design .explore-card {
  display: block;
  text-decoration: none;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}

body.page-design .explore-card:hover { transform: translateY(-3px); }

body.page-design .explore-card:nth-child(1) { background: var(--dark); }

body.page-design .explore-card:nth-child(2) { background: var(--cream); border: 1px solid var(--cream-dark); }

body.page-design .explore-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.2;
}

body.page-design .explore-card:nth-child(1) .explore-card-num { color: var(--cream); }

body.page-design .explore-card:nth-child(2) .explore-card-num { color: var(--dark); }

body.page-design .explore-card-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

body.page-design .explore-card:nth-child(1) .explore-card-title { color: var(--cream); }

body.page-design .explore-card:nth-child(2) .explore-card-title { color: var(--dark); }

body.page-design .explore-card-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
}

body.page-design .explore-card:nth-child(1) .explore-card-desc { color: var(--mid-gray); }

body.page-design .explore-card:nth-child(2) .explore-card-desc { color: var(--cream-text); }

body.page-design .explore-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: gap 0.2s;
}

body.page-design .explore-card:nth-child(1) .explore-card-link { color: var(--orange); }

body.page-design .explore-card:nth-child(2) .explore-card-link { color: var(--dark); }

body.page-design .explore-card:hover .explore-card-link { gap: 0.8rem; }

body.page-design .explore-card-bg {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  opacity: 0.06;
}

body.page-design .explore-card:nth-child(1) .explore-card-bg { color: var(--cream); }

body.page-design .explore-card:nth-child(2) .explore-card-bg { color: var(--dark); }

body.page-design #cta {
  background: var(--dark);
  padding: 7rem 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.page-design .cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

body.page-design .cta-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(234,107,33,0.1);
}

body.page-design .cta-bg-circle:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -150px; }

body.page-design .cta-bg-circle:nth-child(2) { width: 400px; height: 400px; top: -100px; right: -50px; }

body.page-design .cta-bg-circle:nth-child(3) { width: 200px; height: 200px; top: 0; right: 50px; }

body.page-design .cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

body.page-design .cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  max-width: 640px;
  margin-bottom: 1.5rem;
}

body.page-design .cta-headline em { font-style: italic; }

body.page-design .cta-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid-gray);
  margin-bottom: 3rem;
}

body.page-design .cta-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

body.page-design .cta-response {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(180,185,199,0.5);
  margin-top: 1.25rem;
}

@media (max-width: 1100px) {
  body.page-design .services-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-design .results-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-design .result-card:nth-child(2) { border-right: none; }
  body.page-design .result-card:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  body.page-design .result-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; }
  body.page-design .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
  body.page-design .process-connector { display: none; }
  body.page-design .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  body.page-design .footer-top > div:first-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  body.page-design .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  body.page-design .hero-left { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(238,225,198,0.08); padding-bottom: 3rem; }
  body.page-design .hero-right { padding-left: 0; }
  body.page-design .services-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  body.page-design .process-header { grid-template-columns: 1fr; gap: 1.5rem; }
  body.page-design .work-card:nth-child(1) { grid-column: span 12; }
  body.page-design .work-card:nth-child(2) { grid-column: span 6; }
  body.page-design .work-card:nth-child(3) { grid-column: span 6; }
  body.page-design .work-card:nth-child(4) { grid-column: span 12; }
  body.page-design .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
  body.page-design .nav-links { display: none; }
  body.page-design .nav-hamburger { display: flex; }
  body.page-design .services-grid { grid-template-columns: 1fr; }
  body.page-design .results-grid { grid-template-columns: 1fr 1fr; }
  body.page-design .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  body.page-design .explore-grid { grid-template-columns: 1fr; }
  body.page-design .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  body.page-design .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  body.page-design .footer-top > div:first-child { grid-column: span 1; }
  body.page-design .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  body.page-design .results-grid { grid-template-columns: 1fr; }
  body.page-design .result-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  body.page-design .work-card:nth-child(2), body.page-design .work-card:nth-child(3) { grid-column: span 12; }
  body.page-design .pillar-indicator { display: none; }
}


/* ============================================================
   PAGE: Image (image.html)
   Scope: body.page-image
   ============================================================ */
body.page-image .nav-cta { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; background: var(--dark); color: var(--cream) !important; padding: 0.6rem 1.4rem; text-decoration: none; transition: background 0.2s; }

body.page-image .nav-cta:hover { background: var(--orange) !important; color: var(--white) !important; }

body.page-image #page-hero {
  background: var(--dark-deep);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

body.page-image .hero-photo-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem 4rem 6vw;
  border-right: 1px solid rgba(238,225,198,0.07);
  position: relative;
}

body.page-image .hero-video-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 6vw 4rem 2rem;
  border-left: 1px solid rgba(238,225,198,0.07);
}

body.page-image .hero-center-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 3rem;
  position: relative;
}

body.page-image .hero-frame {
  position: absolute;
  inset: 2.5rem;
  pointer-events: none;
}

body.page-image .hero-frame::before, body.page-image .hero-frame::after, body.page-image .hero-frame-b::before, body.page-image .hero-frame-b::after {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  border-color: rgba(234,107,33,0.28);
  border-style: solid;
}

body.page-image .hero-frame::before { top: 0; left: 0; border-width: 1.5px 0 0 1.5px; }

body.page-image .hero-frame::after { top: 0; right: 0; border-width: 1.5px 1.5px 0 0; }

body.page-image .hero-frame-b { position: absolute; inset: 2.5rem; pointer-events: none; }

body.page-image .hero-frame-b::before { bottom: 0; left: 0; border-width: 0 0 1.5px 1.5px; }

body.page-image .hero-frame-b::after { bottom: 0; right: 0; border-width: 0 1.5px 1.5px 0; }

body.page-image .hero-col-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0.75;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

body.page-image .hero-col-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(234,107,33,0.2);
  display: block;
}

body.page-image .hero-video-col .hero-col-label::after { display: none; }

body.page-image .hero-video-col .hero-col-label::before {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(234,107,33,0.2);
  display: block;
}

body.page-image .hero-svc-list { list-style: none; }

body.page-image .hero-svc-item {
  font-size: 0.87rem;
  font-weight: 300;
  color: rgba(238,225,198,0.65);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(238,225,198,0.06);
  letter-spacing: 0.02em;
  transition: color 0.2s, padding-left 0.25s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
}

body.page-image .hero-svc-item:hover { color: var(--cream); padding-left: 0.4rem; }

body.page-image .hero-svc-item::before {
  content: "";
  display: inline-block;
  width: 6px; height: 1px;
  background: var(--orange);
  opacity: 0.5;
  flex-shrink: 0;
  transition: width 0.2s, opacity 0.2s;
}

body.page-image .hero-svc-item:hover::before { width: 12px; opacity: 1; }

body.page-image .hero-photo-col .hero-svc-item:nth-child(1) { animation: fadeRight 0.5s 0.4s forwards; }

body.page-image .hero-photo-col .hero-svc-item:nth-child(2) { animation: fadeRight 0.5s 0.52s forwards; }

body.page-image .hero-photo-col .hero-svc-item:nth-child(3) { animation: fadeRight 0.5s 0.64s forwards; }

body.page-image .hero-photo-col .hero-svc-item:nth-child(4) { animation: fadeRight 0.5s 0.76s forwards; }

body.page-image .hero-photo-col .hero-svc-item:nth-child(5) { animation: fadeRight 0.5s 0.88s forwards; }

body.page-image .hero-video-col .hero-svc-item:nth-child(1) { animation: fadeLeft 0.5s 0.4s forwards; }

body.page-image .hero-video-col .hero-svc-item:nth-child(2) { animation: fadeLeft 0.5s 0.52s forwards; }

body.page-image .hero-video-col .hero-svc-item:nth-child(3) { animation: fadeLeft 0.5s 0.64s forwards; }

body.page-image .hero-video-col .hero-svc-item:nth-child(4) { animation: fadeLeft 0.5s 0.76s forwards; }

body.page-image .hero-video-col .hero-svc-item:nth-child(5) { animation: fadeLeft 0.5s 0.88s forwards; }

body.page-image .pillar-indicator {
  position: absolute;
  top: 1.5rem; left: 6vw;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}

body.page-image .pi-item { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(180,185,199,0.4); }

body.page-image .pi-item.pi-active { color: var(--orange); }

body.page-image .pi-item a { color: inherit; text-decoration: none; transition: color 0.2s; }

body.page-image .pi-item a:hover { color: var(--mid-gray); }

body.page-image .pi-divider { color: rgba(180,185,199,0.18); font-size: 0.65rem; }

body.page-image .hero-center-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(234,107,33,0.65);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.25s forwards;
}

body.page-image .hero-center-headline {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}

body.page-image .hero-center-headline em { display: block; font-style: italic; color: var(--orange); }

body.page-image .hero-center-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid-gray);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.5s forwards;
}

body.page-image .hero-center-cta {
  opacity: 0;
  animation: fadeUp 0.6s 0.65s forwards;
}

body.page-image .hero-center-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 1s forwards;
}

body.page-image .hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(234,107,33,0.4));
}

body.page-image .hero-scroll-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(180,185,199,0.35);
}

body.page-image .hero-bg-num {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(14rem, 22vw, 22rem);
  font-weight: 600;
  color: rgba(255,255,255,0.022);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

body.page-image #services {
  background: var(--white);
  padding: 7rem 6vw;
}

body.page-image .services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

body.page-image .services-col {
  padding: 0 4rem 0 0;
}

body.page-image .services-col:last-child {
  padding: 0 0 0 4rem;
  border-left: 1px solid var(--light-gray);
}

body.page-image .services-col-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

body.page-image .services-col-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

body.page-image .services-col-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

body.page-image .services-col-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: #6B6E77;
}

body.page-image .service-items { display: flex; flex-direction: column; gap: 0; }

body.page-image .service-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: background 0.2s;
  cursor: default;
}

body.page-image .service-item:first-child { border-top: 1px solid var(--light-gray); }

body.page-image .service-item:hover { padding-left: 0.5rem; }

body.page-image .service-item-icon {
  width: 36px; height: 36px;
  background: rgba(234,107,33,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s;
}

body.page-image .service-item:hover .service-item-icon { background: rgba(234,107,33,0.16); }

body.page-image .service-item-icon svg { color: var(--orange); }

body.page-image .service-item-body {}

body.page-image .service-item-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

body.page-image .service-item-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: #888;
  line-height: 1.5;
}

body.page-image #reel {
  background: var(--dark);
  padding: 6rem 6vw;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

body.page-image .reel-copy {}

body.page-image .reel-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(234,107,33,0.7);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}

body.page-image .reel-eyebrow::before { content: ""; display: inline-block; width: 20px; height: 1px; background: rgba(234,107,33,0.7); }

body.page-image .reel-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

body.page-image .reel-title em { font-style: italic; }

body.page-image .reel-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 2rem;
}

body.page-image .reel-stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(238,225,198,0.08);
}

body.page-image .reel-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

body.page-image .reel-stat-num em { color: var(--orange); font-style: normal; }

body.page-image .reel-stat-label { font-size: 0.78rem; font-weight: 300; color: var(--mid-gray); }

body.page-image .reel-video-wrap {
  position: relative;
}

body.page-image .reel-video-placeholder {
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--dark-deep);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(238,225,198,0.08);
}

body.page-image .reel-video-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.25rem;
}

body.page-image .reel-play-btn {
  width: 68px; height: 68px;
  border: 1.5px solid rgba(234,107,33,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

body.page-image .reel-play-btn:hover { border-color: var(--orange); background: rgba(234,107,33,0.1); transform: scale(1.08); }

body.page-image .reel-play-btn svg { color: var(--orange); margin-left: 4px; }

body.page-image .reel-video-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(180,185,199,0.45);
}

body.page-image .reel-video-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(238,225,198,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238,225,198,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

body.page-image .reel-corner { position: absolute; width: 14px; height: 14px; border-color: rgba(234,107,33,0.2); border-style: solid; }

body.page-image .reel-corner.tl { top: 12px; left: 12px; border-width: 1px 0 0 1px; }

body.page-image .reel-corner.tr { top: 12px; right: 12px; border-width: 1px 1px 0 0; }

body.page-image .reel-corner.bl { bottom: 12px; left: 12px; border-width: 0 0 1px 1px; }

body.page-image .reel-corner.br { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }

body.page-image .reel-bg {
  position: absolute; right: -40px; bottom: -40px;
  font-family: var(--font-display); font-size: 18vw; font-weight: 600;
  color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none;
}

body.page-image #results {
  background: var(--cream);
  padding: 6rem 6vw;
}

body.page-image .results-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 4rem;
}

body.page-image .results-header-right {
  font-size: 0.88rem; font-weight: 300; color: var(--cream-text);
  max-width: 320px; line-height: 1.7; text-align: right;
}

body.page-image .results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(57,61,71,0.12);
}

body.page-image .result-card {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid rgba(57,61,71,0.1);
  position: relative;
}

body.page-image .result-card:first-child { padding-left: 0; }

body.page-image .result-card:last-child { border-right: none; padding-right: 0; padding-left: 2rem; }

body.page-image .result-card:not(:first-child):not(:last-child) { padding: 2.5rem 2rem; }

body.page-image .result-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 300; color: var(--dark); line-height: 1; margin-bottom: 0.5rem;
}

body.page-image .result-number em { font-style: normal; color: var(--orange); }

body.page-image .result-label {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--dark); opacity: 0.6;
  margin-bottom: 0.6rem;
}

body.page-image .result-context {
  font-size: 0.75rem; font-weight: 300; color: var(--cream-text);
  line-height: 1.5; font-style: italic;
}

body.page-image #process {
  background: var(--light-gray);
  padding: 7rem 6vw;
  position: relative; overflow: hidden;
}

body.page-image .process-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 5rem;
}

body.page-image .process-intro-body {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  color: #5A5E68; max-width: 440px;
}

body.page-image .process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(57,61,71,0.12);
}

body.page-image .process-step {
  padding: 2.5rem 2rem 0 0;
  position: relative;
}

body.page-image .process-step:last-child { padding-right: 0; }

body.page-image .process-step-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 300; line-height: 1;
  color: var(--dark); margin-bottom: 1.25rem;
  display: inline-block; position: relative;
}

body.page-image .process-step-num::after {
  content: "";
  display: block; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  position: absolute; bottom: -0.25rem; left: 0;
}

body.page-image .process-step-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400; color: var(--dark);
  margin-bottom: 0.5rem; line-height: 1.2;
}

body.page-image .process-step-desc {
  font-size: 0.82rem; font-weight: 300; line-height: 1.7; color: #6B6E77;
}

body.page-image .process-step-tag {
  display: inline-block;
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  border: 1px solid rgba(234,107,33,0.3);
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.75rem;
}

body.page-image #work { background: var(--white); padding: 7rem 6vw; }

body.page-image .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 4rem; gap: 2rem; }

body.page-image .section-link { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; border-bottom: 1px solid var(--mid-gray); padding-bottom: 2px; flex-shrink: 0; transition: color 0.2s, border-color 0.2s; }

body.page-image .section-link:hover { color: var(--orange); border-color: var(--orange); }

body.page-image .work-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 1.5rem; }

body.page-image .work-card { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block; }

body.page-image .work-card:nth-child(1) { grid-column: span 5; }

body.page-image .work-card:nth-child(2) { grid-column: span 7; }

body.page-image .work-card:nth-child(3) { grid-column: span 7; }

body.page-image .work-card:nth-child(4) { grid-column: span 5; }

body.page-image .work-card-img { width:100%; padding-bottom:70%; position:relative; overflow:hidden; }

body.page-image .work-card-placeholder { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }

body.page-image .work-card:nth-child(1) .work-card-placeholder { background: var(--dark); }

body.page-image .work-card:nth-child(2) .work-card-placeholder { background: var(--cream); }

body.page-image .work-card:nth-child(3) .work-card-placeholder { background: #2A2D35; }

body.page-image .work-card:nth-child(4) .work-card-placeholder { background: var(--light-gray); }

body.page-image .work-card-overlay { position:absolute; inset:0; background:var(--dark); opacity:0; transition:opacity 0.35s; display:flex; align-items:center; justify-content:center; }

body.page-image .work-card:hover .work-card-overlay { opacity:0.82; }

body.page-image .work-card-cta { font-size:0.75rem; font-weight:500; letter-spacing:0.16em; text-transform:uppercase; color:var(--cream); opacity:0; transform:translateY(8px); transition:opacity 0.3s 0.05s, transform 0.3s 0.05s; }

body.page-image .work-card:hover .work-card-cta { opacity:1; transform:translateY(0); }

body.page-image .placeholder-icon { font-family:var(--font-display); font-size:0.95rem; font-weight:300; letter-spacing:0.1em; opacity:0.2; }

body.page-image .work-card:nth-child(1) .placeholder-icon { color:var(--cream); }

body.page-image .work-card:nth-child(2) .placeholder-icon { color:var(--dark); }

body.page-image .work-card:nth-child(3) .placeholder-icon { color:var(--cream); }

body.page-image .work-card:nth-child(4) .placeholder-icon { color:var(--dark); }

body.page-image .work-card-info { padding:1rem 0 0.5rem; display:flex; align-items:flex-start; justify-content:space-between; gap:1rem; }

body.page-image .work-card-tag { font-size:0.65rem; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; color:var(--orange); margin-bottom:0.3rem; }

body.page-image .work-card-title { font-family:var(--font-display); font-size:1.1rem; font-weight:400; color:var(--dark); }

body.page-image .work-card-result { font-size:0.72rem; color:var(--mid-gray); font-style:italic; text-align:right; flex-shrink:0; max-width:160px; line-height:1.4; }

body.page-image #explore { background: var(--light-gray); padding: 5rem 6vw; }

body.page-image .explore-label { font-size:0.7rem; font-weight:500; letter-spacing:0.2em; text-transform:uppercase; color:#8A8E98; margin-bottom:2.5rem; display:flex; align-items:center; gap:0.6rem; }

body.page-image .explore-label::before { content:""; display:inline-block; width:24px; height:1px; background:#8A8E98; }

body.page-image .explore-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }

body.page-image .explore-card { display:block; text-decoration:none; padding:3rem; position:relative; overflow:hidden; transition:transform 0.25s; }

body.page-image .explore-card:hover { transform:translateY(-3px); }

body.page-image .explore-card:nth-child(1) { background:var(--cream); border:1px solid var(--cream-dark); }

body.page-image .explore-card:nth-child(2) { background:var(--dark); }

body.page-image .explore-card-num { font-family:var(--font-display); font-size:3rem; font-weight:300; line-height:1; margin-bottom:1rem; opacity:0.2; }

body.page-image .explore-card:nth-child(1) .explore-card-num { color:var(--dark); }

body.page-image .explore-card:nth-child(2) .explore-card-num { color:var(--cream); }

body.page-image .explore-card-title { font-family:var(--font-display); font-size:2.2rem; font-weight:400; line-height:1.1; margin-bottom:0.6rem; }

body.page-image .explore-card:nth-child(1) .explore-card-title { color:var(--dark); }

body.page-image .explore-card:nth-child(2) .explore-card-title { color:var(--cream); }

body.page-image .explore-card-desc { font-size:0.85rem; font-weight:300; line-height:1.6; margin-bottom:2rem; }

body.page-image .explore-card:nth-child(1) .explore-card-desc { color:var(--cream-text); }

body.page-image .explore-card:nth-child(2) .explore-card-desc { color:var(--mid-gray); }

body.page-image .explore-card-link { display:inline-flex; align-items:center; gap:0.5rem; font-size:0.75rem; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; transition:gap 0.2s; }

body.page-image .explore-card:nth-child(1) .explore-card-link { color:var(--dark); }

body.page-image .explore-card:nth-child(2) .explore-card-link { color:var(--orange); }

body.page-image .explore-card:hover .explore-card-link { gap:0.8rem; }

body.page-image .explore-card-bg { position:absolute; bottom:-20px; right:-10px; font-family:var(--font-display); font-size:10rem; font-weight:600; line-height:1; pointer-events:none; opacity:0.06; }

body.page-image .explore-card:nth-child(1) .explore-card-bg { color:var(--dark); }

body.page-image .explore-card:nth-child(2) .explore-card-bg { color:var(--cream); }

body.page-image #cta { background:var(--dark); padding:7rem 6vw; display:flex; flex-direction:column; align-items:center; text-align:center; position:relative; overflow:hidden; }

body.page-image .cta-bg { position:absolute; inset:0; pointer-events:none; overflow:hidden; }

body.page-image .cta-bg-circle { position:absolute; border-radius:50%; border:1px solid rgba(234,107,33,0.1); }

body.page-image .cta-bg-circle:nth-child(1) { width:600px; height:600px; top:-200px; right:-150px; }

body.page-image .cta-bg-circle:nth-child(2) { width:400px; height:400px; top:-100px; right:-50px; }

body.page-image .cta-bg-circle:nth-child(3) { width:200px; height:200px; top:0; right:50px; }

body.page-image .cta-eyebrow { font-size:0.7rem; font-weight:500; letter-spacing:0.2em; text-transform:uppercase; color:var(--orange); margin-bottom:1.25rem; }

body.page-image .cta-headline { font-family:var(--font-display); font-size:clamp(2.5rem,5vw,4.5rem); font-weight:300; color:var(--cream); line-height:1.1; max-width:640px; margin-bottom:1.5rem; }

body.page-image .cta-headline em { font-style:italic; }

body.page-image .cta-sub { font-size:0.95rem; font-weight:300; color:var(--mid-gray); margin-bottom:3rem; }

body.page-image .cta-actions { display:flex; align-items:center; gap:1.5rem; }

body.page-image .cta-response { font-size:0.72rem; letter-spacing:0.04em; color:rgba(180,185,199,0.5); margin-top:1.25rem; }

@media (max-width: 1100px) {
  body.page-image #page-hero { grid-template-columns: 0.8fr 1.4fr 0.8fr; }
  body.page-image .results-grid { grid-template-columns: 1fr 1fr; }
  body.page-image .result-card { border-right: none; border-bottom: 1px solid rgba(57,61,71,0.1); padding: 2rem 0; }
  body.page-image .result-card:nth-child(odd) { padding-right: 2rem; border-right: 1px solid rgba(57,61,71,0.1); }
  body.page-image .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  body.page-image .footer-top > div:first-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  body.page-image #page-hero { grid-template-columns: 1fr; min-height: auto; }
  body.page-image .hero-photo-col { display: none; }
  body.page-image .hero-video-col { display: none; }
  body.page-image .hero-center-col { padding: 4rem 6vw 3rem; align-items: flex-start; text-align: left; }
  body.page-image .hero-frame, body.page-image .hero-frame-b { display: none; }
  body.page-image .pillar-indicator { position: static; margin-bottom: 2rem; }
  body.page-image .hero-center-col { flex-direction: column; }
  body.page-image .hero-center-scroll { display: none; }
  body.page-image #reel { grid-template-columns: 1fr; gap: 3rem; }
  body.page-image .services-split { grid-template-columns: 1fr; gap: 3rem; }
  body.page-image .services-col:last-child { border-left: none; border-top: 1px solid var(--light-gray); padding: 3rem 0 0 0; }
  body.page-image .services-col { padding: 0; }
  body.page-image .process-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  body.page-image .process-steps { grid-template-columns: 1fr 1fr; }
  body.page-image .results-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  body.page-image .results-header-right { text-align: left; max-width: 100%; }
}

@media (max-width: 768px) {
  body.page-image .nav-links { display: none; }
  body.page-image .nav-hamburger { display: flex; }
  body.page-image .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  body.page-image .explore-grid { grid-template-columns: 1fr; }
  body.page-image .cta-actions { flex-direction: column; align-items: center; }
  body.page-image .work-card:nth-child(1), body.page-image .work-card:nth-child(2), body.page-image .work-card:nth-child(3), body.page-image .work-card:nth-child(4) { grid-column: span 12; }
  body.page-image .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  body.page-image .footer-top > div:first-child { grid-column: span 1; }
  body.page-image .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  body.page-image .results-grid { grid-template-columns: 1fr; }
  body.page-image .result-card:nth-child(odd) { border-right: none; padding-right: 0; }
  body.page-image .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}


/* ============================================================
   PAGE: Brand (brand.html)
   Scope: body.page-brand
   ============================================================ */
body.page-brand .nav-cta { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; background: var(--dark); color: var(--cream) !important; padding: 0.6rem 1.4rem; text-decoration: none; transition: background 0.2s; }

body.page-brand .nav-cta:hover { background: var(--orange) !important; color: var(--white) !important; }

body.page-brand #page-hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

body.page-brand .hero-bg-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  font-family: var(--font-display);
  font-size: clamp(20rem, 35vw, 38rem);
  font-weight: 600;
  color: rgba(255,255,255,0.022);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
}

body.page-brand .pillar-indicator {
  position: absolute;
  top: calc(80px + 1.5rem);
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeDown 0.6s 0.1s forwards;
}

body.page-brand .pi-item { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(180,185,199,0.4); }

body.page-brand .pi-item.pi-active { color: var(--orange); }

body.page-brand .pi-item a { color: inherit; text-decoration: none; transition: color 0.2s; }

body.page-brand .pi-item a:hover { color: var(--mid-gray); }

body.page-brand .pi-divider { color: rgba(180,185,199,0.18); font-size: 0.65rem; }

body.page-brand .hero-inner {
  padding: 0 8vw 5vw;
  position: relative;
  z-index: 2;
}

body.page-brand .hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(180,185,199,0.45);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}

body.page-brand .hero-breadcrumb a { color: rgba(180,185,199,0.45); text-decoration: none; transition: color 0.2s; }

body.page-brand .hero-breadcrumb a:hover { color: var(--mid-gray); }

body.page-brand .hero-breadcrumb span:last-child { color: var(--cream); }

body.page-brand .hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7.5vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

body.page-brand .hero-headline em {
  display: block;
  font-style: italic;
  color: var(--orange);
}

body.page-brand .hero-headline strong {
  font-weight: 300;
  color: rgba(238,225,198,0.4);
}

body.page-brand .hero-rule {
  width: 100%;
  height: 1px;
  background: rgba(238,225,198,0.1);
  margin: 3rem 0;
  opacity: 0;
  animation: fadeUp 0.4s 0.6s forwards;
}

body.page-brand .hero-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  opacity: 0;
  animation: fadeUp 0.6s 0.7s forwards;
}

body.page-brand .hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 1.8;
  max-width: 460px;
}

body.page-brand .hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

body.page-brand .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body.page-brand .hero-tag {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(180,185,199,0.5);
  border: 1px solid rgba(180,185,199,0.15);
  padding: 0.35rem 0.75rem;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}

body.page-brand .hero-tag:hover { border-color: rgba(234,107,33,0.4); color: rgba(234,107,33,0.7); }

body.page-brand #manifesto {
  background: var(--cream);
  padding: 7rem 8vw;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

body.page-brand .manifesto-left {}

body.page-brand .manifesto-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}

body.page-brand .manifesto-eyebrow::before { content: ""; display: inline-block; width: 20px; height: 1px; background: var(--orange); }

body.page-brand .manifesto-pull {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

body.page-brand .manifesto-pull em { font-style: italic; color: var(--orange); }

body.page-brand .manifesto-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-text);
  margin-bottom: 1rem;
  max-width: 520px;
}

body.page-brand .manifesto-right {}

body.page-brand .brand-system-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 2rem;
  position: relative;
}

body.page-brand .bsc-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-brand .bsc-label::after { content: "Brand System"; }

body.page-brand .bsc-label span { color: var(--orange); }

body.page-brand .bsc-logo-area {
  background: var(--light-gray);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

body.page-brand .bsc-logo-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

body.page-brand .bsc-logo-mark {
  width: 36px; height: 36px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
}

body.page-brand .bsc-logo-mark::after {
  content: "";
  width: 16px; height: 16px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

body.page-brand .bsc-logo-text-group { display: flex; flex-direction: column; gap: 2px; }

body.page-brand .bsc-logo-wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1;
}

body.page-brand .bsc-logo-tagline {
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

body.page-brand .bsc-logo-placeholder-label {
  position: absolute;
  top: 6px; right: 8px;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(180,185,199,0.6);
}

body.page-brand .bsc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }

body.page-brand .bsc-block-label { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 0.6rem; }

body.page-brand .bsc-palette { display: flex; gap: 4px; }

body.page-brand .bsc-swatch { height: 28px; flex: 1; }

body.page-brand .bsc-swatch:nth-child(1) { background: var(--dark); }

body.page-brand .bsc-swatch:nth-child(2) { background: var(--orange); }

body.page-brand .bsc-swatch:nth-child(3) { background: var(--cream); border: 1px solid var(--cream-dark); }

body.page-brand .bsc-swatch:nth-child(4) { background: var(--light-gray); }

body.page-brand .bsc-type-block { display: flex; flex-direction: column; gap: 3px; }

body.page-brand .bsc-type-display {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

body.page-brand .bsc-type-body {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

body.page-brand .bsc-guidelines {
  border-top: 1px solid var(--light-gray);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body.page-brand .bsc-guideline-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  color: var(--mid-gray);
}

body.page-brand .bsc-guideline-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

body.page-brand #services {
  background: var(--white);
  padding: 7rem 0;
}

body.page-brand .services-header {
  padding: 0 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

body.page-brand .services-header-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5A5E68;
  max-width: 480px;
}

body.page-brand .services-bands {
  border-top: 1px solid var(--light-gray);
}

body.page-brand .service-band {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 120px;
  align-items: center;
  gap: 2rem;
  padding: 2rem 8vw;
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.2s, border-left-color 0.2s;
  border-left: 3px solid transparent;
  cursor: default;
}

body.page-brand .service-band:hover {
  background: rgba(238,225,198,0.18);
  border-left-color: var(--orange);
}

body.page-brand .service-band-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--dark);
  opacity: 0.15;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

body.page-brand .service-band:hover .service-band-num { opacity: 0.4; }

body.page-brand .service-band-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

body.page-brand .service-band-desc {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.65;
  color: #777B85;
}

body.page-brand .service-band-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(234,107,33,0.3);
  padding: 0.3rem 0.7rem;
  text-align: center;
  white-space: nowrap;
  justify-self: end;
}

body.page-brand #process {
  background: var(--light-gray);
  padding: 7rem 8vw;
  position: relative;
  overflow: hidden;
}

body.page-brand .process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

body.page-brand .process-header-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5A5E68;
  max-width: 440px;
}

body.page-brand .process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

body.page-brand .process-step {
  padding: 2.5rem 3rem 2.5rem 0;
  border-bottom: 1px solid rgba(57,61,71,0.1);
  position: relative;
}

body.page-brand .process-step:nth-child(even) {
  padding: 2.5rem 0 2.5rem 3rem;
  border-left: 1px solid rgba(57,61,71,0.1);
}

body.page-brand .process-step:nth-child(5) {
  grid-column: span 2;
  padding: 2.5rem 0 0 0;
  border-bottom: none;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

body.page-brand .process-step:nth-child(5) .process-deliverable {
  margin-top: 0;
}

body.page-brand .process-step-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(234,107,33,0.3);
  padding: 0.25rem 0.6rem;
  display: inline-block;
  margin-bottom: 1rem;
}

body.page-brand .process-step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}

body.page-brand .process-step-num::after {
  content: "";
  display: block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  bottom: -0.2rem; left: 0;
}

body.page-brand .process-step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

body.page-brand .process-step-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: #6B6E77;
  margin-bottom: 1rem;
}

body.page-brand .process-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}

body.page-brand .process-deliverable::before {
  content: "→";
  flex-shrink: 0;
}

body.page-brand #clients {
  background: var(--dark-deep);
  padding: 6rem 8vw;
  position: relative;
  overflow: hidden;
}

body.page-brand .clients-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

body.page-brand .clients-header-right {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 1.75;
  max-width: 400px;
  text-align: right;
}

body.page-brand .clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

body.page-brand .client-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: background 0.2s;
  cursor: default;
}

body.page-brand .client-item:last-child { border-right: none; }

body.page-brand .client-item:hover { background: rgba(255,255,255,0.03); }

body.page-brand .client-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 24px; height: 1.5px;
  background: var(--orange);
  opacity: 0.5;
}

body.page-brand .client-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: rgba(238,225,198,0.55);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.85rem;
  transition: color 0.2s;
}

body.page-brand .client-item:hover .client-name { color: var(--cream); }

body.page-brand .client-work {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(180,185,199,0.45);
  line-height: 1.5;
}

body.page-brand .clients-footnote {
  margin-top: 3rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(180,185,199,0.35);
  font-style: italic;
}

body.page-brand .clients-bg {
  position: absolute;
  right: -40px; bottom: -50px;
  font-family: var(--font-display);
  font-size: 18vw; font-weight: 600;
  color: rgba(255,255,255,0.018);
  line-height: 1; pointer-events: none;
}

body.page-brand #work { background: var(--white); padding: 7rem 8vw; }

body.page-brand .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 4rem; gap: 2rem; }

body.page-brand .section-link { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; border-bottom: 1px solid var(--mid-gray); padding-bottom: 2px; flex-shrink: 0; transition: color 0.2s, border-color 0.2s; }

body.page-brand .section-link:hover { color: var(--orange); border-color: var(--orange); }

body.page-brand .work-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 1.5rem; }

body.page-brand .work-card { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block; }

body.page-brand .work-card:nth-child(1) { grid-column: span 6; }

body.page-brand .work-card:nth-child(2) { grid-column: span 6; }

body.page-brand .work-card:nth-child(3) { grid-column: span 4; }

body.page-brand .work-card:nth-child(4) { grid-column: span 8; }

body.page-brand .work-card-img { width: 100%; padding-bottom: 70%; position: relative; overflow: hidden; }

body.page-brand .work-card-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }

body.page-brand .work-card:nth-child(1) .work-card-placeholder { background: var(--cream); }

body.page-brand .work-card:nth-child(2) .work-card-placeholder { background: var(--dark); }

body.page-brand .work-card:nth-child(3) .work-card-placeholder { background: var(--light-gray); }

body.page-brand .work-card:nth-child(4) .work-card-placeholder { background: #2A2D35; }

body.page-brand .work-card-overlay { position: absolute; inset: 0; background: var(--dark); opacity: 0; transition: opacity 0.35s; display: flex; align-items: center; justify-content: center; }

body.page-brand .work-card:hover .work-card-overlay { opacity: 0.82; }

body.page-brand .work-card-cta { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); opacity: 0; transform: translateY(8px); transition: opacity 0.3s 0.05s, transform 0.3s 0.05s; }

body.page-brand .work-card:hover .work-card-cta { opacity: 1; transform: translateY(0); }

body.page-brand .placeholder-icon { font-family: var(--font-display); font-size: 0.95rem; font-weight: 300; letter-spacing: 0.1em; opacity: 0.2; }

body.page-brand .work-card:nth-child(1) .placeholder-icon { color: var(--dark); }

body.page-brand .work-card:nth-child(2) .placeholder-icon { color: var(--cream); }

body.page-brand .work-card:nth-child(3) .placeholder-icon { color: var(--dark); }

body.page-brand .work-card:nth-child(4) .placeholder-icon { color: var(--cream); }

body.page-brand .work-card-info { padding: 1rem 0 0.5rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }

body.page-brand .work-card-tag { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.3rem; }

body.page-brand .work-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--dark); }

body.page-brand .work-card-result { font-size: 0.72rem; color: var(--mid-gray); font-style: italic; text-align: right; flex-shrink: 0; max-width: 160px; line-height: 1.4; }

body.page-brand #explore { background: var(--light-gray); padding: 5rem 8vw; }

body.page-brand .explore-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: #8A8E98; margin-bottom: 2.5rem; display: flex; align-items: center; gap: 0.6rem; }

body.page-brand .explore-label::before { content: ""; display: inline-block; width: 24px; height: 1px; background: #8A8E98; }

body.page-brand .explore-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

body.page-brand .explore-card { display: block; text-decoration: none; padding: 3rem; position: relative; overflow: hidden; transition: transform 0.25s; }

body.page-brand .explore-card:hover { transform: translateY(-3px); }

body.page-brand .explore-card:nth-child(1) { background: var(--dark); }

body.page-brand .explore-card:nth-child(2) { background: var(--cream); border: 1px solid var(--cream-dark); }

body.page-brand .explore-card-num { font-family: var(--font-display); font-size: 3rem; font-weight: 300; line-height: 1; margin-bottom: 1rem; opacity: 0.2; }

body.page-brand .explore-card:nth-child(1) .explore-card-num { color: var(--cream); }

body.page-brand .explore-card:nth-child(2) .explore-card-num { color: var(--dark); }

body.page-brand .explore-card-title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; line-height: 1.1; margin-bottom: 0.6rem; }

body.page-brand .explore-card:nth-child(1) .explore-card-title { color: var(--cream); }

body.page-brand .explore-card:nth-child(2) .explore-card-title { color: var(--dark); }

body.page-brand .explore-card-desc { font-size: 0.85rem; font-weight: 300; line-height: 1.6; margin-bottom: 2rem; }

body.page-brand .explore-card:nth-child(1) .explore-card-desc { color: var(--mid-gray); }

body.page-brand .explore-card:nth-child(2) .explore-card-desc { color: var(--cream-text); }

body.page-brand .explore-card-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; transition: gap 0.2s; }

body.page-brand .explore-card:nth-child(1) .explore-card-link { color: var(--orange); }

body.page-brand .explore-card:nth-child(2) .explore-card-link { color: var(--dark); }

body.page-brand .explore-card:hover .explore-card-link { gap: 0.8rem; }

body.page-brand .explore-card-bg { position: absolute; bottom: -20px; right: -10px; font-family: var(--font-display); font-size: 10rem; font-weight: 600; line-height: 1; pointer-events: none; opacity: 0.06; }

body.page-brand .explore-card:nth-child(1) .explore-card-bg { color: var(--cream); }

body.page-brand .explore-card:nth-child(2) .explore-card-bg { color: var(--dark); }

body.page-brand #cta { background: var(--dark); padding: 7rem 8vw; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; overflow: hidden; }

body.page-brand .cta-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

body.page-brand .cta-bg-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(234,107,33,0.1); }

body.page-brand .cta-bg-circle:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -150px; }

body.page-brand .cta-bg-circle:nth-child(2) { width: 400px; height: 400px; top: -100px; right: -50px; }

body.page-brand .cta-bg-circle:nth-child(3) { width: 200px; height: 200px; top: 0; right: 50px; }

body.page-brand .cta-eyebrow { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.25rem; }

body.page-brand .cta-headline { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; color: var(--cream); line-height: 1.1; max-width: 640px; margin-bottom: 1.5rem; }

body.page-brand .cta-headline em { font-style: italic; }

body.page-brand .cta-sub { font-size: 0.95rem; font-weight: 300; color: var(--mid-gray); margin-bottom: 3rem; }

body.page-brand .cta-actions { display: flex; align-items: center; gap: 1.5rem; }

body.page-brand .cta-response { font-size: 0.72rem; letter-spacing: 0.04em; color: rgba(180,185,199,0.5); margin-top: 1.25rem; }

@media (max-width: 1100px) {
  body.page-brand .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  body.page-brand .service-band { grid-template-columns: 60px 1fr 1fr; }
  body.page-brand .service-band-tag { display: none; }
  body.page-brand .clients-grid { grid-template-columns: 1fr 1fr; }
  body.page-brand .client-item:nth-child(2) { border-right: none; }
  body.page-brand .client-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.05); }
  body.page-brand .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  body.page-brand .footer-top > div:first-child { grid-column: span 2; }
}

@media (max-width: 960px) {
  body.page-brand #manifesto { grid-template-columns: 1fr; gap: 3rem; }
  body.page-brand .process-header { grid-template-columns: 1fr; gap: 1.5rem; }
  body.page-brand .clients-header { grid-template-columns: 1fr; gap: 1.5rem; }
  body.page-brand .clients-header-right { text-align: left; }
  body.page-brand .process-step:nth-child(5) { grid-template-columns: auto 1fr; }
  body.page-brand .process-step:nth-child(5) .process-deliverable { grid-column: 2; }
}

@media (max-width: 768px) {
  body.page-brand .nav-links { display: none; }
  body.page-brand .nav-hamburger { display: flex; }
  body.page-brand .hero-lower { grid-template-columns: 1fr; gap: 2rem; }
  body.page-brand .service-band { grid-template-columns: 50px 1fr; gap: 1rem; }
  body.page-brand .service-band-desc { display: none; }
  body.page-brand .process-grid { grid-template-columns: 1fr; }
  body.page-brand .process-step:nth-child(even) { padding: 2.5rem 0; border-left: none; }
  body.page-brand .process-step:nth-child(5) { grid-template-columns: 1fr; }
  body.page-brand .clients-grid { grid-template-columns: 1fr 1fr; }
  body.page-brand .explore-grid { grid-template-columns: 1fr; }
  body.page-brand .cta-actions { flex-direction: column; align-items: center; }
  body.page-brand .work-card:nth-child(1), body.page-brand .work-card:nth-child(2), body.page-brand .work-card:nth-child(3), body.page-brand .work-card:nth-child(4) { grid-column: span 12; }
  body.page-brand .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  body.page-brand .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  body.page-brand .footer-top > div:first-child { grid-column: span 1; }
  body.page-brand .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  body.page-brand .clients-grid { grid-template-columns: 1fr; }
  body.page-brand .client-item:nth-child(2) { border-right: none; }
  body.page-brand .client-item:nth-child(n) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  body.page-brand .service-band { padding: 1.5rem 6vw; }
}


/* ============================================================
   PAGE: Work / Portfolio (work.html)
   Scope: body.page-work
   ============================================================ */
body.page-work .nav-cta { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; background: var(--dark); color: var(--cream) !important; padding: 0.6rem 1.4rem; text-decoration: none; transition: background 0.2s; }

body.page-work .nav-cta:hover { background: var(--orange) !important; color: var(--white) !important; }

body.page-work #page-hero {
  background: var(--dark);
  min-height: 52vh;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

body.page-work .hero-bg-text {
  position: absolute;
  bottom: -20px;
  left: -10px;
  font-family: var(--font-display);
  font-size: clamp(12rem, 22vw, 22rem);
  font-weight: 600;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

body.page-work .hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
  padding: 4vw 6vw 3rem;
  position: relative;
  z-index: 2;
}

body.page-work .hero-headline-group {
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

body.page-work .hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(234,107,33,0.7);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}

body.page-work .hero-eyebrow::before { content: ""; display: inline-block; width: 20px; height: 1px; background: rgba(234,107,33,0.7); }

body.page-work .hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.02em;
}

body.page-work .hero-headline em { font-style: italic; color: var(--orange); }

body.page-work .hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
  text-align: right;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s forwards;
}

body.page-work .hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

body.page-work .hero-stat-num em { font-style: normal; color: var(--orange); }

body.page-work .hero-stat-label { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(180,185,199,0.5); margin-top: 0.2rem; }

body.page-work #filter-bar {
  position: sticky;
  top: 70px;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-gray);
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body.page-work .filter-buttons {
  display: flex;
  align-items: center;
  gap: 0;
}

body.page-work .filter-btn {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--mid-gray);
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: color 0.2s;
}

body.page-work .filter-btn::after {
  content: "";
  position: absolute;
  bottom: 0; left: 1.25rem; right: 1.25rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

body.page-work .filter-btn:hover { color: var(--dark); }

body.page-work .filter-btn.active { color: var(--dark); }

body.page-work .filter-btn.active::after { transform: scaleX(1); }

body.page-work .filter-count {
  font-size: 0.6rem;
  font-weight: 400;
  background: var(--light-gray);
  color: var(--mid-gray);
  padding: 0.15rem 0.45rem;
  border-radius: 20px;
  min-width: 20px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0;
}

body.page-work .filter-btn.active .filter-count {
  background: rgba(234,107,33,0.12);
  color: var(--orange);
}

body.page-work .filter-showing {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--mid-gray);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

body.page-work .filter-showing strong { font-weight: 500; color: var(--dark); }

body.page-work #portfolio {
  background: var(--white);
  padding: 3rem 6vw 6rem;
}

body.page-work .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

body.page-work .work-card { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block; transition: opacity 0.28s ease, transform 0.28s ease; }

body.page-work .work-card.card-lg { grid-column: span 8; }

body.page-work .work-card.card-sm { grid-column: span 4; }

body.page-work .work-card.card-md { grid-column: span 6; }

body.page-work .portfolio-grid.filtered .work-card { grid-column: span 4 !important; }

body.page-work .work-card-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}

body.page-work .card-lg .work-card-img { padding-bottom: 52%; }

body.page-work .card-sm .work-card-img { padding-bottom: 80%; }

body.page-work .card-md .work-card-img { padding-bottom: 65%; }

body.page-work .work-card-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s ease;
}

body.page-work .work-card:hover .work-card-placeholder { transform: scale(1.03); }

body.page-work .bg-cream { background: var(--cream); }

body.page-work .bg-cream-dk { background: var(--cream-dark); }

body.page-work .bg-cream-lt { background: #F4EBD8; }

body.page-work .bg-warm-dark { background: #3A2E1F; }

body.page-work .bg-dark-deep { background: var(--dark-deep); }

body.page-work .bg-dark { background: var(--dark); }

body.page-work .bg-dark-mid { background: #2E323B; }

body.page-work .bg-ink { background: #1A1C21; }

body.page-work .bg-lgray { background: var(--light-gray); }

body.page-work .bg-mgray { background: #CCCDD0; }

body.page-work .bg-brand-dk { background: #2F3240; }

body.page-work .bg-stone { background: #D8D4CC; }

body.page-work .placeholder-watermark {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.18;
  text-align: center;
  padding: 1rem;
  line-height: 1.4;
}

body.page-work .watermark-light { color: var(--dark); }

body.page-work .watermark-dark { color: var(--cream); }

body.page-work .work-card-overlay {
  position: absolute; inset: 0;
  background: var(--dark);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
}

body.page-work .work-card:hover .work-card-overlay { opacity: 0.84; }

body.page-work .overlay-cta {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cream);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.25s 0.05s, transform 0.25s 0.05s;
  display: flex; align-items: center; gap: 0.5rem;
}

body.page-work .work-card:hover .overlay-cta { opacity: 1; transform: translateY(0); }

body.page-work .work-card-info {
  padding: 0.9rem 0 0;
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem;
}

body.page-work .work-card-meta {}

body.page-work .work-card-tag {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.3rem;
}

body.page-work .work-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 400; color: var(--dark);
  line-height: 1.25;
}

body.page-work .work-card-result {
  font-size: 0.7rem; color: var(--mid-gray);
  font-style: italic; text-align: right;
  flex-shrink: 0; max-width: 150px; line-height: 1.4;
}

body.page-work .work-card-img::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
}

body.page-work .work-card:hover .work-card-img::before { opacity: 1; }

body.page-work [data-pillar="design"] .work-card-img::before { background: var(--cream-dark); }

body.page-work [data-pillar="image"]  .work-card-img::before { background: var(--orange); }

body.page-work [data-pillar="brand"]  .work-card-img::before { background: var(--mid-gray); }

body.page-work .portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  display: none;
}

body.page-work .portfolio-empty.visible { display: block; }

body.page-work .portfolio-empty p { font-size: 1rem; color: var(--mid-gray); font-weight: 300; }

body.page-work #stats {
  background: var(--cream);
  padding: 5rem 6vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

body.page-work .stat-item {
  padding: 0 3rem 0 0;
  border-right: 1px solid rgba(57,61,71,0.12);
}

body.page-work .stat-item:first-child { padding-left: 0; }

body.page-work .stat-item:last-child { border-right: none; padding: 0 0 0 3rem; }

body.page-work .stat-item:not(:first-child):not(:last-child) { padding: 0 3rem; }

body.page-work .stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}

body.page-work .stat-num em { font-style: normal; color: var(--orange); }

body.page-work .stat-label {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream-text); margin-bottom: 0.5rem;
}

body.page-work .stat-desc {
  font-size: 0.78rem; font-weight: 300;
  color: var(--cream-text); line-height: 1.5; font-style: italic;
}

body.page-work #cta { background: var(--dark); padding: 7rem 6vw; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; overflow: hidden; }

body.page-work .cta-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

body.page-work .cta-bg-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(234,107,33,0.1); }

body.page-work .cta-bg-circle:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -150px; }

body.page-work .cta-bg-circle:nth-child(2) { width: 400px; height: 400px; top: -100px; right: -50px; }

body.page-work .cta-bg-circle:nth-child(3) { width: 200px; height: 200px; top: 0; right: 50px; }

body.page-work .cta-eyebrow { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.25rem; position: relative; z-index: 1; }

body.page-work .cta-headline { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; color: var(--cream); line-height: 1.1; max-width: 640px; margin-bottom: 1.5rem; position: relative; z-index: 1; }

body.page-work .cta-headline em { font-style: italic; }

body.page-work .cta-sub { font-size: 0.95rem; font-weight: 300; color: var(--mid-gray); margin-bottom: 3rem; position: relative; z-index: 1; }

body.page-work .cta-actions { display: flex; align-items: center; gap: 1.5rem; position: relative; z-index: 1; }

body.page-work .cta-response { font-size: 0.72rem; letter-spacing: 0.04em; color: rgba(180,185,199,0.5); margin-top: 1.25rem; position: relative; z-index: 1; }

@media (max-width: 1100px) {
  body.page-work .work-card.card-lg { grid-column: span 12; }
  body.page-work .work-card.card-sm { grid-column: span 6; }
  body.page-work .work-card.card-md { grid-column: span 6; }
  body.page-work .portfolio-grid.filtered .work-card { grid-column: span 6 !important; }
  body.page-work #stats { grid-template-columns: 1fr 1fr; gap: 2rem; }
  body.page-work .stat-item { padding: 0 !important; border-right: none; border-bottom: 1px solid rgba(57,61,71,0.1); padding-bottom: 2rem !important; }
  body.page-work .stat-item:nth-child(odd) { padding-right: 2rem !important; border-right: 1px solid rgba(57,61,71,0.1); border-bottom: none; }
  body.page-work .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  body.page-work .footer-top > div:first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  body.page-work .nav-links { display: none; }
  body.page-work .nav-hamburger { display: flex; }
  body.page-work .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  body.page-work .hero-stats { flex-direction: row; align-items: flex-start; text-align: left; }
  body.page-work .filter-showing { display: none; }
  body.page-work .work-card.card-lg, body.page-work .work-card.card-sm, body.page-work .work-card.card-md { grid-column: span 12; }
  body.page-work .portfolio-grid.filtered .work-card { grid-column: span 12 !important; }
  body.page-work #stats { grid-template-columns: 1fr 1fr; }
  body.page-work .stat-item:nth-child(odd) { padding-right: 1.5rem !important; }
  body.page-work .cta-actions { flex-direction: column; align-items: center; }
  body.page-work .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  body.page-work .footer-top > div:first-child { grid-column: span 1; }
  body.page-work .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  body.page-work .filter-btn { padding: 1rem 0.75rem; font-size: 0.7rem; }
  body.page-work .filter-count { display: none; }
  body.page-work #stats { grid-template-columns: 1fr 1fr; }
}

body.page-work #experience{
  padding: 7rem 6vw;
}

body.page-work .legal{
  padding-top:2rem;
}

body.page-work .legal p{
  padding-bottom:1rem;
}

body.page-work .legal ul{
  padding-left:30px;
  padding-bottom:1rem;
}


/* ============================================================
   PAGE: About (about.html)
   Scope: body.page-about
   ============================================================ */
body.page-about .nav-cta { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; background: var(--dark); color: var(--cream) !important; padding: 0.6rem 1.4rem; text-decoration: none; transition: background 0.2s; }

body.page-about .nav-cta:hover { background: var(--orange) !important; color: var(--white) !important; }

body.page-about #page-hero {
  background: var(--cream);
  min-height: 100vh;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

body.page-about .hero-bg-initial {
  position: absolute;
  top: 50%;
  right: -2vw;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(18rem, 28vw, 30rem);
  font-weight: 600;
  color: rgba(57,61,71,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

body.page-about .hero-left {
  padding: 6vw 4vw 6vw 6vw;
  position: relative;
  z-index: 2;
}

body.page-about .hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.5s 0.15s forwards;
}

body.page-about .hero-eyebrow::before { content: ""; display: inline-block; width: 20px; height: 1px; background: var(--orange); }

body.page-about .hero-name {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.25s forwards;
}

body.page-about .hero-name-first {
  display: block;
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  color: var(--dark);
}

body.page-about .hero-name-last {
  display: block;
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  color: var(--orange);
  font-style: italic;
}

body.page-about .hero-title {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cream-text);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.42s forwards;
}

body.page-about .hero-title span { color: var(--dark); font-weight: 500; }

body.page-about .hero-bio {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-text);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.55s forwards;
}

body.page-about .hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.5s 0.68s forwards;
}

body.page-about .hero-quick-facts {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(57,61,71,0.1);
  opacity: 0;
  animation: fadeUp 0.5s 0.78s forwards;
}

body.page-about .quick-fact-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}

body.page-about .quick-fact-num em { font-style: normal; color: var(--orange); }

body.page-about .quick-fact-label { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream-text); margin-top: 0.2rem; }

body.page-about .hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6vw 6vw 6vw 2vw;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}

body.page-about .photo-frame {
  width: 100%;
  max-width: 360px;
  position: relative;
}

body.page-about .photo-container {
  width: 100%;
  padding-bottom: 120%;
  background: var(--dark-deep);
  position: relative;
  overflow: hidden;
}

body.page-about .photo-container::before, body.page-about .photo-container::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border-color: rgba(234,107,33,0.4);
  border-style: solid;
  z-index: 3;
}

body.page-about .photo-container::before { top: 12px; left: 12px; border-width: 1.5px 0 0 1.5px; }

body.page-about .photo-container::after { top: 12px; right: 12px; border-width: 1.5px 1.5px 0 0; }

body.page-about .photo-corner-b {
  position: absolute;
  inset: 0; z-index: 3; pointer-events: none;
}

body.page-about .photo-corner-b::before, body.page-about .photo-corner-b::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border-color: rgba(234,107,33,0.4);
  border-style: solid;
}

body.page-about .photo-corner-b::before { bottom: 12px; left: 12px; border-width: 0 0 1.5px 1.5px; }

body.page-about .photo-corner-b::after { bottom: 12px; right: 12px; border-width: 0 1.5px 1.5px 0; }

body.page-about .photo-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
}

body.page-about .photo-icon {
  width: 64px; height: 64px;
  border: 1px solid rgba(238,225,198,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

body.page-about .photo-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238,225,198,0.25);
}

body.page-about .photo-accent {
  position: absolute;
  left: -4px; top: 20%;
  width: 4px; height: 60%;
  background: var(--orange);
  opacity: 0.6;
}

body.page-about .photo-caption {
  margin-top: 1.25rem;
  text-align: center;
}

body.page-about .photo-caption-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.04em;
}

body.page-about .photo-caption-title {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--cream-text);
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

body.page-about #story {
  background: var(--white);
  padding: 7rem 6vw;
}

body.page-about .story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 6rem;
  align-items: start;
}

body.page-about .story-body {}

body.page-about .story-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 2rem; display: flex; align-items: center; gap: 0.6rem;
}

body.page-about .story-label::before { content: ""; display: inline-block; width: 24px; height: 1px; background: var(--orange); }

body.page-about .story-p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: #4A4E58;
  margin-bottom: 1.5rem;
  max-width: 580px;
}

body.page-about .story-p:first-of-type { font-size: 1.15rem; color: var(--dark); }

body.page-about .story-p strong { font-weight: 500; color: var(--dark); }

body.page-about .story-aside {}

body.page-about .story-pull {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--dark);
  border-left: 3px solid var(--orange);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}

body.page-about .story-credentials {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.page-about .credential {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

body.page-about .credential:first-child { border-top: 1px solid var(--light-gray); }

body.page-about .credential-icon {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

body.page-about .credential-body {}

body.page-about .credential-title { font-size: 0.88rem; font-weight: 500; color: var(--dark); margin-bottom: 0.2rem; }

body.page-about .credential-detail { font-size: 0.78rem; font-weight: 300; color: #888; line-height: 1.5; }

body.page-about #experience {
  background: var(--light-gray);
  padding: 7rem 6vw;
}

body.page-about .exp-header {
  margin-bottom: 4rem;
}

body.page-about .exp-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.page-about .exp-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(57,61,71,0.12);
  position: relative;
}

body.page-about .exp-item:last-child { border-bottom: 1px solid rgba(57,61,71,0.12); }

body.page-about .exp-left {}

body.page-about .exp-dates {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

body.page-about .exp-org {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

body.page-about .exp-role {
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.02em;
}

body.page-about .exp-type {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(234,107,33,0.3);
  padding: 0.25rem 0.6rem;
}

body.page-about .exp-right {}

body.page-about .exp-desc {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5A5E68;
  margin-bottom: 1.25rem;
}

body.page-about .exp-achievements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body.page-about .exp-achievements li {
  font-size: 0.82rem;
  font-weight: 400;
  color: #6B6E77;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  line-height: 1.5;
}

body.page-about .exp-achievements li::before {
  content: "";
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 10px;
}

body.page-about .exp-achievements li strong { font-weight: 500; color: var(--dark); }

body.page-about .exp-education {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding: 2.5rem 0 0;
}

body.page-about .edu-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 0.5rem; }

body.page-about .edu-degree { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--dark); }

body.page-about .edu-detail { font-size: 0.78rem; color: #888; margin-top: 0.25rem; }

body.page-about #skills {
  background: var(--light-gray);
  padding: 7rem 6vw;
}

body.page-about .skills-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

body.page-about .skills-intro-body {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: var(--dark); max-width: 460px;
}

body.page-about .skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--light-gray);
}

body.page-about .skill-category {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
  position: relative;
  transition: background 0.2s;
}

body.page-about .skill-category:hover { background: #FAFAFA; }

body.page-about .skill-category:nth-child(3), body.page-about .skill-category:nth-child(6) { border-right: none; }

body.page-about .skill-category:nth-child(4), body.page-about .skill-category:nth-child(5), body.page-about .skill-category:nth-child(6) { border-bottom: none; }

body.page-about .skill-category::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

body.page-about .skill-category:hover::before { transform: scaleX(1); }

body.page-about .skill-cat-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400; color: var(--dark);
  margin-bottom: 1rem; line-height: 1.2;
}

body.page-about .skill-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.35rem;
}

body.page-about .skill-list li {
  font-size: 0.78rem; font-weight: 300; color: #777B85;
  display: flex; align-items: center; gap: 0.5rem;
}

body.page-about .skill-list li::before {
  content: "";
  display: inline-block; width: 10px; height: 1px;
  background: rgba(234,107,33,0.4); flex-shrink: 0;
}

body.page-about #clients {
  background: var(--dark-deep);
  padding: 6rem 6vw;
  position: relative;
  overflow: hidden;
}

body.page-about .clients-bg-text {
  position: absolute; bottom: -30px; right: -20px;
  font-family: var(--font-display); font-size: 16vw; font-weight: 600;
  color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none;
}

body.page-about .clients-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

body.page-about .clients-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--cream); line-height: 1.1;
}

body.page-about .clients-headline em { font-style: italic; color: var(--orange); }

body.page-about .clients-body-right {
  font-size: 0.85rem; font-weight: 300; color: var(--mid-gray);
  line-height: 1.75; max-width: 360px; text-align: right;
}

body.page-about .clients-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 2.5rem;
}

body.page-about .client-item {
  padding: 2.25rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  cursor: default;
  transition: background 0.2s;
}

body.page-about .client-item:last-child { border-right: none; }

body.page-about .client-item:hover { background: rgba(255,255,255,0.03); }

body.page-about .client-item::before {
  content: ""; position: absolute;
  top: 0; left: 0; width: 20px; height: 1.5px;
  background: var(--orange); opacity: 0.4;
}

body.page-about .client-name {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 400;
  color: rgba(238,225,198,0.5); letter-spacing: 0.04em; line-height: 1;
  margin-bottom: 0.75rem; transition: color 0.2s;
}

body.page-about .client-item:hover .client-name { color: var(--cream); }

body.page-about .client-work { font-size: 0.7rem; font-weight: 300; color: rgba(180,185,199,0.4); line-height: 1.5; letter-spacing: 0.02em; }

body.page-about .clients-industries {
  font-size: 0.78rem; font-weight: 300;
  color: rgba(180,185,199,0.35); font-style: italic;
  line-height: 1.6;
}

body.page-about #cta {
  background: var(--dark);
  padding: 7rem 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

body.page-about .cta-left {}

body.page-about .cta-eyebrow { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.6rem; }

body.page-about .cta-eyebrow::before { content: ""; display: inline-block; width: 20px; height: 1px; background: var(--orange); }

body.page-about .cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 1.5rem;
}

body.page-about .cta-headline em { font-style: italic; }

body.page-about .cta-sub { font-size: 0.95rem; font-weight: 300; color: var(--mid-gray); line-height: 1.75; margin-bottom: 2.5rem; }

body.page-about .cta-actions { display: flex; align-items: center; gap: 1.5rem; }

body.page-about .cta-response { font-size: 0.72rem; color: rgba(180,185,199,0.45); margin-top: 1.25rem; }

body.page-about .cta-right {
  position: relative;
  z-index: 2;
}

body.page-about .cta-contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(238,225,198,0.08);
  padding: 2.5rem;
}

body.page-about .cta-contact-label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(180,185,199,0.5);
  margin-bottom: 1.5rem;
}

body.page-about .cta-contact-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

body.page-about .cta-contact-row:last-of-type { border-bottom: none; }

body.page-about .cta-contact-icon { color: var(--orange); opacity: 0.7; flex-shrink: 0; }

body.page-about .cta-contact-value { font-size: 0.88rem; font-weight: 300; color: rgba(238,225,198,0.7); }

body.page-about .cta-contact-value a { color: inherit; text-decoration: none; transition: color 0.2s; }

body.page-about .cta-contact-value a:hover { color: var(--cream); }

body.page-about .cta-bg-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

body.page-about .cta-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(234,107,33,0.08); }

body.page-about .cta-circle:nth-child(1) { width: 500px; height: 500px; top: -200px; left: -150px; }

body.page-about .cta-circle:nth-child(2) { width: 300px; height: 300px; top: -100px; left: -50px; }

@media (max-width: 1100px) {
  body.page-about .skills-grid { grid-template-columns: 1fr 1fr; }
  body.page-about .skill-category:nth-child(3) { border-right: 1px solid var(--light-gray); }
  body.page-about .skill-category:nth-child(2n) { border-right: none; }
  body.page-about .skill-category:nth-child(5), body.page-about .skill-category:nth-child(6) { border-bottom: none; }
  body.page-about .skill-category:nth-child(3), body.page-about .skill-category:nth-child(4) { border-bottom: 1px solid var(--light-gray); }
  body.page-about .clients-logos { grid-template-columns: 1fr 1fr; }
  body.page-about .client-item:nth-child(2) { border-right: none; }
  body.page-about .client-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.05); }
  body.page-about #cta { grid-template-columns: 1fr; }
  body.page-about .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  body.page-about .footer-top > div:first-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  body.page-about #page-hero { grid-template-columns: 1fr; min-height: auto; }
  body.page-about .hero-right { padding: 0 6vw 5vw; }
  body.page-about .photo-frame { max-width: 280px; }
  body.page-about .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  body.page-about .skills-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  body.page-about .exp-item { grid-template-columns: 1fr; gap: 1.5rem; }
  body.page-about .exp-education { grid-template-columns: 1fr; gap: 1rem; }
  body.page-about .clients-top { flex-direction: column; align-items: flex-start; }
  body.page-about .clients-body-right { text-align: left; max-width: 100%; }
}

@media (max-width: 768px) {
  body.page-about .nav-links { display: none; }
  body.page-about .nav-hamburger { display: flex; }
  body.page-about .hero-quick-facts { gap: 1.5rem; flex-wrap: wrap; }
  body.page-about .skills-grid { grid-template-columns: 1fr; }
  body.page-about .skill-category:nth-child(n) { border-right: none; border-bottom: 1px solid var(--light-gray); }
  body.page-about .skill-category:last-child { border-bottom: none; }
  body.page-about .clients-logos { grid-template-columns: 1fr 1fr; }
  body.page-about .cta-actions { flex-direction: column; align-items: flex-start; }
  body.page-about .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  body.page-about .footer-top > div:first-child { grid-column: span 1; }
  body.page-about .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  body.page-about .clients-logos { grid-template-columns: 1fr; }
  body.page-about .client-item { border-right: none; }
}


/* ============================================================
   PAGE: Contact (contact.html)
   Scope: body.page-contact
   ============================================================ */
body.page-contact .nav-cta { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; background: var(--orange) !important; color: var(--white) !important; padding: 0.6rem 1.4rem; text-decoration: none; }

body.page-contact #page-hero {
  background: var(--cream);
  min-height: 72vh;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

body.page-contact .hero-bg-initial {
  position: absolute;
  bottom: -40px;
  right: -2vw;
  font-family: var(--font-display);
  font-size: clamp(16rem, 26vw, 28rem);
  font-weight: 600;
  color: rgba(57,61,71,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

body.page-contact .hero-left {
  padding: 6vw 4vw 6vw 6vw;
  position: relative;
  z-index: 2;
}

body.page-contact .hero-eyebrow {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.75rem; display: flex; align-items: center; gap: 0.6rem;
  opacity: 0; animation: fadeUp 0.5s 0.15s forwards;
}

body.page-contact .hero-eyebrow::before { content: ""; display: inline-block; width: 20px; height: 1px; background: var(--orange); }

body.page-contact .hero-name {
  font-family: var(--font-display);
  font-weight: 300; line-height: 0.92; letter-spacing: -0.02em; margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp 0.8s 0.25s forwards;
}

body.page-contact .hero-name-first { display: block; font-size: clamp(3.5rem, 6.5vw, 7rem); color: var(--dark); }

body.page-contact .hero-name-last { display: block; font-size: clamp(3.5rem, 6.5vw, 7rem); color: var(--orange); font-style: italic; }

body.page-contact .hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--cream-text);
  max-width: 460px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.6s 0.42s forwards;
}

body.page-contact .hero-direct {
  display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.5s 0.55s forwards;
}

body.page-contact .hero-direct-link {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.88rem; font-weight: 300; color: var(--cream-text); text-decoration: none; transition: color 0.2s;
}

body.page-contact .hero-direct-link:hover { color: var(--orange); }

body.page-contact .hero-direct-link svg { color: var(--orange); flex-shrink: 0; opacity: 0.7; }

body.page-contact .hero-scroll-cue {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(122,106,79,0.5); cursor: pointer; border: none; background: none;
  opacity: 0; animation: fadeUp 0.5s 0.68s forwards;
}

body.page-contact .hero-scroll-cue svg { color: var(--orange); opacity: 0.5; }

body.page-contact .hero-right {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 6vw 6vw 6vw 2vw;
  position: relative; z-index: 2;
  opacity: 0; animation: fadeUp 0.7s 0.35s forwards;
}

body.page-contact .contact-card {
  width: 100%; max-width: 380px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
}

body.page-contact .contact-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}

body.page-contact .contact-card-label {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(180,185,199,0.5); margin-bottom: 2rem;
}

body.page-contact .contact-card-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem; }

body.page-contact .contact-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

body.page-contact .contact-row:first-child { padding-top: 0; }

body.page-contact .contact-row:last-child { border-bottom: none; }

body.page-contact .contact-row-icon { color: var(--orange); opacity: 0.7; flex-shrink: 0; }

body.page-contact .contact-row-value { font-size: 0.88rem; font-weight: 300; color: rgba(238,225,198,0.7); }

body.page-contact .contact-row-value a { color: inherit; text-decoration: none; transition: color 0.2s; }

body.page-contact .contact-row-value a:hover { color: var(--cream); }

body.page-contact .contact-card-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.06); margin: 0.5rem 0 1.5rem; }

body.page-contact .contact-card-availability {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; font-weight: 400; color: rgba(238,225,198,0.55);
}

body.page-contact .availability-dot {
  width: 7px; height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(76,175,80,0.2);
}

body.page-contact .contact-card-bg {
  position: absolute; bottom: -20px; right: -15px;
  font-family: var(--font-display); font-size: 7rem; font-weight: 600;
  color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none;
}

body.page-contact #form-section {
  background: var(--white);
  padding: 7rem 6vw;
}

body.page-contact .form-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6rem;
  align-items: start;
}

body.page-contact .form-wrap {}

body.page-contact .form-header { margin-bottom: 3rem; }

body.page-contact .form-section-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.6rem;
}

body.page-contact .form-section-label::before { content: ""; display: inline-block; width: 24px; height: 1px; background: var(--orange); }

body.page-contact .form-headline {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--dark); line-height: 1.1;
}

body.page-contact .form-headline em { font-style: italic; color: var(--orange); }

body.page-contact .project-form { display: flex; flex-direction: column; gap: 1.5rem; }

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

body.page-contact .field-group { display: flex; flex-direction: column; gap: 0.4rem; }

body.page-contact .field-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dark);
}

body.page-contact .field-label .req { color: var(--orange); margin-left: 2px; }

body.page-contact .field-input {
  height: 48px;
  border: 1px solid var(--light-gray);
  border-radius: 0;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  padding: 0 1rem;
  margin-bottom:1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

body.page-contact .field-input:focus { border-color: var(--orange); }

body.page-contact .field-input.error { border-color: var(--error); }

body.page-contact .field-input::placeholder { color: var(--mid-gray); opacity: 0.6; }

body.page-contact .field-textarea {
  border: 1px solid var(--light-gray);
  border-radius: 0;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  padding: 0.85rem 1rem;
  margin-bottom:1rem;
  outline: none;
  resize: vertical;
  min-height: 130px;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

body.page-contact .field-textarea:focus { border-color: var(--orange); }

body.page-contact .field-textarea.error { border-color: var(--error); }

body.page-contact .field-textarea::placeholder { color: var(--mid-gray); opacity: 0.6; }

body.page-contact .field-error-msg {
  font-size: 0.7rem; color: var(--error); margin-top: 0.25rem; display: none;
}

body.page-contact .field-error-msg.visible { display: block; }

body.page-contact .pill-options {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; margin-bottom:1rem;
}

body.page-contact .pill-opt { position: relative; }

body.page-contact .pill-opt input[type="radio"], body.page-contact .pill-opt input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }

body.page-contact .pill-opt label {
  display: block;
  padding: 0.45rem 1rem;
  border: 1px solid var(--light-gray);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dark); cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  user-select: none;
  white-space: nowrap;
}

body.page-contact .pill-opt label:hover { border-color: var(--dark); color: var(--dark); }

body.page-contact .pill-opt input:checked + label { background: var(--dark); border-color: var(--dark); color: var(--cream); }

body.page-contact .field-select {
  height: 48px;
  border: 1px solid var(--light-gray);
  border-radius: 0;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  padding: 0 2.5rem 0 1rem;
  margin-bottom:1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B4B9C7' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

body.page-contact .field-select:focus { border-color: var(--orange); }

body.page-contact .field-select option { font-weight: 300; }

body.page-contact .form-note {
  font-size: 0.72rem; font-weight: 300; color: var(--mid-gray);
  line-height: 1.6; padding-top: 0.5rem;
}

body.page-contact .btn-submit {
  width: 100%;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  transition: background 0.2s, transform 0.15s;
}

body.page-contact .btn-submit:hover { background: var(--dark); }

body.page-contact .btn-submit:active { transform: scale(0.99); }

body.page-contact .btn-submit svg { transition: transform 0.2s; }

body.page-contact .btn-submit:hover svg { transform: translateX(4px); }

body.page-contact .form-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 3rem 0;
}

body.page-contact .form-success.visible { display: flex; }

body.page-contact .success-check {
  width: 56px; height: 56px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}

body.page-contact .success-headline {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 300; color: var(--dark); line-height: 1.1;
}

body.page-contact .success-headline em { font-style: italic; color: var(--orange); }

body.page-contact .success-sub { font-size: 0.95rem; font-weight: 300; color: #5A5E68; line-height: 1.75; max-width: 440px; }

body.page-contact .success-link {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid var(--mid-gray); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}

body.page-contact .success-link:hover { color: var(--orange); border-color: var(--orange); }

body.page-contact .success-link svg { transition: transform 0.2s; }

body.page-contact .success-link:hover svg { transform: translateX(3px); }

body.page-contact .form-sidebar { display: flex; flex-direction: column; gap: 2.5rem; }

body.page-contact .sidebar-block {}

body.page-contact .sidebar-block-title {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 400;
  color: var(--dark); margin-bottom: 1rem; line-height: 1.2;
}

body.page-contact .sidebar-block-title em { font-style: italic; color: var(--orange); }

body.page-contact .sidebar-body { font-size: 0.85rem; font-weight: 300; line-height: 1.75; color: #5A5E68; }

body.page-contact .sidebar-divider { height: 1px; background: var(--light-gray); }

body.page-contact .sidebar-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }

body.page-contact .sidebar-checklist li {
  display: flex; align-items: baseline; gap: 0.65rem;
  font-size: 0.83rem; font-weight: 300; color: #5A5E68; line-height: 1.5;
}

body.page-contact .sidebar-checklist li::before {
  content: ""; display: inline-block;
  width: 14px; height: 1px; background: var(--orange); flex-shrink: 0; margin-top: 10px;
}

body.page-contact .sidebar-fit-box {
  background: var(--cream);
  border-left: 3px solid var(--orange);
  padding: 1.25rem 1.5rem;
}

body.page-contact .sidebar-fit-title {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.6rem;
}

body.page-contact .sidebar-fit-body { font-size: 0.82rem; font-weight: 300; line-height: 1.7; color: var(--cream-text); }

body.page-contact .sidebar-social { display: flex; flex-direction: column; gap: 0.5rem; }

body.page-contact .social-link {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.82rem; font-weight: 300; color: #777;
  text-decoration: none; padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray); transition: color 0.2s;
}

body.page-contact .social-link:last-child { border-bottom: none; }

body.page-contact .social-link:hover { color: var(--orange); }

body.page-contact .social-link svg { flex-shrink: 0; transition: color 0.2s; }

body.page-contact #next {
  background: var(--light-gray);
  padding: 6rem 6vw;
}

body.page-contact .next-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end; margin-bottom: 4rem;
}

body.page-contact .next-header-body {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: #5A5E68; max-width: 420px;
}

body.page-contact .next-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid rgba(57,61,71,0.12);
}

body.page-contact .next-step {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-right: 1px solid rgba(57,61,71,0.08);
}

body.page-contact .next-step:last-child { border-right: none; padding-right: 0; padding-left: 2.5rem; }

body.page-contact .next-step:nth-child(2) { padding: 2.5rem 2.5rem; }

body.page-contact .next-step-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 300; color: var(--dark); line-height: 1;
  margin-bottom: 1.25rem; display: inline-block; position: relative;
}

body.page-contact .next-step-num::after {
  content: ""; display: block; width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; position: absolute; bottom: -0.25rem; left: 0;
}

body.page-contact .next-step-title {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 400;
  color: var(--dark); margin-bottom: 0.5rem; line-height: 1.2;
}

body.page-contact .next-step-desc { font-size: 0.83rem; font-weight: 300; line-height: 1.7; color: #6B6E77; }

body.page-contact .next-step-time {
  display: inline-block; margin-top: 0.85rem;
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); border: 1px solid rgba(234,107,33,0.3); padding: 0.25rem 0.6rem;
}

@media (max-width: 1050px) {
  body.page-contact .form-layout { grid-template-columns: 1fr; gap: 4rem; }
  body.page-contact .form-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  body.page-contact .sidebar-divider { display: none; }
  body.page-contact .next-header { grid-template-columns: 1fr; gap: 1.5rem; }
  body.page-contact .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  body.page-contact .footer-top > div:first-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  body.page-contact #page-hero { grid-template-columns: 1fr; min-height: auto; }
  body.page-contact .hero-right { padding: 0 6vw 5vw; }
  body.page-contact .contact-card { max-width: 100%; }
  body.page-contact .next-steps { grid-template-columns: 1fr; }
  body.page-contact .next-step, body.page-contact .next-step:nth-child(2), body.page-contact .next-step:last-child {
    padding: 2rem 0; border-right: none; border-bottom: 1px solid rgba(57,61,71,0.1);
  }
  body.page-contact .next-step:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  body.page-contact .nav-links { display: none; }
  body.page-contact .nav-hamburger { display: flex; }
  body.page-contact .form-row { grid-template-columns: 1fr; }
  body.page-contact .form-sidebar { grid-template-columns: 1fr; }
  body.page-contact .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  body.page-contact .footer-top > div:first-child { grid-column: span 1; }
  body.page-contact .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  body.page-contact .pill-options { gap: 0.4rem; }
}
