/* ─── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:   #ffffff;
  --white:   #111111;
  --accent:  #f97316;
  --accent2: #ea580c;
  --mid:     #f5f5f5;
  --muted:   #777;
  --light:   #e8e8e0;
  --border:  rgba(0,0,0,0.1);
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', Helvetica, sans-serif;
  --ff-mono: 'DM Mono', 'Courier New', monospace;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
p { color: #000000; font-weight: 500; font-family: var(--ff-body); }
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-body); }

/* ─── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ─── PRELOADER ───────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-inner { text-align: center; }
.pre-name {
  font-family: var(--ff-body);
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: .2em;
  color: var(--white);
  overflow: hidden;
}
.pre-name span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: letterIn .6s forwards;
}
.pre-name span:nth-child(1) { animation-delay: .00s; }
.pre-name span:nth-child(2) { animation-delay: .05s; }
.pre-name span:nth-child(3) { animation-delay: .10s; }
.pre-name span:nth-child(4) { animation-delay: .15s; }
.pre-name span:nth-child(5) { animation-delay: .20s; }
.pre-name span:nth-child(6) { animation-delay: .25s; }
@keyframes letterIn { to { opacity: 1; transform: translateY(0); } }
.pre-line {
  width: 0; height: 2px;
  background: var(--accent);
  margin: 1rem auto 0;
  animation: lineExpand 1s .5s forwards;
}
@keyframes lineExpand { to { width: 100%; } }
.pre-sub {
  font-family: var(--ff-body);
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1rem;
  opacity: 0;
  animation: letterIn .6s 1s forwards;
}

/* ─── HEADER / NAV ────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background .4s, box-shadow .4s;
  background: rgba(220, 90, 10, 0.85);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
header.scrolled {
  background: rgba(210, 82, 8, 0.95);
  backdrop-filter: saturate(200%) blur(28px);
  -webkit-backdrop-filter: saturate(200%) blur(28px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
header.past-hero {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
header.past-hero .nav-logo,
header.past-hero nav a,
header.past-hero .nav-cta {
  color: var(--accent);
  text-shadow: none;
}
header.past-hero nav a::after { background: var(--accent); }
header.past-hero nav a:hover { color: var(--accent2); }
header.past-hero .nav-cta {
  border-color: rgba(249,115,22,.5);
  background: rgba(249,115,22,.08);
}
header.past-hero .nav-cta:hover {
  background: rgba(249,115,22,.16);
  border-color: var(--accent);
}
.nav-inner {
  width: 100%;
  max-width: 100%;
  padding: .85rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
/* Hide logo */
.logo { display: none; }
.nav-logo {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
nav ul { display: flex; gap: 2.5rem; }
.nav-center { display: flex; align-items: center; gap: 2rem; justify-content: center; }
nav a {
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  position: relative;
  transition: color .3s;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}
nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: #ffffff;
  transition: width .3s;
}
nav a:hover { color: #ffffff; }
nav a:hover::after { width: 100%; }
@keyframes navCtaBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.nav-cta {
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.6);
  color: #ffffff;
  padding: .5rem 1.4rem;
  border-radius: 6px;
  background: rgba(255,255,255,.15);
  transition: background .3s, border-color .3s;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
  animation: navCtaBounce 2.8s ease-in-out infinite;
}
.nav-cta:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.9);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  justify-self: end;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0; top: 66px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-body);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: rgba(0,0,0,.7);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--accent); }

/* ─── SECTION HELPERS ─────────────────────────────────────────── */
.section { padding: 3.5rem 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-tag {
  font-family: var(--ff-body);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--ff-body);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 900;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── HERO ────────────────────────────────────────────────────── */
#hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
  background-image: url('https://wallpapercave.com/wp/wp7717148.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-bg { display: none; }
.hero-grid-lines { display: none; }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 700px;
  gap: 0;
  align-items: center;
}
.hero-avatar-wrap { display: none; }
.hero-title { color: #ffffff !important; }
.hero-title em { color: var(--accent); }
.hero-sub { color: rgba(255,255,255,0.75) !important; }
.info-item p { color: rgba(255,255,255,0.6) !important; }
.info-item span { color: #ffffff !important; }
.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--ff-body);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: #000000;
  max-width: 400px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 2px;
  transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(0,0,0,.2);
  color: rgba(0,0,0,.6);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 2px;
  transition: border-color .3s, color .3s, transform .2s;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.hero-avatar-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.avatar-frame {
  width: clamp(280px, 35vw, 440px);
  height: clamp(340px, 42vw, 540px);
  border-radius: 4px;
  background: var(--mid);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.avatar-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(160deg, #e8e8e8 0%, #d8d8d8 100%);
}
.avatar-placeholder svg { width: 70%; opacity: .35; }
.avatar-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #ffffff;
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  border: 4px solid var(--black);
  animation: badgeSpin 20s linear infinite;
}
@keyframes badgeSpin { to { transform: rotate(360deg); } }
.avatar-badge-inner { animation: badgeSpin 20s linear infinite reverse; text-align: center; }
.hero-info-bar {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.info-item p {
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem;
}
.info-item span {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--white);
}

/* ─── SERVICES ────────────────────────────────────────────────── */
#services {
  background: var(--mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--mid);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { background: #e8e8e8; }
.service-card:hover::before { opacity: 1; }
.service-number {
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.service-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--ff-body);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-card p {
  font-family: var(--ff-body);
  font-size: .9rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-link {
  font-family: var(--ff-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap .2s;
}
.service-link:hover { gap: .85rem; }

/* ─── WORK / GALLERY ──────────────────────────────────────────── */
#work {
  background: var(--black);
}
.work-inner {
  position: relative;
}
.work-inner::before {
  content: '';
  position: absolute;
  top: calc(6rem - 86px);
  right: calc(-50vw + 50%);
  width: calc(50vw - 10%);
  height: 75%;
  background: #eaeaea;
  border-radius: 60px 0 0 60px;
  z-index: 0;
  pointer-events: none;
}
.work-inner > * {
  position: relative;
  z-index: 1;
}
.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: var(--mid);
}
.work-item-img {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.work-item:nth-child(1) .work-item-img { background: linear-gradient(135deg, #ffe8d6 0%, #ffd5b8 100%); }
.work-item:nth-child(2) .work-item-img { background: linear-gradient(135deg, #fff3e8 0%, #ffe0c4 100%); }
.work-item:nth-child(3) .work-item-img { background: linear-gradient(135deg, #ffecd8 0%, #ffd8b0 100%); }
.work-item:nth-child(4) .work-item-img { background: linear-gradient(135deg, #fff5ed 0%, #ffe8d4 100%); }
.work-item-img svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .25; }
.work-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 25%;
  background: rgba(249,115,22,.75);
  display: flex; align-items: center;
  padding: 0 1.5rem;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.work-item:hover .work-overlay { transform: translateY(0); }
.work-overlay-content h4 {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  margin-bottom: .4rem;
  color: #ffffff;
}
.work-overlay-content p {
  font-family: var(--ff-body);
  font-size: .72rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
}

/* ─── ABOUT / SKILLS ──────────────────────────────────────────── */
#about {
  background: var(--mid);
  border-top: 1px solid var(--border);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  padding: 4rem 3.5rem;
}
.about-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  width: calc(50vw + 37.5%);
  height: 100%;
  background: #eaeaea;
  border-radius: 0 60px 60px 0;
  z-index: 0;
  pointer-events: none;
}
.about-inner > * {
  position: relative;
  z-index: 1;
}
.about-text p {
  font-family: var(--ff-body);
  color: #000000;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: .95rem;
}
.about-text blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
  margin: 2rem 0;
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.5;
}
.skills-wrap { display: flex; flex-direction: column; gap: 1.75rem; }
.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: .6rem;
}
.skill-header span:first-child {
  font-family: var(--ff-body);
  font-size: .85rem;
  color: rgba(0,0,0,.7);
  letter-spacing: .04em;
}
.skill-header span:last-child {
  font-family: var(--ff-mono);
  font-size: .78rem;
  color: var(--accent);
}
.skill-track {
  height: 3px;
  background: rgba(0,0,0,.1);
  border-radius: 2px;
  overflow: hidden;
}
.skill-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.brands-strip {
  text-align: center;
  padding-bottom: 2.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0 0;
}
.brands-strip p {
  font-family: var(--ff-body);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.brands-row { display: flex; gap: 1.25rem; align-items: stretch; flex-wrap: wrap; justify-content: center; }
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 120px;
  padding: 1.5rem 1rem 1.25rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
  transition: transform .3s, box-shadow .3s;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(249,115,22,.12), 0 0 0 1px rgba(249,115,22,.15);
}
.brand-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-card-icon svg { display: block; }
.brand-card-label {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 500;
  color: rgba(0,0,0,.6);
  letter-spacing: .02em;
  text-align: center;
}

/* ─── INSPIRATION / QUOTES ────────────────────────────────────── */
#testimonials, #inspiration {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.testi-wrap {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.testi-slider { position: relative; min-height: 200px; }
.testi-slide { display: none; animation: fadeSlide .5s ease; }
.testi-slide.active { display: block; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testi-quote {
  font-family: var(--ff-body);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  color: #000000;
  font-style: italic;
  margin-bottom: 2.5rem;
  position: relative;
}
.testi-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent);
  opacity: .25;
  position: absolute;
  top: -1.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-body);
  line-height: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}
.testi-author-info strong {
  display: block;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .95rem;
}
.testi-author-info small {
  font-family: var(--ff-body);
  font-size: .8rem;
  color: var(--muted);
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2.5rem;
}
.testi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,.15);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.testi-dot.active { background: var(--accent); transform: scale(1.3); }

/* ─── BLOG ────────────────────────────────────────────────────── */
#blog {
  background: var(--mid);
  border-top: 1px solid var(--border);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.3); }
.blog-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.blog-img-inner { width: 100%; height: 100%; transition: transform .5s; }
.blog-card:hover .blog-img-inner { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-cat {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.blog-card h3 {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: .75rem;
  transition: color .2s;
}
.blog-card:hover h3 { color: var(--accent); }
.blog-meta {
  font-family: var(--ff-body);
  font-size: .78rem;
  color: var(--muted);
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: #f8f8f8;
  border-top: 1px solid var(--border);
}
.footer-top { padding: 5rem 0; }
.footer-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--ff-body);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-family: var(--ff-body);
  color: #000000;
  font-size: .9rem;
  max-width: 360px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.social-row { display: flex; gap: .75rem; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: border-color .3s, background .3s, color .3s;
}
.social-btn:hover { border-color: var(--accent); background: var(--accent); color: #ffffff; }
.footer-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-family: var(--ff-body);
  font-size: .8rem;
  color: #000000;
}
.footer-bottom p a { color: var(--accent); }
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a {
  font-family: var(--ff-body);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.45);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--accent); }

/* ─── BACK TO TOP ─────────────────────────────────────────────── */
#back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 50;
  cursor: pointer;
}
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover { transform: translateY(-3px); }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-eyebrow      { justify-content: center; }
  .hero-sub          { margin-left: auto; margin-right: auto; }
  .hero-actions      { justify-content: center; }
  .hero-avatar-wrap  { display: none; }
  .hero-info-bar     { justify-content: center; flex-wrap: wrap; gap: 2rem; }
  .services-grid     { grid-template-columns: 1fr; }
  .work-grid         { grid-template-columns: 1fr; }
  .about-inner       { grid-template-columns: 1fr; gap: 3rem; }
  .blog-grid         { grid-template-columns: 1fr; }
  nav ul, .nav-cta   { display: none; }
  .hamburger         { display: flex; }
  .footer-cta-row    { flex-direction: column; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .services-header   { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .work-header       { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
@media (max-width: 600px) {
  .section           { padding: 4.5rem 0; }
  .hero-info-bar     { flex-direction: column; gap: 1.25rem; }
  .testi-quote::before { display: none; }
}

/* ─── PARALLAX SCENE ─────────────────────────────────────────── */
.our-services {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
#skyStage {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.sky-layer {
  position: absolute;
  left: 0;
  width: 100%;
  height: 300%;
  top: -100%;
  will-change: transform;
}
.sky-layer svg {
  width: 100%;
  height: 100%;
  display: block;
}
.our-services .container { position: relative; z-index: 2; }

/* ─── SERVICES CARDS ─────────────────────────────────────────── */
.section-padding40 { padding-top: 80px; padding-bottom: 80px; }
.section-tittle h2 {
  font-family: var(--ff-body);
  font-size: 50px; font-weight: 400;
  line-height: 1.2; margin-bottom: 22px;
  color: var(--white);
}
.mb-80 { margin-bottom: 40px; }
.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
.no-gutters { margin-right: 0; margin-left: 0; overflow: visible !important; }
.no-gutters > [class*="col-"] { padding-right: 0; padding-left: 0; }
.col-xl-8, .col-lg-6, .col-md-6, .col-sm-6 {
  position: relative; width: 100%;
  padding-right: 15px; padding-left: 15px;
}
@media (min-width: 576px)  { .col-sm-6 { flex: 0 0 50%; max-width: 50%; } }
@media (min-width: 768px)  { .col-md-6 { flex: 0 0 50%; max-width: 50%; } }
@media (min-width: 992px)  { .col-lg-6 { flex: 0 0 50%; max-width: 50%; } }
@media (min-width: 1200px) { .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; } }
.single-services {
  border-left: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 44px 36px;
  position: relative; z-index: 1;
  transition: box-shadow .35s ease, transform .35s ease;
  background: #ffffff;
}
.single-services:hover {
  box-shadow: 0 0 0 1px rgba(249,115,22,.25),
              0 8px 40px 0 rgba(249,115,22,.35),
              0 2px 12px 0 rgba(249,115,22,.2);
  transform: translateY(-4px);
  z-index: 10;
}
.our-services .col-lg-6:nth-child(1) .single-services,
.our-services .col-lg-6:nth-child(2) .single-services { border-top: 0; }
.our-services .col-lg-6:nth-child(1) .single-services,
.our-services .col-lg-6:nth-child(3) .single-services { border-left: 0; }
.our-services .col-lg-6:nth-child(3) .single-services,
.our-services .col-lg-6:nth-child(4) .single-services { border-bottom: 0; }
.services-ion { margin-bottom: 31px; }
.services-ion svg { display: block; }
.services-cap h5 a {
  font-family: var(--ff-body);
  font-size: 24px; font-weight: 600; line-height: 1.4;
  margin-bottom: 12px; display: block;
  color: var(--white) !important; text-decoration: none; transition: color .3s;
}
.services-cap h5 a:hover { color: var(--accent) !important; }
.services-cap p {
  font-family: var(--ff-body);
  font-size: 16px; line-height: 1.7;
  color: #000000; font-weight: 500; margin-bottom: 24px;
}
.browse-btn {
  color: var(--accent); font-family: var(--ff-body);
  font-weight: 500; font-size: 16px;
  position: relative; display: inline-block;
  text-decoration: none; transition: letter-spacing .3s;
}
.browse-btn::before {
  position: absolute; content: "";
  background: var(--accent); width: 100%; height: 2px;
  bottom: -11px; left: 0;
}
.browse-btn:hover { letter-spacing: 1px; }
@media (max-width: 575px) {
  .single-services { padding: 40px 20px; border: 0 !important; }
  .section-padding40 { padding-top: 60px; padding-bottom: 60px; }
}

/* ─── INNOVATORS SECTION ──────────────────────────────────────── */
#innovators {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.inno-subtitle {
  text-align: center;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.inno-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.inno-tab {
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .55rem 1.25rem;
  border-radius: 4px;
  border: 1.5px solid rgba(0,0,0,.15);
  background: transparent;
  color: rgba(0,0,0,.55);
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
}
.inno-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.inno-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}
.inno-group { display: none; }
.inno-group.active { display: block; }
.inno-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.inno-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.inno-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(249,115,22,.12);
  border-color: rgba(249,115,22,.3);
}
.inno-card-wide {
  grid-column: span 2;
}
.inno-avatar-wrap {
  display: flex;
  justify-content: flex-start;
}
.inno-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--border);
}
.inno-avatar-mono {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .04em;
}
.inno-card-body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.inno-name {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.inno-era {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .25rem;
}
.inno-bio {
  font-family: var(--ff-body);
  font-size: .88rem;
  line-height: 1.75;
  color: #000000;
  flex: 1;
}
.inno-link {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
  margin-top: .25rem;
}
.inno-link:hover { gap: .6rem; }
.inno-multi-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .25rem;
}
.inno-callout {
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  font-family: var(--ff-body);
  font-style: italic;
  font-size: .88rem;
  color: #333;
  line-height: 1.6;
  margin: .5rem 0;
}
@media (max-width: 900px) {
  .inno-grid { grid-template-columns: repeat(2, 1fr); }
  .inno-card-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .inno-grid { grid-template-columns: 1fr; }
  .inno-card-wide { grid-column: span 1; }
  .inno-tabs { gap: .35rem; }
  .inno-tab { font-size: .72rem; padding: .45rem .9rem; }
}

/* ─── EXPERTISE SECTION ───────────────────────────────────────── */
#work .expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.expertise-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(249,115,22,.12);
  border-color: rgba(249,115,22,.3);
}
.expertise-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(249,115,22,.06);
  border-radius: 12px;
}
.expertise-title {
  font-family: var(--ff-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.expertise-desc {
  font-family: var(--ff-body);
  font-size: .9rem;
  line-height: 1.7;
  color: #000000;
  flex: 1;
}
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .25rem;
}
.expertise-tag {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  padding: .3rem .65rem;
  border-radius: 100px;
  background: rgba(249,115,22,.08);
  color: var(--accent);
  border: 1px solid rgba(249,115,22,.2);
}
@media (max-width: 900px) {
  #work .expertise-grid { grid-template-columns: 1fr; }
}

