/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #1a1f2e;
  --ink-soft: #4a5168;
  --cream: #f7f5f0;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-lt: #e8d49a;
  --gold-dk: #a07828;
  --slate: #2c3552;
  --slate-lt: #3d4a6b;
  --accent: #e8624a;
  --radius: 16px;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --font-h: 'Nunito', sans-serif;
  --font-b: 'Nunito Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 245, 240, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

nav.scrolled {
  height: 60px;
  background: rgba(247, 245, 240, 0.98);
  box-shadow: 0 4px 32px rgba(26, 31, 46, 0.12);
}

.nav-logo,
nav.scrolled .nav-logo {
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.03em;
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  outline: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-logo:hover {
  text-decoration: none;
  color: var(--gold-dk);
}

.site-logo-img {
  height: auto;
  max-height: 42px; /* Balanced sizing for 72px navbar */
  max-width: 220px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  mix-blend-mode: multiply;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.site-logo-img:hover {
  transform: scale(1.02);
}

.footer-logo-img {
  max-height: 42px;
  width: auto;
  margin-bottom: 12px;
  mix-blend-mode: multiply;
}

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

.nav-links li {
  position: relative;
}

.nav-links>li>a {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  transition: color 0.2s, background 0.2s;
  display: block;
}

.nav-links>li>a:hover {
  color: var(--ink);
  background: rgba(201, 168, 76, 0.12);
}

/* dropdown */
.nav-links li .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(26, 31, 46, 0.15);
  padding: 8px;
  min-width: 200px;
  z-index: 100;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-links li:hover .dropdown,
.nav-links li .dropdown:hover {
  display: block;
  animation: dropIn 0.2s ease;
}

/* Invisible bridge to prevent dropdown from closing when moving mouse from link to menu */
.nav-links li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  display: none;
}

.nav-links li:hover::after {
  display: block;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown a {
  display: block;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.15s;
}

.dropdown a:hover {
  background: var(--cream);
  color: var(--gold-dk);
}

.nav-cta {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.88rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold-dk);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate) 0%, var(--ink) 60%, #0d1017 100%);
  padding: 80px 5% 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, var(--gold) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero::after {
  content: 'SHAW';
  position: absolute;
  bottom: -5%;
  left: -5%;
  font-size: 25vw;
  font-weight: 900;
  color: var(--white);
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.05em;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  flex: 1.2;
  position: relative;
  z-index: 5;
}

.hero-visual {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  perspective: 1000px;
  animation: revealRight 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-img-frame {
  position: relative;
  width: 440px;
  height: 520px;
  background: rgba(201, 168, 76, 0.1);
  padding: 12px;
  border-radius: 200px 40px 200px 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  animation: headerFloat 8s ease-in-out infinite;
  z-index: 1;
  isolation: isolate; /* Create a clean stacking context */
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
  opacity: 0.3;
  mask: padding-box, border-box;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.hero-img-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
  z-index: -1; /* Push behind pills */
}

.hero-slideshow {
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--slate); /* Fallback color for premium feel while images load */
  z-index: 1;
}

.hero-visual-img.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.hero-visual-img.slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-visual-img.slide.active {
  animation: kenBurns 30s ease-in-out infinite alternate;
}

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

.exp-pill {
  position: absolute;
  background: rgba(13, 16, 23, 0.85); /* Deep solid background */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(201, 168, 76, 0.1);
  animation: pillFloat 6s ease-in-out infinite reverse;
  z-index: 100;
}

.exp-pill.one { top: 15%; right: -20px; }
.exp-pill.two { bottom: 15%; left: -40px; animation-delay: 1s; }

.exp-pill .num {
  font-family: var(--font-h);
  font-weight: 800;
  color: var(--gold);
  font-size: 1.2rem;
}

.exp-pill .lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201, 168, 76, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  padding: 8px 24px;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-lt);
  letter-spacing: 0.25em; /* Added more space as requested */
  text-transform: uppercase;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  display: block;
}

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  background: linear-gradient(to right, var(--gold-lt), var(--gold), var(--gold-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-desc {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 580px;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
  border-left: 2px solid rgba(201, 168, 76, 0.3);
  padding-left: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45);
}

.btn-secondary {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 14px 34px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat .num {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat .label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== SECTION STYLES ===== */
section {
  padding: 96px 5%;
}

.section-label {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  color: var(--gold-dk);
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 56px;
}

/* ===== ABOUT GRID ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card-main, .profile-portrait-card {
  background: var(--slate);
  border-radius: 28px;
  padding: 12px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(26, 31, 46, 0.2);
}

.profile-img-accent {
  width: 100%;
  height: auto;
  border-radius: 32px;
  border: 3px solid rgba(201, 168, 76, 0.2);
  display: block;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.about-card-main::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
}

.about-year {
  font-family: var(--font-h);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.about-card-main h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--gold-lt);
}

.about-card-main p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.about-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.4);
}

.about-float .num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

.about-float .lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.about-text h2 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  transition: border-color 0.2s, transform 0.2s;
}

.pillar:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.pillar-text h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 3px;
}

.pillar-text p {
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ===== SERVICES CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(26, 31, 46, 0.1);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.svc-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.svc-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* ===== APPROACH ===== */
.approach-bg {
  background: linear-gradient(150deg, var(--slate) 0%, var(--ink) 100%);
}

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

.approach-bg .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.step-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.3s;
}

.step-card:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 2.8rem;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold-lt);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== CLIENTS / INDUSTRIES ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.industry-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.25s;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 31, 46, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
}

.industry-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.industry-card h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.geo-strip {
  background: linear-gradient(135deg, var(--slate) 0%, var(--ink) 100%);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
}

.geo-strip h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.geo-strip p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}

.geo-flags {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.flag-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-lt);
}

.flag-item span {
  font-size: 1.8rem;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.contact-detail h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--gold-dk);
}

.contact-form {
  background: var(--white);
  border-radius: 28px;
  padding: 48px 44px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  box-shadow: 0 24px 64px rgba(26, 31, 46, 0.06);
}

.contact-form h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-form p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-b);
  font-size: 0.9rem;
  border: 1.5px solid rgba(26, 31, 46, 0.12);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea {
  height: 120px;
}

.form-submit {
  width: 100%;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--slate);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.35);
}

/* ===== PROFILE SECTION ===== */
.profile-card {
  background: var(--white);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.12);
  box-shadow: 0 16px 48px rgba(26, 31, 46, 0.06);
  max-width: 860px;
  margin: 0 auto 48px;
}

.profile-avatar {
  background: linear-gradient(160deg, var(--slate), var(--ink));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.avatar-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.profile-avatar h4 {
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.profile-avatar span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.profile-body {
  padding: 40px 44px;
}

.profile-body h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 16px;
}

.profile-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.profile-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.skill-chip {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-dk);
  border-radius: 50px;
  padding: 5px 14px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 32px rgba(26, 31, 46, 0.2);
}

.context-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-card {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: var(--slate);
  box-shadow: 0 24px 64px rgba(26, 31, 46, 0.12);
}

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

/* ===== COACHING CARDS ===== */
.coaching-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.coaching-card {
  border-radius: 24px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}

.coaching-card.dark {
  background: linear-gradient(135deg, var(--slate), var(--ink));
  color: var(--white);
}

.coaching-card.light {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--ink);
}

.coaching-card h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.coaching-card.dark h3 {
  color: var(--gold-lt);
}

.coaching-card.light h3 {
  color: var(--ink);
}

.coaching-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.coaching-card.dark p {
  color: rgba(255, 255, 255, 0.6);
}

.coaching-card.light p {
  color: var(--ink-soft);
}

.coaching-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coaching-list li {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.coaching-card.dark .coaching-list li {
  color: rgba(255, 255, 255, 0.7);
}

.coaching-card.light .coaching-list li {
  color: var(--ink-soft);
}

.coaching-list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  padding: 64px 5% 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-brand h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold-lt);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

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

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--slate) 0%, var(--ink) 100%);
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 1px 1px, var(--gold) 1px, transparent 0);
  background-size: 40px 40px;
}

/* Cinematic Grid */
.header-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.header-content {
  position: relative;
  z-index: 5;
  animation: slideInLeft 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.page-header .breadcrumb {
  display: inline-flex;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.page-header .breadcrumb span {
  color: var(--white);
  margin-left: 8px;
}

.page-header h1 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-header h1 em {
  font-style: normal;
  color: var(--gold);
}

.page-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 600px;
}

/* Refined Visual Container with Floating Animation */
.header-visual {
  position: relative;
  height: 380px;
  max-width: 460px;
  border-radius: 180px 30px 180px 30px;
  overflow: hidden;
  padding: 10px; /* Framing effect */
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  animation: 
    revealRight 1s cubic-bezier(0.165, 0.84, 0.44, 1),
    headerFloat 6s ease-in-out infinite;
  margin-left: auto;
}

.header-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 1;
}

.header-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 40%, transparent 60%, var(--ink) 100%);
  opacity: 0.5;
  z-index: 2;
}

.header-img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
}

.header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.header-visual:hover .header-img {
  transform: scale(1.12);
}

@keyframes headerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pillFloat {
  0%, 100% { transform: translateY(0) translateZ(50px); }
  50% { transform: translateY(-12px) translateZ(50px); }
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15) rotate(1deg); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes revealRight {
  from { opacity: 0; transform: scale(0.95) translateX(40px); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}

@media (max-width: 1024px) {
  .header-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .header-content p { margin-left: auto; margin-right: auto; }
  .header-visual { 
    height: 300px; 
    max-width: 420px; 
    margin: 0 auto; 
    animation: revealRight 1s ease-out; /* Disable float on mobile for stability */
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .approach-steps,
  .coaching-cards {
    grid-template-columns: 1fr 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; text-align: center; gap: 64px; }
  .hero-content { flex: 1; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; max-width: 440px; margin: 0 auto; order: -1; }
  .hero-img-frame { width: 100%; height: 480px; }
  
  .services-grid,
  .approach-steps,
  .coaching-cards,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

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

  .geo-strip {
    flex-direction: column;
  }

  nav {
    height: 64px;
  }

  .site-logo-img {
    height: 32px;
    max-height: 32px;
  }

  nav.scrolled {
    height: 54px;
  }
}

/* .nav-logo-img and .nav-logo-text consolidated into .site-logo-img and .nav-logo */

/* ===== NAVIGATION HUB ===== */
.nav-hub {
  padding: 120px 5%;
  background: var(--white);
  text-align: center;
  position: relative;
}

.nav-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.nav-card {
  height: 320px;
  border-radius: 32px;
  padding: 48px 40px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--slate);
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(30px);
}

.nav-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.nav-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 31, 46, 0.9) 100%);
  z-index: 1;
}

.nav-card .card-bg-placeholder {
  position: absolute;
  inset: 0;
  background: var(--slate-lt);
  opacity: 0.3;
  transition: transform 0.8s ease;
}

.nav-card:hover .card-bg-placeholder {
  transform: scale(1.1);
}

.nav-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(26, 31, 46, 0.15);
  border-color: var(--gold);
}

.nav-card .card-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.nav-card h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.nav-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 240px;
}

.nav-card .card-link {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-card .card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.nav-card:hover .card-link::after {
  transform: translateX(6px);
}

/* ===== PLACEHOLDERS ===== */
.placeholder-box {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border: 2px dashed rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-dk);
  text-align: center;
  padding: 20px;
  transition: all 0.3s;
}

.placeholder-box:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: var(--gold);
}

.placeholder-icon {
  font-size: 2.4rem;
  opacity: 0.5;
}

.placeholder-label {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

@keyframes staggeredReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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