/* =====================================================================
   KENJI MEDIA — main.css
   ===================================================================== */

/* --- Google Fonts loaded via <link> in HTML head --- */

/* --- Custom Properties --- */
:root {
  --orange:      #F97316;
  --navy:        #0F1F3D;
  --navy-2:      #1a3260;
  --bg:          #F6F7F9;
  --mid-grey:    #8892A0;
  --border:      #E2E6EC;
  --green:       #16A34A;
  --white:       #ffffff;
  --text:        #1a1a2e;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h:       72px;
  --max-w:       1200px;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(15,31,61,.08);
  --shadow-lg:   0 8px 48px rgba(15,31,61,.14);
  --transition:  0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: .02em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: clamp(1rem, 1.2vw, 1.125rem); color: #444; }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }
.text-navy   { color: var(--navy); }
.bg-navy     { background: var(--navy); }
.bg-navy-2   { background: var(--navy-2); }
.bg-white    { background: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: #ea6510;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover {
  background: #1fba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.btn-email {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.btn-email:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================
   NAVIGATION
   ========================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-nav.scrolled {
  background: rgba(15,31,61,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: .05em;
  color: var(--white);
  line-height: 1;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-dropdown > a svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--navy-2);
  border-radius: var(--radius);
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,.05);
}
.nav-dropdown-menu a::after { display: none; }
.nav-cta { margin-left: .5rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: .05em;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.nav-mobile-sub a {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .35;
  transform: scale(1.05);
  will-change: transform;
}

/* Vimeo video background — covers the hero like object-fit: cover */
.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy);
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 16:9 cover: whichever axis is larger wins */
  width: 100vw;
  height: 56.25vw;   /* 100vw ÷ 16 × 9 */
  min-height: 100%;
  min-width: 177.78vh; /* 100vh ÷ 9 × 16 */
  transform: translate(-50%, -50%);
  opacity: .45;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,31,61,.85) 0%, rgba(15,31,61,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-top: var(--nav-h);
}
.hero-subtitle {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.hero-title {
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.5rem;
}
.hero-body {
  color: rgba(255,255,255,.8);
  max-width: 55ch;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 2rem;
}
.hero-stat-label {
  display: block;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .2rem;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: .03em;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(249,115,22,.08) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 60ch; margin-inline: auto; font-size: 1.15rem; }

/* Hero entrance — triggers on page load */
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(42px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-subtitle { animation: heroEnter .7s  cubic-bezier(.22,1,.36,1) .05s both; }
.hero-title    { animation: heroEnter .9s  cubic-bezier(.22,1,.36,1) .2s  both; }
.hero-body     { animation: heroEnter .7s  cubic-bezier(.22,1,.36,1) .42s both; }
.hero-actions  { animation: heroEnter .7s  cubic-bezier(.22,1,.36,1) .58s both; }
.hero-stats    { animation: heroEnter .7s  cubic-bezier(.22,1,.36,1) .72s both; }

/* Inner page hero — stagger each direct child */
.page-hero-content > *:nth-child(1) { animation: heroEnter .7s  cubic-bezier(.22,1,.36,1) .06s both; }
.page-hero-content > *:nth-child(2) { animation: heroEnter .85s cubic-bezier(.22,1,.36,1) .22s both; }
.page-hero-content > *:nth-child(3) { animation: heroEnter .7s  cubic-bezier(.22,1,.36,1) .40s both; }
.page-hero-content > *:nth-child(4) { animation: heroEnter .7s  cubic-bezier(.22,1,.36,1) .56s both; }

/* ==========================================================
   SECTIONS — What We Do
   ========================================================== */
.what-we-do { background: var(--white); }
.section-header { margin-bottom: 3rem; }
.section-header p { max-width: 60ch; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: .75rem; }
.service-card p  { margin-bottom: 1.5rem; }
.service-link {
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .7rem; }

/* ==========================================================
   BRANDS
   ========================================================== */
.brands-section { background: var(--bg); }
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3rem;
  margin-top: 2.5rem;
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .55;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition);
}
.brand-item:hover {
  opacity: 1;
  filter: grayscale(0);
}
.brand-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .08em;
  color: var(--mid-grey);
  transition: color var(--transition);
}
.brand-item:hover .brand-text { color: var(--navy); }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.tm-section {
  background: var(--bg);
  padding: clamp(4rem,8vw,7rem) clamp(1rem,4vw,2rem);
}
.tm-inner {
  max-width: 1100px;
  margin-inline: auto;
}
.tm-inner.tm-single {
  max-width: 680px;
}
.tm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.tm-card {
  border-left: 3px solid var(--orange);
  padding: 1.25rem 1.75rem;
  background: var(--white);
  border-radius: 0 8px 8px 0;
  transition: transform var(--transition);
}
.tm-card:hover { transform: translateX(5px); }
.tm-card p {
  font-size: 1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
}
.tm-card cite {
  display: block;
  margin-top: .625rem;
  font-size: .7rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}
.tm-card cite strong { font-weight: 800; }
@media (max-width: 640px) {
  .tm-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   WHY KENJI MEDIA
   ========================================================== */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
}
.why-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .5rem;
}
.why-card h4 { color: var(--white); margin-bottom: .75rem; }
.why-card p  { color: rgba(255,255,255,.7); font-size: .95rem; }

/* ==========================================================
   CTA SECTION
   ========================================================== */
.cta-section {
  background: var(--orange);
  padding-block: clamp(4rem, 7vw, 6rem);
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.9); max-width: 55ch; margin-inline: auto; margin-bottom: 2rem; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-actions .btn-outline { border-color: var(--white); }

/* ==========================================================
   ABOUT PAGE
   ========================================================== */
.about-intro { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-body-text p { margin-bottom: 1rem; }
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.how-we-work { background: var(--bg); }
.how-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.how-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.how-item-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.how-item-check svg { width: 12px; height: 12px; color: white; }
.how-item p { margin: 0; font-size: .95rem; color: var(--text); }

.about-cta { background: var(--navy-2); }
.about-cta-inner {
  text-align: center;
}
.about-cta h2 { color: var(--white); margin-bottom: 1rem; }
.about-cta p  { color: rgba(255,255,255,.7); margin-bottom: 2rem; }
.about-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.demo-reel { background: var(--navy); padding-block: clamp(3rem, 6vw, 5rem); }
.demo-reel h2 { color: var(--white); text-align: center; margin-bottom: 2rem; }
.video-embed-wrapper {
  padding: 56.25% 0 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ==========================================================
   PORTFOLIO INDEX
   ========================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.portfolio-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.portfolio-card:hover .portfolio-card-img { transform: scale(1.04); }
.portfolio-card-body {
  padding: 1.5rem;
}
.portfolio-card-body h3 { color: var(--white); margin-bottom: .5rem; }
.portfolio-card-body p  { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 1rem; }
.portfolio-card-link {
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.portfolio-card:hover .portfolio-card-link { gap: .6rem; }

/* ==========================================================
   GALLERY + LIGHTBOX
   ========================================================== */
.gallery-section { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  background: var(--navy);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,31,61,.0);
  transition: background var(--transition);
}
.gallery-item:hover::after {
  background: rgba(15,31,61,.3);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: min(90vw, 1200px);
  max-height: 90svh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
  font-size: 1.4rem;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  background: rgba(0,0,0,.5);
  padding: .4rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* ==========================================================
   SERVICE DETAIL PAGES
   ========================================================== */
.service-intro { background: var(--white); }
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.offer-list, .why-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
}
.offer-item, .why-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .85rem 1.1rem;
  font-size: .95rem;
  font-weight: 500;
}
.offer-item::before, .why-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.contact-method-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-method h4 { margin-bottom: .25rem; font-size: 1rem; }
.contact-method p  { font-size: .9rem; margin: 0; }
.contact-method a  { color: var(--orange); font-weight: 600; }

/* Contact Form */
.contact-form-wrap { }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
  background: var(--white);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.cf-turnstile { margin-top: .25rem; }
.form-submit .btn { width: 100%; justify-content: center; }
.success-msg {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  text-align: center;
  color: var(--green);
  font-weight: 600;
  font-size: 1.1rem;
}
.success-msg.show { display: block; }

/* ==========================================================
   STATS BAR
   ========================================================== */
.stats-bar { background: var(--navy-2); padding-block: 3rem; }
.stats-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-around;
  text-align: center;
}
.stat-item { }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: .25rem;
  display: block;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: #07111f;
  color: rgba(255,255,255,.7);
  padding-block: 3rem 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { font-size: 1.6rem; margin-bottom: 1rem; display: inline-block; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-brand a { color: var(--orange); }
.footer-col h4 {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .85rem; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  transition: color var(--transition);
}
.footer-social:hover { color: var(--white); }
.footer-contact-link { display: inline-flex; align-items: center; gap: .35rem; }

/* ==========================================================
   SCROLL ANIMATIONS
   ========================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.22,1,.36,1);
}
.fade-in.visible { opacity: 1; }

.fade-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 500ms; }
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   HOVER ENHANCEMENTS
   ========================================================== */

/* Why cards */
.why-card { transition: transform var(--transition), box-shadow var(--transition); }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(15,31,61,.32); }

/* How-we-work items */
.how-item { transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.how-item:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: 0 6px 20px rgba(249,115,22,.1); }

/* Contact info methods */
.contact-method { transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.contact-method:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: 0 6px 20px rgba(249,115,22,.1); }

/* Offer / checklist items */
.offer-item, .why-item {
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.offer-item:hover, .why-item:hover {
  transform: translateX(6px);
  border-color: var(--orange);
  box-shadow: 3px 0 12px rgba(249,115,22,.08);
}

/* Stats bar */
.stat-num { transition: filter var(--transition); }
.stat-item { transition: transform var(--transition); cursor: default; }
.stat-item:hover { transform: translateY(-3px); }
.stat-item:hover .stat-num { filter: brightness(1.18); }

/* Portfolio cd-* detail cards */
.cd-detail {
  transition: transform var(--transition), box-shadow var(--transition);
}
.cd-detail:hover {
  transform: translateX(6px);
  box-shadow: 4px 0 18px rgba(249,115,22,.12);
}

/* Portfolio cd-* step cards */
.cd-step { transition: transform var(--transition), box-shadow var(--transition); }
.cd-step:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(15,31,61,.12); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .service-intro-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .offer-list, .why-list-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-stats { gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .brands-grid { gap: 1.5rem 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item img { height: 180px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .stats-inner { gap: 1.5rem; }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up, .fade-in, .fade-left, .fade-right, .stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-subtitle, .hero-title, .hero-body, .hero-actions, .hero-stats,
  .page-hero-content > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-bg { transform: none !important; }
}
