/* ===== INNER PAGES — SHARED STYLES ===== */

/* Light header — inner pages (same transparent style, no override needed) */
.nav-active { color: var(--yellow) !important; font-weight: 600 !important; }

/* ===== SHARED HERO ===== */
.ip-hero {
  padding: clamp(80px, 12vh, 140px) 0 clamp(40px, 6vh, 80px);
  background: #fff;
}
.ip-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.ip-hero-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.0;
  margin: 0 0 16px;
  color: #fff;
  white-space: nowrap;
}
.ip-hero-lead {
  font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(255,255,255,.65);
  max-width: 40ch;
  margin: 0 0 0 auto;
  line-height: 1.6;
  text-align: right;
}
.ip-hero-line {
  width: 100%;
  height: 1px;
  background: rgba(23,23,23,.1);
  margin-top: clamp(40px, 6vh, 80px);
}

/* ===== SHARED CTA STRIP ===== */
.ip-cta {
  background: #e8e8e8;
  padding: clamp(48px, 8vh, 80px) 0;
  border-top: 1px solid rgba(23,23,23,.1);
}
.ip-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ip-cta-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -1px;
  color: var(--ink);
  margin: 0 0 8px;
}
.ip-cta-sub {
  font-size: 15px;
  color: rgba(23,23,23,.55);
  margin: 0;
}
.ip-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}
.ip-cta-btn:hover { transform: translateX(4px); background: var(--yellow); }

/* ===== SHARED STATS ===== */
.work-stats {
  background: #f7f7f7;
  padding: clamp(48px, 7vh, 80px) 0;
}
.work-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.wst-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}
.wst-num {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -2px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.wst-label {
  font-size: 13px;
  color: rgba(23,23,23,.45);
  font-weight: 500;
}

/* ===========================
   WORK PAGE
   =========================== */
.work-services { padding: clamp(48px, 8vh, 80px) 0; background: #fff; }
.work-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.ws-card {
  background: #f7f7f7;
  padding: clamp(32px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.ws-card--dark { background: var(--ink); }
.ws-card--dark .ws-card-title,
.ws-card--dark .ws-card-desc,
.ws-card--dark .ws-card-list li { color: #fff; }
.ws-card--dark .ws-card-list li::before { color: var(--yellow); }
.ws-card--dark .ws-card-cta { color: var(--yellow); border-color: var(--yellow); }
.ws-card--dark .ws-card-num { color: rgba(255,255,255,.15); }

.ws-card-num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: rgba(23,23,23,.08);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.ws-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 28px;
  transition: transform .5s ease;
  overflow: hidden;
}
.ws-card:hover .ws-card-img { transform: scale(1.03); }
.ws-card-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  letter-spacing: -.5px;
  margin: 0 0 14px;
  color: var(--ink);
}
.ws-card-desc {
  font-size: 15px;
  color: rgba(23,23,23,.6);
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 44ch;
}
.ws-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ws-card-list li {
  font-size: 14px;
  color: rgba(23,23,23,.65);
  padding-left: 16px;
  position: relative;
}
.ws-card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 12px;
}
.ws-card-cta {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.ws-card-cta:hover { color: var(--yellow); border-color: var(--yellow); }

/* ===========================
   SHOWCASE PAGE
   =========================== */
.sc-filter-section { padding: 0 0 40px; background: #fff; }
.sc-filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(23,23,23,.1);
}
.sft-tab {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: rgba(23,23,23,.45);
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.sft-tab:hover { color: var(--ink); }
.sft-tab.active { color: var(--ink); border-bottom-color: var(--ink); }

.sc-grid-section { padding: 40px 0 80px; background: #fff; }
.sc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}
.sc-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}
.sc-item:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.sc-item--big { grid-column: span 2; }
.sc-item.is-hidden { display: none; }

.sc-item-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.sc-item:hover .sc-item-img { transform: scale(1.05); }
.sc-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%);
}
.sc-item-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 1;
}
.sc-item-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.sc-item-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: -.3px;
  margin: 0 0 6px;
}
.sc-item-desc {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin: 0 0 12px;
  line-height: 1.5;
}
.sc-item-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.sc-item:hover .sc-item-link { color: #fff; }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-mission { padding: clamp(60px, 10vh, 100px) 0; background: #fff; }
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.am-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 16px 0 0;
  color: var(--ink);
}
.am-text {
  font-size: 16px;
  color: rgba(23,23,23,.62);
  line-height: 1.8;
  margin: 0 0 20px;
}

.about-video { position: relative; height: clamp(400px, 55vh, 600px); overflow: hidden; }
.about-video-inner { position: relative; width: 100%; height: 100%; }
.about-video-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 60%);
  display: flex;
  align-items: center;
}

.about-values { padding: clamp(60px, 10vh, 100px) 0; background: #f7f7f7; }
.av-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -1px;
  margin: 16px 0 48px;
  color: var(--ink);
}
.av-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.av-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.av-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.av-card-icon { font-size: 32px; margin-bottom: 16px; }
.av-card-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
}
.av-card-desc {
  font-size: 14px;
  color: rgba(23,23,23,.6);
  line-height: 1.7;
  margin: 0;
}

.about-process { padding: clamp(60px, 10vh, 100px) 0; background: #fff; }
.ap-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}
.ap-step {
  flex: 1;
  min-width: 160px;
  padding: 0 24px;
  border-left: 1px solid rgba(23,23,23,.1);
}
.ap-step:first-child { border-left: none; padding-left: 0; }
.ap-step-num {
  font-size: 36px;
  font-weight: 300;
  color: var(--yellow);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 12px;
}
.ap-step-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
}
.ap-step-desc {
  font-size: 14px;
  color: rgba(23,23,23,.6);
  line-height: 1.7;
  margin: 0;
}
.ap-arrow {
  font-size: 24px;
  color: rgba(23,23,23,.2);
  padding-top: 8px;
  flex-shrink: 0;
}

/* ===========================
   CONTACT PAGE — SHARED COMPONENTS
   =========================== */
.contact-page-section { padding: 0; background: transparent; }

/* Eyebrow / title / desc */
.cp-eyebrow{
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.cp-title{
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 300;
  letter-spacing: -.5px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ink);
}
.cp-desc{
  font-size: 14px;
  color: rgba(23,23,23,.6);
  line-height: 1.7;
  margin: 0 0 36px;
}

/* Contact details */
.cp-details{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.cp-detail-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.6;
  transition: color .2s;
}
.cp-detail-item:hover{ color: var(--yellow); }
.cp-detail-icon{ font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* Socials */
.cp-socials{ display: flex; gap: 10px; }
.cp-social-icon{
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(23,23,23,.18);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .2s, border-color .2s, color .2s;
}
.cp-social-icon:hover{ background: var(--yellow); border-color: var(--yellow); color: #fff; }

/* Form heading */
.cp-form-heading{
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -.5px;
  margin: 0 0 8px;
  color: var(--ink);
}
.cp-form-sub{
  font-size: 14px;
  color: rgba(23,23,23,.5);
  margin: 0 0 32px;
}

/* Form */
.cp-form{ display: flex; flex-direction: column; gap: 14px; }
.cp-form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cp-input{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(23,23,23,.12);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #fafafa;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  box-sizing: border-box;
}
.cp-input:focus{ border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,102,0,.1); background: #fff; }
.cp-input::placeholder{ color: rgba(23,23,23,.38); }
.cp-textarea{ min-height: 130px; resize: vertical; }
.cp-submit{
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 32px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(23,23,23,.3);
  cursor: pointer;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.cp-submit:hover{
  background: rgba(23,23,23,.06);
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 980px) {
  .work-services-grid { grid-template-columns: 1fr; }
  .sc-grid { grid-template-columns: 1fr 1fr; }
  .sc-item--big { grid-column: span 2; }
  .av-grid { grid-template-columns: 1fr 1fr; }
  .about-mission-inner { grid-template-columns: 1fr; }
  .contact-page-inner { grid-template-columns: 1fr; }
  .work-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ip-hero-title { letter-spacing: -2px; }
  .sc-grid { grid-template-columns: 1fr; }
  .sc-item--big { grid-column: span 1; }
  .av-grid { grid-template-columns: 1fr; }
  .cp-form-row { grid-template-columns: 1fr; }
  .ap-steps { flex-direction: column; gap: 24px; }
  .ap-step { border-left: none; border-top: 1px solid rgba(23,23,23,.1); padding: 24px 0 0; }
  .ap-step:first-child { border-top: none; padding-top: 0; }
  .ap-arrow { display: none; }
  .ip-cta-inner { flex-direction: column; align-items: flex-start; }
  .work-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== HERO WITH BANNER IMAGE ===== */
.ip-hero--banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 0 clamp(32px, 5vh, 56px);
  overflow: hidden;
  margin-top: 0;
}
.ip-hero-content {
  position: relative;
  z-index: 2;
  text-align: right;
  padding-right: clamp(24px, 5vw, 80px);
}

.ip-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.ip-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

/* ===========================
   SHOWCASE — HOVER REVEAL LIST
   =========================== */
.sc-list-section{
  position: relative;
  background: #fff;
  padding: 0 0 80px;
  overflow: hidden;
}

/* Full-screen bg image reveal */
.sc-bg-reveal{
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity .4s ease, background-image .1s ease;
}
.sc-bg-reveal.is-active{
  opacity: 0.12;
}

/* Header row */
.sc-list-header{
  display: grid;
  grid-template-columns: 48px 1fr 200px 80px 40px;
  gap: 0 24px;
  padding: 20px 0 12px;
  border-bottom: 1px solid rgba(23,23,23,.12);
  margin-bottom: 0;
}
.sc-list-col-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(23,23,23,.35);
}

/* List */
.sc-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.sc-list-item{
  border-bottom: 1px solid rgba(23,23,23,.08);
  transition: background .2s ease;
}
.sc-list-item:hover{
  background: rgba(23,23,23,.03);
}
.sc-list-link{
  display: grid;
  grid-template-columns: 48px 1fr 200px 80px 40px;
  gap: 0 24px;
  align-items: center;
  padding: 28px 0;
  text-decoration: none;
  color: var(--ink);
}
.sc-list-num{
  font-size: 13px;
  color: rgba(23,23,23,.3);
  font-weight: 500;
}
.sc-list-name{
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300;
  letter-spacing: -.5px;
  transition: letter-spacing .3s ease, color .2s ease;
}
.sc-list-item:hover .sc-list-name{
  letter-spacing: 0px;
  color: var(--yellow);
}
.sc-list-cat{
  font-size: 13px;
  color: rgba(23,23,23,.5);
  font-weight: 400;
}
.sc-list-year{
  font-size: 13px;
  color: rgba(23,23,23,.35);
}
.sc-list-arrow{
  font-size: 20px;
  color: rgba(23,23,23,.2);
  transition: color .2s ease, transform .2s ease;
}
.sc-list-item:hover .sc-list-arrow{
  color: var(--yellow);
  transform: translate(3px, -3px);
}

@media (max-width: 768px){
  .sc-list-header{ display: none; }
  .sc-list-link{
    grid-template-columns: 32px 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    padding: 20px 0;
  }
  .sc-list-num{ grid-row: 1; }
  .sc-list-name{ grid-row: 1; font-size: 18px; }
  .sc-list-arrow{ grid-row: 1; }
  .sc-list-cat{ grid-column: 2; grid-row: 2; font-size: 12px; }
  .sc-list-year{ display: none; }
}

/* ===========================
   CONTACT PAGE — NEW DESIGN
   =========================== */
.contact-page-section{
  background: #fff;
}

/* Statement bar */
.cp-statement{
  background: var(--yellow);
  padding: 20px 0;
  overflow: hidden;
}
.cp-statement-text{
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  color: #fff;
  margin: 0;
  letter-spacing: -.3px;
}
.cp-statement-text em{
  font-style: italic;
  font-weight: 600;
}

/* Main two-col */
.cp-main{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 80vh;
}

/* LEFT dark panel */
.cp-panel-dark{
  background: #0f0f0f;
  display: flex;
  align-items: stretch;
}
.cp-panel-dark-inner{
  padding: clamp(48px, 7vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  width: 100%;
}
.cp-contact-block{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cp-block-label{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.cp-contact-big{
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: color .2s;
  word-break: break-all;
}
.cp-contact-big:hover{ color: var(--yellow); }
.cp-contact-addr{
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin: 0;
}
.cp-social-row{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cp-social-tag{
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.cp-social-tag:hover{ color: var(--yellow); }
.cp-tags-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.cp-tag{
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  letter-spacing: .5px;
}

/* RIGHT light panel */
.cp-panel-light{
  background: #f5f5f5;
  display: flex;
  align-items: center;
}
.cp-panel-light-inner{
  padding: clamp(48px, 7vw, 80px);
  width: 100%;
}
.cp-form-heading{
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -1px;
  margin: 0 0 8px;
  color: var(--ink);
}
.cp-form-sub{
  font-size: 14px;
  color: rgba(23,23,23,.5);
  margin: 0 0 36px;
}

@media (max-width: 860px){
  .cp-main{ grid-template-columns: 1fr; }
  .cp-panel-dark-inner{ padding: 40px 24px; }
  .cp-panel-light-inner{ padding: 40px 24px; }
}

/* ===========================
   CONTACT PAGE — SPLIT DESIGN
   =========================== */
.contact-page-section{
  padding: 0;
  background: transparent;
}
.cp-split{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 75vh;
}

/* LEFT — grey info panel */
.cp-split-info{
  background: #ebebeb;
  padding: clamp(48px, 7vw, 88px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

/* RIGHT — white form panel */
.cp-split-form{
  background: #fff;
  padding: clamp(48px, 7vw, 88px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 860px){
  .cp-split{ grid-template-columns: 1fr; }
  .cp-split-info{ padding: 48px 24px; }
  .cp-split-form{ padding: 48px 24px; }
}
