/*
Theme Name: Lanecraft Lab
Theme URI: https://www.lanecraftlab.com
Author: Lanecraft Lab
Author URI: https://www.lanecraftlab.com
Description: Custom WordPress theme for Lanecraft Lab - Strategic Communications & PR. Fully editable via ACF.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lanecraftlab
*/

:root {
  --navy: #0A192F;
  --navy-mid: #0f2240;
  --gold: #C9A96E;
  --gold-light: #d4b87f;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --orang: #EC6530;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

em,
i {
  font-style: normal;
}

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(10, 25, 47, 0.10);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(10, 25, 47, 0.12);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 90px;
  width: auto;
  display: block;
  clip-path: inset(0 10px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 1px;
  font-weight: 600 !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--navy-mid) !important;
  color: var(--gold) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  align-self: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

#mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 8px 0;
  border-top: 1px solid rgba(10, 25, 47, 0.08);
}

#mobile-nav.open {
  display: flex;
}

#mobile-nav a {
  display: block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 25, 47, 0.06);
  transition: color 0.2s;
}

#mobile-nav a:hover {
  color: var(--gold);
}

/* ─── WordPress Nav Menu Integration ─────────────────────── */
.nav-links .menu-item a {
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links .menu-item a:hover {
  color: var(--gold);
}

.nav-links .menu-item:last-child a {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 1px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links .menu-item:last-child a:hover {
  background: var(--navy-mid);
  color: var(--gold);
}

/* ─── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 180px;
  padding-bottom: 110px;
}

.hero-curtain {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: var(--navy);
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}

.hero-curtain.open {
  transform: translateY(-101%);
}

.hero-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: 52% 48%;
  animation: leafZoomIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    leafSway 28s ease-in-out 1s infinite;
  filter: url('#liquid-ripple-filter');
}

@keyframes leafZoomIn {
  from {
    transform: scale(0.92);
  }

  to {
    transform: scale(1.06);
  }
}

@keyframes leafSway {
  0% {
    transform: scale(1.06) translate(0%, 0%) rotate(0deg);
  }

  13% {
    transform: scale(1.09) translate(-0.9%, 0.5%) rotate(0.18deg);
  }

  27% {
    transform: scale(1.07) translate(0.6%, -0.7%) rotate(-0.12deg);
  }

  40% {
    transform: scale(1.10) translate(-0.5%, 0.9%) rotate(0.22deg);
  }

  54% {
    transform: scale(1.08) translate(0.8%, 0.2%) rotate(-0.10deg);
  }

  68% {
    transform: scale(1.07) translate(-0.4%, -0.5%) rotate(0.14deg);
  }

  82% {
    transform: scale(1.09) translate(0.5%, 0.7%) rotate(-0.08deg);
  }

  100% {
    transform: scale(1.06) translate(0%, 0%) rotate(0deg);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 25, 47, 0.52) 0%, rgba(10, 25, 47, 0.28) 45%, rgba(10, 25, 47, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 32px;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(40px, 6.5vw, 82px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  opacity: 0;
  animation: zoomIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: #FFFFFF;
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 16px;
  font-weight: 300;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  padding: 16px 48px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.38);
}

.hero-sub2 {
  font-size: clamp(16px, 1.5vw, 18px);
  color: #FFFFFF;
  line-height: 1.72;
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.85s;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.4s;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


/* ─── SUB-PAGE HEADER ─────────────────────────────────────── */
.page-header {
  background: var(--navy);
  padding: 180px 48px 72px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}

.page-header .section-label {
  margin-bottom: 14px;
}

.page-header .section-title {
  color: var(--white);
  margin-top: 8px;
}

/* Section heading animated underline */
.section-title.dark {
  position: relative;
  padding-bottom: 4px;
}

.section-title.dark::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--gold), transparent);
  transition: width 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-title.dark.underline-visible::after {
  width: 72px;
}

/* ─── FEATURED PRESS ──────────────────────────────────────── */
#featured-press {
  background: var(--navy);
  padding: 80px 48px 56px;
}

.press-card {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}

.press-badge {
  width: 100%;
  border-radius: 3px;
  object-fit: cover;
  display: block;
}

.press-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orang);
  margin-bottom: 20px;
}

.press-headline {
  font-family: 'Newsreader', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  color: var(--white);
  line-height: 1.32;
  font-weight: 500;
  margin-bottom: 16px;
}

.press-pub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

/* ─── LOGO STRIP ──────────────────────────────────────────── */
#logo-strip {
  background: var(--off-white);
  padding: 56px 0;
  overflow: hidden;
}

.strip-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 36px;
}

.marquee-wrap {
  overflow: hidden;
  position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
  display: none;
}

.marquee-track {
  display: flex;
  gap: 72px;
  align-items: center;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.press-logo {
  display: flex;
  align-items: center;
  opacity: 0.85;
  cursor: default;
}

.press-logo img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.press-logo img[alt="The Wall Street Journal"] {
  height: 68px;
  max-width: 360px;
}

.press-logo img[alt="Forbes"] {
  height: 32px;
}

.press-logo img[alt="CNBC"] {
  height: 64px;
}

.press-logo img[alt="TheGIST"] {
  height: 72px;
  max-width: 220px;
}

.press-logo img[alt="BW BusinessWorld"] {
  height: 40px;
  max-width: 200px;
}

.press-logo img[alt="Golf Digest"] {
  height: 40px;
}

.press-logo img[alt="CBS Sports"] {
  height: 38px;
  max-width: 280px;
}

/* ─── BRAND BREAK ─────────────────────────────────────────── */
#brand-break {
  background: var(--white);
  padding: 64px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.brand-break-logo {
  width: 680px;
  max-width: 92%;
  height: auto;
  display: block;
  margin: 0 auto;
  clip-path: inset(4px);
}

/* ─── SERVICES ────────────────────────────────────────────── */
#services {
  background: var(--white);
}

.services-intro {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px 64px;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-img {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.intro-img:hover img {
  transform: scale(1.05);
}

.section-label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orang);
  margin-bottom: 14px;
}

.big-quote {
  font-family: 'Newsreader', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.22;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.body-text {
  font-size: 18px;
  line-height: 1.82;
  color: #4B5563;
  margin-bottom: 16px;
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.svc-card {
  position: relative;
  height: 440px;
  overflow: hidden;
  cursor: pointer;
}

.svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.svc-card:hover .svc-bg {
  transform: scale(1.07);
}

.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.93) 0%, rgba(10, 25, 47, 0.38) 55%, rgba(10, 25, 47, 0.08) 100%);
  transition: background 0.45s ease;
}

.svc-card:hover .svc-overlay {
  background: linear-gradient(to top, rgba(10, 25, 47, 0.97) 0%, rgba(10, 25, 47, 0.78) 100%);
}

.svc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}

.svc-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}

.svc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
}

.svc-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.svc-card:hover .svc-body {
  max-height: 320px;
}

/* ─── CLIENTS ─────────────────────────────────────────────── */
#clients {
  background: var(--off-white);
}

.clients-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px 56px;
  text-align: center;
}

.section-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title.dark {
  color: var(--navy);
}

.section-title.light {
  color: var(--white);
}

.featured-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.client-tile {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.client-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(10, 25, 47, 0.11);
}

.tile-head {
  background: var(--white);
  padding: 28px 32px;
  min-height: 96px;
  display: flex;
  align-items: center;
}

.tile-head img {
  max-height: 64px;
  max-width: 220px;
  object-fit: contain;
}

#lee-strasberg-spotlight .tile-head img {
  max-height: 80px;
  max-width: 240px;
}

.tile-head img[alt="Aunt Flow"] {
  max-height: 90px;
  max-width: 90px;
}

.tile-logo-text {
  font-family: 'Newsreader', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 500;
}

.tile-body {
  padding: 28px;
}

.tile-body p {
  font-size: 16px;
  line-height: 1.72;
  color: #4B5563;
  margin-bottom: 20px;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 12px;
}

.video-wrap iframe,
.video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.spotlight-text {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  background: var(--off-white);
  margin-top: 4px;
  max-height: 320px;
  overflow-y: auto;
}

.spotlight-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px !important;
  line-height: 1.8;
  color: #374151 !important;
  margin-bottom: 14px !important;
}

.spotlight-text p:last-child {
  margin-bottom: 0 !important;
}

.tile-excerpt {
  padding: 16px;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  font-family: 'Newsreader', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

.tile-excerpt cite {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #9CA3AF;
}

/* ─── ALL CLIENTS ─────────────────────────────────────────── */
.all-clients {
  background: var(--navy);
  padding: 80px 48px;
}

.all-clients-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.all-clients-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.28);
}

.client-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.client-row:last-child {
  border-bottom: none;
}

.cr-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.cr-name {
  font-family: 'Newsreader', serif;
  font-size: 23px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.3;
}

.cr-sector {
  font-size: 14px;
  color: var(--orang);
  margin-top: 6px;
}

.cr-content h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 20px 0 10px;
}

.cr-content h4:first-child {
  margin-top: 0;
}

.cr-content p,
.cr-content li {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.68);
}

.cr-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cr-content ul li::before {
  content: '— ';
  color: var(--gold);
}

.outcome {
  display: inline-block;
  background: rgba(201, 169, 110, 0.14);
  color: var(--gold);
  font-size: 14px;
  padding: 6px 14px;
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ─── TESTIMONIALS ────────────────────────────────────────── */
#testimonials {
  background: var(--navy);
  padding: 64px 48px 100px;
  border-top: 1px solid rgba(201, 169, 110, 0.28);
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.t-header {
  text-align: center;
  margin-bottom: 64px;
}

.t-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.t-card {
  background: rgba(255, 255, 255, 0.048);
  border: 1px solid rgba(201, 169, 110, 0.14);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: background 0.3s, transform 0.3s;
}

.t-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.t-mark {
  flex-shrink: 0;
  font-family: 'Newsreader', serif;
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
}

.t-text {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.84);
}

.t-attribution {
  flex-shrink: 0;
  width: 210px;
  padding-left: 28px;
  border-left: 1px solid rgba(201, 169, 110, 0.22);
}

.t-author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.t-role {
  font-size: 13px;
  color: var(--orang);
  margin-top: 5px;
  line-height: 1.5;
}

.testimonials-label {
  font-size: clamp(16px, 2.2vw, 18px) !important;
  color: var(--orang) !important;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 14px;
}

/* ─── LEADERSHIP ──────────────────────────────────────────── */
#leadership {
  background: var(--white);
  padding: 100px 48px;
}

.leadership-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  filter: grayscale(15%);
  transition: filter 0.4s;
  display: block;
}

.team-card:hover .team-photo {
  filter: grayscale(0);
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder span {
  font-family: 'Newsreader', serif;
  font-size: 56px;
  color: rgba(10, 25, 47, 0.18);
}

.team-name {
  font-family: 'Newsreader', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 18px 0 4px;
}

.team-role-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--orang);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 16px;
  line-height: 1.76;
  color: #4B5563;
}

.advisory {
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid var(--light-gray);
}

.advisory-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #4B5563;
  max-width: 720px;
  margin: 16px 0 48px;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.advisor {
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: var(--off-white);
}

.advisor-name {
  font-family: 'Newsreader', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.advisor-role {
  font-size: 16px;
  color: var(--orang);
  line-height: 1.5;
  margin-bottom: 12px;
}

.advisor-bio {
  font-size: 16px;
  line-height: 1.72;
  color: #4B5563;
}

.advisory-note {
  margin-top: 28px;
  font-size: 16px;
  color: #58585a;
}

/* ─── PARTNER SECTION ─────────────────────────────────────── */
.partner-section {
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid var(--light-gray);
}

.partner-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}

.partner-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--off-white);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid rgba(10, 25, 47, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo-container:hover {
  border-color: rgba(10, 25, 47, 0.15);
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.04);
}

.partner-logo-container a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.partner-logo-container a:hover {
  transform: scale(1.02);
}

.partner-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


.partner-content .section-label {
  color: var(--orang);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.partner-headline {
  font-family: 'Newsreader', serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 20px;
}

.partner-text p {
  font-size: 16px;
  line-height: 1.76;
  color: #4B5563;
  margin-bottom: 16px;
}

.partner-text p:last-child {
  margin-bottom: 0;
}

/* ─── WORK WITH US ────────────────────────────────────────── */
#work {
  background: var(--off-white);
  padding: 100px 48px;
}

.work-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.work-inner p {
  font-size: 19px;
  line-height: 1.82;
  color: #4B5563;
  margin-bottom: 18px;
}

.work-link {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  padding: 16px 48px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.work-link:hover {
  color: var(--gold);
}

/* ─── CONTACT ─────────────────────────────────────────────── */
#contact {
  background: var(--navy);
  padding: 100px 48px;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-left p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 1);
  margin-top: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-header {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 32px;
  align-self: flex-start;
}

.form-group {
  margin-bottom: 24px;
}

.form-group-label {
  font-family: 'Newsreader', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.form-group-label .req {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', sans-serif;
}

.form-field .req {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.form-field input,
.form-field textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 13px 14px;
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field textarea {
  height: 150px;
  resize: vertical;
}

.form-btn {
  align-self: flex-start;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 18px 60px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.form-btn:hover {
  background: var(--white);
  color: var(--navy);
}

/* ─── CONTACT FORM 7 STYLING ─────────────────────────────── */
.wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wpcf7 .form-group {
  margin-bottom: 24px;
}

.wpcf7 .form-group-label {
  font-family: 'Newsreader', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 13px 14px;
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  border-color: var(--gold);
}

.wpcf7 textarea {
  height: 150px;
  resize: vertical;
}

.wpcf7 input[type="submit"] {
  align-self: flex-start;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 18px 60px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--white);
  color: var(--navy);
}

.wpcf7 .wpcf7-response-output {
  color: var(--gold);
  border-color: var(--gold);
  margin: 16px 0 0;
  padding: 12px;
  font-size: 14px;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #EF4444;
  font-size: 12px;
  margin-top: 4px;
}

.wpcf7 label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', sans-serif;
}

.wpcf7 .req {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #05101f;
  padding: 44px 48px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  opacity: 0.85;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.footer-nav.secendary-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-nav a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  font-family: Newsreader, serif;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-nav.secendary-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 300;
  line-height: 30px;
}

.footer-nav.secendary-nav li:not(:last-child) a {
  padding-right: 10px;
  border-right: 1px solid #fff;
}

.footer-nav.secendary-nav li:not(:first-child) a {
  padding-left: 10px;
}

.footer-copyright {
  display: flex;
  gap: 10px;
  align-items: start;
  flex-direction: column-reverse;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.footer-socials a {
  display: block;
}

.footer-socials-mobile {
  display: none;
}

.footer-socials a img,
.footer-socials-mobile a img {
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.footer-socials a:hover img,
.footer-socials-mobile a:hover img {
  transform: translateY(-2px) scale(1.08);
  opacity: 0.9;
}

.footer-copy {
  font-size: 14px;
  color: var(--white);
}


/* ─── WordPress Footer Menu Integration ──────────────────── */
.footer-nav .menu-item a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  font-family: Newsreader, serif;
}

.footer-nav .menu-item a:hover {
  color: var(--gold);
}

.footer-nav.secendary-nav .menu-item a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 300;
  line-height: 30px;
}

.footer-nav.secendary-nav .menu-item:not(:last-child) a {
  padding-right: 10px;
  border-right: 1px solid #fff;
}

.footer-nav.secendary-nav .menu-item:not(:first-child) a {
  padding-left: 10px;
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PAGE LOADER ─────────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  height: 72px;
  width: auto;
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loaderFill 1.2s ease forwards;
}

@keyframes loaderFill {
  to {
    width: 100%;
  }
}

/* ─── 404 PAGE ────────────────────────────────────────────── */
.error-404-section {
  background: var(--navy);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 48px 100px;
}

.error-404-section h1 {
  font-family: 'Newsreader', serif;
  font-size: 120px;
  color: var(--gold);
  margin-bottom: 20px;
}

.error-404-section p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.error-404-section a {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  padding: 16px 48px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.error-404-section a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-inner {
    padding: 24px 24px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advisory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 20px 20px;
  }

  .logo-img {
    height: 85px;
  }

  .page-header {
    padding: 190px 24px 56px;
  }

  #hero {
    padding: 170px 0 50px 0;
  }

  .hero-content {
    padding: 0 24px;
  }

  .press-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .press-badge {
    width: 52%;
    max-height: none;
    object-fit: contain;
    margin: 0 auto;
  }

  .press-headline {
    font-size: 22px;
  }

  .press-label {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .press-pub {
    font-size: 17px;
  }

  .services-intro-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .featured-grid,
  .team-grid,
  .partner-grid,
  .advisory-grid {
    grid-template-columns: 1fr;
  }

  .t-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 20px;
  }

  .t-attribution {
    width: 100%;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(201, 169, 110, 0.22);
    padding-top: 14px;
  }

  .services-grid {
    gap: 16px;
  }

  #brand-break {
    padding: 32px 24px 0;
  }

  .services-intro {
    padding-top: 32px;
  }

  .brand-break-logo {
    width: 92%;
    max-width: 480px;
  }

  .svc-card {
    height: auto;
    border-radius: 12px;
  }

  .svc-bg {
    border-radius: 12px;
  }

  .svc-overlay {
    border-radius: 12px;
  }

  .svc-content {
    position: relative;
    padding: 160px 24px 28px;
  }

  .svc-body {
    max-height: none;
    overflow: visible;
  }

  .client-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  #featured-press {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 40px;
  }

  .all-clients,
  #testimonials,
  #work,
  #contact,
  #leadership {
    padding-left: 16px;
    padding-right: 16px;
  }

  #testimonials {
    padding-top: 48px;
  }

  .services-intro,
  .services-grid,
  .clients-header,
  .featured-grid,
  .all-clients-inner,
  .testimonials-inner,
  .leadership-inner,
  .work-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .advisor {
    padding: 20px;
  }

  .all-clients-title {
    margin-bottom: 24px;
  }

  .team-photo {
    width: 100%;
    border-radius: 4px;
  }

  .advisory-grid {
    gap: 16px;
  }

  .team-grid {
    gap: 32px;
    margin-top: 32px;
  }

  .press-logo img {
    height: 32px;
    max-width: 140px;
  }

  .press-logo img[alt="The Wall Street Journal"] {
    height: 52px;
    max-width: 260px;
  }

  .press-logo img[alt="Forbes"] {
    height: 26px;
  }

  .press-logo img[alt="CNBC"] {
    height: 44px;
  }

  .press-logo img[alt="TheGIST"] {
    height: 72px;
    max-width: 200px;
  }

  .press-logo img[alt="CBS Sports"] {
    height: 28px;
    max-width: 200px;
  }

  .marquee-track {
    gap: 28px;
  }
}

/* ─── LEGAL PAGES ─────────────────────────────────────────── */
#legal {
  background: var(--white);
  padding: 100px 48px;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
  color: var(--navy);
}

.legal-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 24px;
}

.legal-inner h2 {
  font-family: 'Newsreader', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-inner h3 {
  font-family: 'Newsreader', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-inner ul {
  list-style: none;
  margin-bottom: 24px;
  padding-left: 20px;
}

.legal-inner ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  position: relative;
  margin-bottom: 10px;
}

.legal-inner ul li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: -20px;
}

.legal-inner a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.legal-inner a:hover {
  color: var(--navy);
}

.legal-meta {
  font-size: 15px;
  color: var(--gray);
  margin-top: -10px;
  margin-bottom: 40px;
  font-style: italic;
}

@media (max-width: 768px) {
  #legal {
    padding: 60px 24px;
  }

  .partner-logo-container {
    max-width: 280px;
    margin: 0 auto;
    padding: 24px;
  }

  .footer-copyright {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .footer-socials {
    display: none;
  }

  .footer-socials-mobile {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    margin: 10px 0;
  }
}
