/* ════════════════════════════════════════════════════════
   LP MEDIA GROUP — CLEAN PROFESSIONAL CORPORATE CSS
   Inspired by omc.com, beinmediagroup.com, itp.com
   ════════════════════════════════════════════════════════ */

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

:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F7F7F7;
  --bg-dark: #111111;
  --text-main: #111111;
  --text-muted: #666666;
  --text-light: #FFFFFF;
  --gold: #C19552;
  --gold-lt: #D9AE74;
  --gold-dk: #A07A42;
  --omc-orange: #F35E19;
  --border-light: #E5E5E5;
  --border-dark: #333333;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: 'DM Mono', monospace;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
}

.serif-ital { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }

::selection { background: var(--text-main); color: var(--bg-primary); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; font-family: inherit; cursor: pointer; outline: none; }
input, textarea, select { font-family: inherit; outline: none; }

/* ════════════════════════
   LOADER
   ════════════════════════ */
#loader {
  position: fixed; inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-mark {
  width: 140px; height: 140px; margin-bottom: 30px;
  animation: ldPulse 1.6s ease-in-out infinite alternate;
}
.ld-mark img { width: 100%; height: 100%; object-fit: contain; }
.ld-name {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 8px; text-transform: uppercase;
  color: var(--text-main); margin-bottom: 24px; font-weight: 500;
}
.ld-bar {
  width: 200px; height: 2px;
  background: var(--border-light); overflow: hidden; position: relative;
}
.ld-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--text-main);
  width: 0; animation: ldFill 2.2s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes ldPulse {
  from { opacity: .6; transform: scale(.95); }
  to   { opacity: 1;  transform: scale(1.05); }
}
@keyframes ldFill { to { width: 100%; } }

/* ════════════════════════
   NAV
   ════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 80px; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, padding .4s;
}
#nav.sc {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--border-light);
  height: 70px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}
.nav-logo {
  display: flex; align-items: center; gap: 15px; z-index: 801;
}
.nav-logo img { height: 50px; width: auto; object-fit: contain; transition: filter 0.3s; }
.nav-logo-txt {
  font-family: var(--sans); font-size: 16px; font-weight: 800;
  letter-spacing: .5px; white-space: nowrap; color: var(--text-main);
}
.nav-logo-txt span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); position: relative; padding: 5px 0;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-main); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-r { display: flex; align-items: center; gap: 30px; }
.nav-btn {
  padding: 12px 28px;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bg-primary); background: var(--text-main);
  transition: background .3s, transform .2s;
  white-space: nowrap; cursor: pointer;
}
.nav-btn:hover { background: var(--gold); transform: translateY(-2px); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 6px;
  padding: 8px; z-index: 801; cursor: pointer;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-main);
  transition: transform .32s, opacity .32s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* Mobile overlay */
#mob {
  position: fixed; inset: 0;
  background: var(--bg-primary);
  z-index: 799;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
#mob.open { opacity: 1; visibility: visible; }
#mob a {
  font-family: var(--sans); font-size: clamp(32px, 6vw, 48px); font-weight: 800;
  color: var(--text-main); text-transform: uppercase; transition: color .3s;
}
#mob a:hover { color: var(--gold); }

/* ════════════════════════
   HERO (OMNICOM INSPIRED)
   ════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  padding-top: 150px;
  background: var(--bg-primary);
  justify-content: center;
}

.hero-wrap {
  position: relative; z-index: 3;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 0 60px; display: block;
}

.hero-eyebrow {
  font-family: var(--sans); font-size: 24px; font-weight: 900;
  letter-spacing: 1px; color: var(--text-main); text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-h1 {
  font-family: var(--sans);
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -2px; margin-bottom: 60px;
  color: var(--text-main); max-width: 900px;
}

.hero-subgrid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 40px; max-width: 800px;
}

.hero-sub-l {
  font-family: var(--sans); font-size: 20px;
  font-weight: 800; line-height: 1.4; color: var(--text-main);
}

.hero-sub-r {
  font-family: var(--sans); font-size: 18px;
  color: var(--text-muted); line-height: 1.6;
}

.hero-blur-circle {
  position: absolute; right: -15vw; top: 10%;
  width: 50vw; height: 50vw;
  border: 60px solid var(--omc-orange); border-radius: 50%;
  filter: blur(25px); opacity: 0.8; z-index: 1; pointer-events: none;
}

/* ════════════════════════
   CIRCULAR ANIMATION
   ════════════════════════ */
.circ-sec {
  padding: 150px 60px; background: var(--bg-primary); position: relative; overflow: hidden;
}
.circ-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1400px; margin: 0 auto;
}
.circ-anim-wrap {
  position: relative; width: 500px; height: 500px; margin-left: -120px;
}
.circ-anim-wrap::after {
  content: ''; position: absolute; top: -10%; left: -10%; width: 60%; height: 120%;
  backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(to right, black 10%, transparent 100%);
  mask-image: linear-gradient(to right, black 10%, transparent 100%);
  pointer-events: none;
  z-index: 10;
}
.circ-orange-ring {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%; border: 30px solid var(--omc-orange);
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}
.circ-dots {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%; border: 15px dotted var(--omc-orange);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
.circ-orbit {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  animation: orbitSpin 20s linear infinite;
}
.circ-side-blur {
  position: absolute; left: -15vw; top: 20%; width: 50vw; height: 50vw;
  background: var(--omc-orange); border-radius: 50%; filter: blur(100px); opacity: 0.15; z-index: 0; pointer-events: none;
}
@keyframes orbitSpin { 100% { transform: rotate(360deg); } }

.circ-content { max-width: 500px; }
.circ-h2 { font-family: var(--sans); font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 30px; letter-spacing: -1px; }
.circ-p { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--text-muted); line-height: 1.5; margin-bottom: 40px; }
.circ-btn {
  display: inline-flex; align-items: center; gap: 15px; padding: 15px 30px;
  background: var(--text-main); color: var(--bg-primary); border-radius: 40px;
  font-family: var(--sans); font-size: 16px; font-weight: 700;
  transition: background 0.3s, transform 0.2s; cursor: pointer; text-transform: uppercase;
}
.circ-btn:hover { background: var(--omc-orange); transform: translateY(-2px); }
.circ-btn-icon {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--bg-primary);
}
.circ-btn-icon svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

.circ-bg-glow {
  position: absolute; top: 10%; left: 10%; width: 80%; height: 80%;
  border-radius: 50%; background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, transparent 70%);
}

/* ════════════════════════
   CAPABILITIES CARDS
   ════════════════════════ */
.cap-sec { background: var(--bg-dark); color: var(--text-light); padding: 120px 60px; }
.cap-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; align-items: start; max-width: 1400px; margin-left: auto; margin-right: auto; }
.cap-h2 { font-family: var(--sans); font-size: 56px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
.cap-p { font-family: var(--sans); font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.7); }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1400px; margin: 0 auto; }
.cap-card { background: rgba(255,255,255,0.05); border-radius: 20px; overflow: hidden; padding-bottom: 40px; display: flex; flex-direction: column; transition: transform 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.cap-card:hover { transform: translateY(-10px); }
.cap-img { width: 100%; aspect-ratio: 4/3; background: #222; }
.cap-img img { width: 100%; height: 100%; object-fit: cover; }
.cap-body { padding: 30px; }
.cap-icon { margin-bottom: 20px; width: 32px; height: 32px; color: var(--text-light); }
.cap-title { font-family: var(--sans); font-size: 28px; font-weight: 800; margin-bottom: 15px; }
.cap-sub { font-family: var(--sans); font-size: 18px; font-weight: 600; margin-bottom: 20px; color: rgba(255,255,255,0.9); }
.cap-desc { font-family: var(--sans); font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.6); }

/* ════════════════════════
   TICKER STRIP
   ════════════════════════ */
.t-strip {
  background: var(--bg-secondary);
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.t-strip-inner {
  display: inline-flex; white-space: nowrap;
  animation: tapeScroll 40s linear infinite;
}
.t-word {
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 24px 40px; color: var(--text-main);
  display: inline-flex; align-items: center; gap: 40px; flex-shrink: 0;
}
.t-word svg { width: 8px; height: 8px; fill: var(--gold); }
@keyframes tapeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════
   SECTION GLOBALS
   ════════════════════════ */
section { padding: 140px 60px; position: relative; }
.cw { max-width: 1400px; margin: 0 auto; }

.label {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.label::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}

.sec-h {
  font-family: var(--sans);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; color: var(--text-main); margin-bottom: 24px;
  text-transform: uppercase;
}
.sec-p {
  font-family: var(--serif); font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text-muted); max-width: 600px; line-height: 1.6; margin-bottom: 40px;
}

/* ════════════════════════
   ABOUT
   ════════════════════════ */
.about-s { background: var(--bg-primary); }
.about-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center; margin-top: 60px;
}
.about-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.ai { position: relative; overflow: hidden; background: var(--bg-secondary); }
.ai:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.ai:not(:first-child) { aspect-ratio: 1/1; }
.ai img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.ai:hover img { transform: scale(1.05); }

.about-pull {
  font-family: var(--serif); font-size: clamp(24px, 2.5vw, 32px);
  font-style: italic; line-height: 1.4; color: var(--text-main);
  border-left: 3px solid var(--gold); padding-left: 30px;
  margin-bottom: 30px;
}
.about-body {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 20px; font-weight: 400;
}
.about-3 {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 30px; margin-top: 50px;
}
.a3 {
  padding-top: 20px; border-top: 1px solid var(--border-light);
}
.a3-n {
  font-family: var(--sans); font-size: 32px; font-weight: 800;
  color: var(--text-main); margin-bottom: 5px;
}
.a3-t { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }

/* ════════════════════════
   SERVICES
   ════════════════════════ */
.services-s { background: var(--bg-secondary); }
.svc-hdr {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 80px;
  gap: 40px; flex-wrap: wrap;
}
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 30px;
}
.svc {
  background: var(--bg-primary); padding: 50px 40px;
  position: relative; overflow: hidden;
  transition: transform .4s, box-shadow .4s;
}
.svc:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}
.svc-n {
  font-family: var(--mono); font-size: 16px; font-weight: 500;
  color: var(--gold); margin-bottom: 30px;
}
.svc-title { font-family: var(--sans); font-size: 24px; font-weight: 800; margin-bottom: 16px; color: var(--text-main); text-transform: uppercase; }
.svc-desc  { font-family: var(--serif); font-size: 17px; color: var(--text-muted); line-height: 1.6; margin-bottom: 30px; }
.tag-row   { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px;
  background: var(--bg-secondary); color: var(--text-main);
}

/* ════════════════════════
   PORTFOLIO
   ════════════════════════ */
.port-s { background: var(--bg-primary); }
.port-hdr { margin-bottom: 70px; }
.port-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.pg { position: relative; overflow: hidden; background: var(--bg-secondary); aspect-ratio: 4/3; }
.pg:nth-child(1) { grid-column: span 2; aspect-ratio: 21/9; }

.pg-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.pg:hover .pg-img { transform: scale(1.04); }

.pg-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 40px;
  background: linear-gradient(0deg, rgba(17,17,17,0.8) 0%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.pg-cat { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.pg-ttl { font-family: var(--sans); font-size: 28px; font-weight: 800; color: var(--bg-primary); text-transform: uppercase; }

/* ════════════════════════
   NEWS
   ════════════════════════ */
.news-s { background: var(--bg-secondary); }
.news-hdr {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 70px;
  gap: 30px; flex-wrap: wrap;
}
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.nc {
  background: var(--bg-primary);
  transition: transform .4s, box-shadow .4s;
  display: flex; flex-direction: column;
}
.nc:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.nc-img { width: 100%; aspect-ratio: 16/9; background: var(--border-light); overflow: hidden; }
.nc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.nc:hover .nc-img img { transform: scale(1.05); }
.nc-body { padding: 35px; flex: 1; display: flex; flex-direction: column; }
.nc-d { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 15px; }
.nc-t { font-family: var(--sans); font-size: 22px; font-weight: 800; line-height: 1.3; margin-bottom: 15px; color: var(--text-main); }
.nc-x { font-family: var(--serif); font-size: 17px; color: var(--text-muted); line-height: 1.6; margin-bottom: 25px; flex: 1; }
.nc-lk {
  font-family: var(--sans); font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-main); display: inline-flex; align-items: center; gap: 8px; transition: color .3s; margin-top: auto;
}
.nc-lk svg { width: 16px; height: 16px; flex-shrink: 0; }
.nc-lk:hover { color: var(--gold); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  text-transform: uppercase; color: var(--text-main); letter-spacing: 1px;
  transition: color 0.3s;
}
.btn-secondary svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-secondary:hover { color: var(--gold); }
.btn-secondary:hover svg { transform: translateX(5px); }

/* ════════════════════════
   TEAM / LEADERSHIP
   ════════════════════════ */
.team-s { background: var(--bg-primary); }
.team-hdr { margin-bottom: 80px; }
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.tc {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center;
}
.tc-img { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-secondary); }
.tc-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .8s var(--ease);
}
.tc:hover .tc-img img { transform: scale(1.03); }
.tc-body { padding: 20px 0; }
.badge {
  display: inline-flex; align-items: center;
  color: var(--gold); font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px;
}
.tc-name { font-family: var(--sans); font-size: 32px; font-weight: 800; margin-bottom: 5px; color: var(--text-main); text-transform: uppercase; }
.tc-role { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--text-muted); margin-bottom: 20px; }
.tc-bio  { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 25px; }

/* ════════════════════════
   CONTACT
   ════════════════════════ */
.contact-s { background: var(--bg-dark); color: var(--text-light); }
.contact-s .label, .contact-s .sec-h { color: var(--text-light); }
.contact-s .label::before { background: var(--gold); }
.contact-s .sec-p { color: rgba(255,255,255,0.7); }
.contact-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start; margin-top: 60px;
}
.cd { margin-bottom: 40px; }
.cd-lbl {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.cd-val { font-family: var(--sans); font-size: 18px; font-weight: 600; line-height: 1.5; }
.cd-val a { transition: color .3s; }
.cd-val a:hover { color: var(--gold); }

.fg { margin-bottom: 25px; }
.fg label { display: block; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: transparent; border: none; border-bottom: 2px solid rgba(255,255,255,0.2);
  color: var(--text-light); font-size: 16px; padding: 15px 0;
  transition: border-color .3s; resize: none; border-radius: 0;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { min-height: 120px; }
.fg select option { background: var(--bg-dark); color: var(--text-light); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 25px; }
.fsub {
  display: inline-flex; padding: 18px 45px;
  background: var(--gold); color: var(--bg-dark);
  font-family: var(--sans); font-size: 13px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  transition: background .3s, transform .2s;
}
.fsub:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* ════════════════════════
   FOOTER
   ════════════════════════ */
footer {
  background: #0A0A0A; color: var(--text-light);
  padding: 100px 60px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 40px;
  max-width: 1400px; margin-left: auto; margin-right: auto;
}
.footer-brand-row { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.footer-brand-row img { height: 45px; width: auto; object-fit: contain; }
.footer-brand-nm { font-family: var(--sans); font-weight: 800; font-size: 18px; text-transform: uppercase; }
.footer-brand-nm span { color: var(--gold); }
.footer-desc { font-family: var(--serif); font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 320px; }
.footer-col h5 { font-family: var(--sans); font-size: 14px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 25px; }
.footer-col li { margin-bottom: 15px; }
.footer-col li a { font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,0.6); transition: color .3s; }
.footer-col li a:hover { color: var(--gold); }
.footer-btm {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px; max-width: 1400px; margin: 0 auto;
}
.footer-copy { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-copy span { color: var(--text-light); font-weight: bold; }
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-links a { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.4); transition: color .3s; }
.footer-links a:hover { color: var(--text-light); }

/* ════════════════════════
   SCROLL REVEAL
   ════════════════════════ */
.rv  { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--spring), transform .9s var(--spring); }
.rvl { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--spring), transform .9s var(--spring); }
.rvr { opacity: 0; transform: translateX(40px);  transition: opacity .9s var(--spring), transform .9s var(--spring); }
.visible { opacity: 1 !important; transform: none !important; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ════════════════════════
   RESPONSIVE — TABLET (1100px)
   ════════════════════════ */
@media (max-width: 1100px) {
  #nav { padding: 0 30px; }
  .nav-links, .nav-loc { display: none; }
  .burger { display: flex; }
  section { padding: 90px 30px; }
  .hero-wrap { padding: 30px 0 70px; }
  .hero-h1 { font-size: 64px; }
  .circ-grid { grid-template-columns: 1fr; gap: 50px; }
  .cap-top { grid-template-columns: 1fr; gap: 30px; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .about-g { grid-template-columns: 1fr; gap: 50px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .port-grid { grid-template-columns: 1fr 1fr; }
  .pg:first-child { grid-column: span 2; }
  .pg:nth-child(n+2) { aspect-ratio: 4/3; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .nc:last-child { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-g { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 70px 30px 40px; }
  .circ-anim-wrap { width: 420px; height: 420px; margin-left: -60px; }
}

/* ════════════════════════
   RESPONSIVE — MOBILE (768px)
   ════════════════════════ */
@media (max-width: 768px) {
  /* --- Global --- */
  html { font-size: 15px; }
  section { padding: 80px 24px; }
  .cw { padding: 0; }

  /* --- Nav --- */
  #nav { padding: 0 20px; height: 64px; }
  .nav-btn { display: none; }
  .nav-logo img { height: 36px; }
  .nav-logo-txt { font-size: 15px; }
  .burger { display: flex; }

  /* --- Hero --- */
  .hero { padding-top: 120px; min-height: auto; padding-bottom: 80px; }
  .hero-wrap { padding: 0; }
  .hero-eyebrow { font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; color: var(--gold); }
  .hero-h1 { font-size: clamp(40px, 10vw, 56px); letter-spacing: -1px; margin-bottom: 32px; line-height: 1.15; }
  .hero-subgrid { grid-template-columns: 1fr; gap: 20px; }
  .hero-sub-l { font-size: 16px; }
  .hero-sub-r { font-size: 15px; }
  .hero-blur-circle { width: 70vw; height: 70vw; border-width: 25px; top: 0; right: -30%; filter: blur(30px); opacity: 0.6; }

  /* --- Circular Animation --- */
  .circ-sec { padding: 80px 0; overflow: hidden; }
  .circ-grid { grid-template-columns: 1fr; gap: 40px; }
  .circ-anim-wrap {
    width: 300px; height: 300px;
    margin: 0 auto;
  }
  .circ-orange-ring { border-width: 18px; }
  .circ-dots { border-width: 10px; }
  .circ-content {
    max-width: 100%;
    padding: 30px 20px 40px;
    text-align: left;
  }
  .circ-h2 { font-size: clamp(28px, 7vw, 40px); margin-bottom: 16px; }
  .circ-p { font-size: 16px; margin-bottom: 28px; }
  .circ-btn { font-size: 13px; padding: 14px 24px; }
  .circ-side-blur { width: 70vw; height: 70vw; left: -20vw; }

  /* --- Capabilities Cards --- */
  .cap-sec { padding: 80px 24px; }
  .cap-top { margin-bottom: 48px; }
  .cap-h2 { font-size: clamp(32px, 8vw, 44px); }
  .cap-p { font-size: 16px; }
  .cap-grid { grid-template-columns: 1fr; gap: 24px; }
  .cap-card { border-radius: 24px; }
  .cap-body { padding: 32px 24px; }
  .cap-title { font-size: 22px; }
  .cap-sub { font-size: 15px; }
  .cap-desc { font-size: 14px; }
  .cap-icon { width: 28px; height: 28px; margin-bottom: 14px; }

  /* --- About --- */
  .about-g { grid-template-columns: 1fr; gap: 48px; margin-top: 40px; }
  .about-imgs { grid-template-columns: 1fr; gap: 16px; }
  .ai:first-child { grid-column: auto; aspect-ratio: 16/9; border-radius: 16px; }
  .ai:not(:first-child) { aspect-ratio: 4/3; border-radius: 16px; }
  .about-pull { font-size: 22px; padding-left: 24px; line-height: 1.5; }
  .about-body { font-size: 16px; }
  .about-3 { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
  .a3 { border-top: none; border-left: 2px solid var(--border-light); padding-left: 20px; padding-top: 0; }
  .a3-n { font-size: 32px; }
  .a3-t { font-size: 12px; }
  .sec-h { font-size: clamp(32px, 8vw, 44px); letter-spacing: -1px; margin-bottom: 16px; }
  .sec-p { font-size: 17px; margin-bottom: 32px; }

  /* --- Portfolio --- */
  .port-s { padding: 80px 24px; }
  .port-grid { grid-template-columns: 1fr; gap: 24px; }
  .pg:nth-child(n) { grid-column: span 1; aspect-ratio: 4/3; border-radius: 20px; }
  .pg:first-child { aspect-ratio: 16/9; border-radius: 20px; }
  .pg-ttl { font-size: 22px; }
  .pg-info { padding: 32px 24px; background: linear-gradient(0deg, rgba(17,17,17,0.9) 0%, transparent 100%); }

  /* --- News --- */
  .news-s { padding: 80px 24px; }
  .news-grid { grid-template-columns: 1fr; gap: 32px; }
  .nc { border-radius: 24px; overflow: hidden; }
  .nc:last-child { display: flex; }
  .news-hdr { margin-bottom: 48px; flex-direction: column; gap: 24px; align-items: flex-start; }
  .nc-body { padding: 32px 24px; }
  .nc-t { font-size: 22px; margin-bottom: 12px; }
  .nc-x { font-size: 16px; margin-bottom: 24px; }

  /* --- Team --- */
  .team-s { padding: 80px 24px; }
  .team-grid { grid-template-columns: 1fr; gap: 56px; }
  .tc { grid-template-columns: 1fr; gap: 24px; background: var(--bg-secondary); border-radius: 24px; overflow: hidden; }
  .tc-img { aspect-ratio: 1/1; max-height: none; }
  .tc-body { padding: 32px 24px; }
  .tc-name { font-size: 28px; }
  .tc-role { font-size: 17px; }
  .tc-bio { font-size: 16px; margin-bottom: 0; }

  /* --- Contact --- */
  .contact-s { padding: 80px 24px; }
  .contact-g { grid-template-columns: 1fr; gap: 56px; margin-top: 40px; }
  .cd-val { font-size: 18px; }
  .fg label { font-size: 11px; }
  .frow { grid-template-columns: 1fr; gap: 0; }
  .fsub { width: 100%; justify-content: center; padding: 20px 30px; font-size: 14px; border-radius: 8px; }

  /* --- Footer --- */
  footer { padding: 50px 20px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-btm { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
  .footer-desc { max-width: 100%; font-size: 14px; }

  /* --- Ticker --- */
  .t-word { padding: 18px 24px; font-size: 12px; }

  /* --- Label --- */
  .label { font-size: 11px; }

  /* --- Svc Cards --- */
  .services-s { padding: 60px 20px; }
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc { padding: 36px 28px; }
  .svc-title { font-size: 20px; }
  .svc-desc { font-size: 15px; }
}

/* ════════════════════════
   RESPONSIVE — SMALL MOBILE (480px)
   ════════════════════════ */
@media (max-width: 480px) {
  html { font-size: 14px; }
  .sec-h { font-size: clamp(26px, 8vw, 36px); }
  .nav-logo-txt { font-size: 14px; }
  .nav-logo img { height: 30px; }
  .t-word { padding: 14px 18px; font-size: 11px; gap: 24px; }
  .about-pull { font-size: 18px; }
  .about-3 { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .a3-n { font-size: 22px; }
  .hero-h1 { font-size: clamp(32px, 9vw, 44px); }
  .cap-h2 { font-size: clamp(26px, 8vw, 36px); }
  .circ-h2 { font-size: clamp(24px, 8vw, 34px); }
  .circ-anim-wrap { width: 280px; height: 280px; margin-left: -70px; }
  .nc-t { font-size: 16px; }
  .cap-title { font-size: 20px; }
  .tc-name { font-size: 22px; }
  .pg-ttl { font-size: 17px; }
  .circ-btn { font-size: 12px; padding: 12px 20px; gap: 10px; }
  .circ-btn-icon { width: 26px; height: 26px; }
  .port-hdr { margin-bottom: 30px; }
  .team-hdr { margin-bottom: 40px; }
  .news-hdr { margin-bottom: 30px; }
  .svc-hdr { margin-bottom: 40px; }
  .circ-p { font-size: 15px; }
  footer { padding: 40px 16px 24px; }
  .footer-brand-nm { font-size: 16px; }
  .footer-col h5 { font-size: 13px; margin-bottom: 18px; }
  .footer-col li { margin-bottom: 12px; }
}
/* ════════════════════════
   BRANDED PLACEHOLDERS
   ════════════════════════ */
.pg-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 1s var(--ease);
}
.pg-placeholder::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(193,149,82,0.3);
  pointer-events: none;
}
.pg-placeholder img {
  width: 60px !important;
  height: auto !important;
  opacity: 0.3;
}
.pg:hover .pg-placeholder { transform: scale(1.04); }

.pb-placeholder {
  width: 100%; height: 400px;
  border-radius: 24px;
  margin: 40px 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #e0e0e0 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.pb-placeholder::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(193,149,82,0.4);
  border-radius: 12px;
  pointer-events: none;
}
.pb-placeholder img {
  width: 80px !important;
  height: auto !important;
  opacity: 0.2;
}

/* Footer Agency Styling */
.footer-divider {
  margin: 0 8px;
  opacity: 0.5;
}
.footer-agency {
  color: var(--text-secondary);
  font-size: 0.9em;
  letter-spacing: 0.5px;
}
.agency-link {
  color: var(--gold) !important;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  position: relative;
}
.agency-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--gold);
  transition: width 0.3s ease;
}
.agency-link:hover {
  text-shadow: 0 0 8px rgba(193, 149, 82, 0.4);
}
.agency-link:hover::after {
  width: 100%;
}
