@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ─── Variables ─── */
:root {
  --c-charcoal: #181818;
  --c-bone:     #F4EFE6;
  --c-blue:     #2563EB;
  --c-coral:    #FF4D4D;
  --c-lime:     #C7F464;
  --c-gray:     #D8D4CC;
  --ff-display: 'Sora', 'Helvetica Neue', Arial, system-ui, sans-serif;
  --ff-body:    'Inter', 'Helvetica Neue', Arial, system-ui, sans-serif;
  --nav-h:      80px;
  --max-w:      1280px;
  --gap:        clamp(1.5rem, 3vw, 3rem);
  --section-py: clamp(5rem, 9vw, 9rem);
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ─── Cursor ─── */
* { cursor: none; }
.cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--c-coral); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, background .25s ease;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 2px solid rgba(24,24,24,0.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease-out), height .4s var(--ease-out), border-color .3s ease;
}
body.cursor-hover .cursor-ring { width: 56px; height: 56px; border-color: var(--c-blue); }
body.cursor-hover .cursor-dot  { background: var(--c-blue); }

/* ─── Utilities ─── */
.container { width: min(var(--max-w), 100%); padding-inline: var(--gap); margin-inline: auto; }
.eyebrow {
  display: block; font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--c-coral);
}
.tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--c-lime); color: var(--c-charcoal);
  padding: .3em .75em; border-radius: 2px;
}
.section-header { margin-bottom: 1rem; }
.section-header .eyebrow { margin-bottom: .6rem; }
.section-header-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}

/* ─── Typography ─── */
.h1 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(3.5rem, 8.5vw, 8rem);
  line-height: .95; letter-spacing: -.03em;
}
.h2 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05; letter-spacing: -.025em;
}
.h3 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.2; letter-spacing: -.01em;
}
.lead { font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.75; color: #3e3e3e; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-body); font-weight: 600; font-size: .875rem;
  letter-spacing: .02em; padding: .875rem 2rem; border-radius: 4px;
  transition: background .25s, color .25s, transform .2s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.btn-primary   { background: var(--c-coral); color: var(--c-bone); }
.btn-primary:hover { background: #e63b3b; }
.btn-outline   { background: transparent; border: 2px solid var(--c-charcoal); color: var(--c-charcoal); }
.btn-outline:hover { background: var(--c-charcoal); color: var(--c-bone); box-shadow: none; }
.btn-outline-bone { background: transparent; border: 2px solid var(--c-bone); color: var(--c-bone); }
.btn-outline-bone:hover { background: var(--c-bone); color: var(--c-charcoal); box-shadow: none; }
.btn-blue { background: var(--c-blue); color: var(--c-bone); }
.btn-blue:hover { background: #1d52c8; }

/* ─── Navigation ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background .35s ease, box-shadow .35s ease;
}
.nav.scrolled { background: var(--c-bone); box-shadow: 0 1px 0 var(--c-gray); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--c-charcoal);
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--c-coral);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--c-coral); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--c-charcoal);
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  position: fixed; inset: var(--nav-h) 0 0 0; background: var(--c-bone);
  z-index: 999; padding: 3rem var(--gap); display: flex;
  flex-direction: column; gap: 2rem;
  transform: translateX(100%); transition: transform .4s var(--ease-out);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-family: var(--ff-display); font-size: clamp(2.5rem, 7vw, 3.5rem);
  font-weight: 800; color: var(--c-charcoal); transition: color .2s;
  display: block;
}
.nav-mobile a:hover { color: var(--c-blue); }
.nav-mobile .nav-mobile-cta { margin-top: 1rem; }

/* ─── Hero (Home) ─── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding-top: var(--nav-h);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  position: relative; overflow: hidden;
}
.hero > .container { position: relative; z-index: 1; }
.hero-eyebrow { margin-bottom: 1.5rem; animation: fadeUp .8s .2s var(--ease-out) both; }
.hero-headline {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: .93; letter-spacing: -.035em; color: var(--c-charcoal);
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .word {
  display: inline-block;
  transform: translateY(108%);
  animation: wordUp .9s var(--ease-out) forwards;
}
.hero-headline .line:nth-child(1) .word { animation-delay: .3s; }
.hero-headline .line:nth-child(2) .word:nth-child(1) { animation-delay: .45s; }
.hero-headline .line:nth-child(2) .word:nth-child(2) { animation-delay: .55s; }
.hero-headline .line:nth-child(2) .word:nth-child(3) { animation-delay: .65s; }
.hero-headline .blue { color: var(--c-blue); }
.hero-sub { margin-top: 2rem; max-width: 50ch; animation: fadeUp .8s .9s var(--ease-out) both; }
.hero-actions { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s 1.05s var(--ease-out) both; }
.hero-bg-num {
  position: absolute; right: -0.05em; bottom: -0.15em;
  z-index: 0;
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(14rem, 28vw, 32rem); line-height: 1;
  color: var(--c-gray); opacity: .16; pointer-events: none;
  user-select: none; letter-spacing: -.04em;
  animation: fadeIn 1.2s 1.2s ease both;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: var(--gap);
  display: flex; align-items: center; gap: .75rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--c-charcoal); opacity: .4;
  animation: fadeIn 1s 1.5s ease both;
}
.hero-scroll::before { content: ''; width: 32px; height: 1px; background: currentColor; }

@keyframes wordUp   { to { transform: translateY(0); } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }

/* ─── Marquee ─── */
.marquee-band {
  overflow: hidden;
  background: var(--c-charcoal);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee-track { display: flex; height: 52px; overflow: hidden; }
.marquee-inner {
  display: flex; align-items: center;
  animation: marqueeMove 28s linear infinite;
  white-space: nowrap;
}
.marquee-inner span {
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(244,239,230,.7); padding: 0 2.5rem;
}
.marquee-inner .sep { color: var(--c-coral); padding: 0; font-size: 1rem; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ─── Intro Section ─── */
.intro-section { padding-block: var(--section-py); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 9rem); align-items: start;
}
.intro-right { padding-top: .5rem; }
.intro-right .lead + .lead { margin-top: 1.25rem; }
.intro-right .btn { margin-top: 2.5rem; }

/* ─── Services Grid (Home) ─── */
.services-home { padding-block: var(--section-py); background: var(--c-charcoal); }
.services-home .eyebrow { color: var(--c-coral); }
.services-home .h2 { color: var(--c-bone); margin-top: .6rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08); margin-top: 4rem;
}
.service-card {
  background: var(--c-charcoal); padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: background .4s var(--ease-out); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--c-coral); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.service-card:hover { background: var(--c-blue); }
.service-card:hover::after { transform: scaleX(1); background: var(--c-lime); }
.svc-num {
  font-family: var(--ff-body); font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; color: var(--c-coral); display: block; margin-bottom: 1.5rem;
}
.service-card:hover .svc-num { color: var(--c-lime); }
.svc-title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--c-bone); line-height: 1.15; margin-bottom: .65rem;
}
.svc-desc { font-size: .875rem; color: rgba(244,239,230,.6); line-height: 1.65; transition: color .3s; }
.service-card:hover .svc-desc { color: rgba(244,239,230,.85); }
.svc-arrow {
  display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.75rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .06em; color: var(--c-coral);
  transition: gap .3s, color .3s;
}
.service-card:hover .svc-arrow { gap: .75rem; color: var(--c-lime); }
.svc-arrow svg { width: 14px; height: 14px; }

/* ─── Who We Help ─── */
.who-section { padding-block: var(--section-py); }
.who-inner { max-width: 900px; }
.industry-pills { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2.5rem; }
.industry-pill {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(.95rem, 1.4vw, 1.2rem);
  padding: .55em 1.2em; border: 2px solid var(--c-charcoal); border-radius: 100px;
  transition: background .25s, color .25s, border-color .25s;
}
.industry-pill:hover { background: var(--c-blue); color: var(--c-bone); border-color: var(--c-blue); }

/* ─── Process ─── */
.process-section {
  padding-block: var(--section-py);
  border-top: 1px solid var(--c-gray);
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gap); margin-top: 4rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 2.1rem; left: 3.5rem; right: 3.5rem;
  height: 1px; background: var(--c-gray); pointer-events: none;
}
.process-step { position: relative; }
.step-num {
  font-family: var(--ff-display); font-size: 3rem; font-weight: 800;
  color: var(--c-blue); line-height: 1; margin-bottom: 1.75rem;
  position: relative; display: inline-block;
}
.step-num::after {
  content: ''; display: block; width: 8px; height: 8px;
  background: var(--c-bone); border: 2px solid var(--c-blue);
  border-radius: 50%; position: absolute; bottom: -2.1rem; left: 50%;
  transform: translateX(-50%);
}
.step-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.1rem; color: var(--c-charcoal); margin-bottom: .6rem;
}
.step-desc { font-size: .875rem; color: #555; line-height: 1.65; }

/* ─── Work Preview (Home) ─── */
.work-preview { padding-block: var(--section-py); border-top: 1px solid var(--c-gray); }
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.work-card {
  position: relative; overflow: hidden; border-radius: 6px;
  background: var(--c-charcoal); aspect-ratio: 4/3;
}
.work-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s var(--ease-out), opacity .35s;
  opacity: .82;
}
.work-card:hover img { transform: scale(1.06); opacity: 1; }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,24,24,.85) 0%, transparent 58%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
  transition: background .4s;
}
.work-card:hover .work-overlay { background: linear-gradient(to top, rgba(37,99,235,.75) 0%, transparent 55%); }
.work-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .4rem; }
.work-tag { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-lime); }
.work-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; color: var(--c-bone); }

/* ─── Why 1031 ─── */
.why-section { padding-block: var(--section-py); background: var(--c-blue); text-align: center; }
.why-section .eyebrow { color: var(--c-lime); }
.why-section .h2 { color: var(--c-bone); margin-top: .75rem; }
.why-section .lead { color: rgba(244,239,230,.8); margin: 1.5rem auto 0; max-width: 60ch; }
.scripture {
  display: inline-block; margin-top: 2rem;
  font-style: italic; font-size: .9rem;
  color: rgba(244,239,230,.55); letter-spacing: .04em;
}

/* ─── CTA Section ─── */
.cta-section { padding-block: var(--section-py); background: var(--c-charcoal); }
.cta-section .h2 { color: var(--c-bone); }
.cta-section .lead { color: rgba(244,239,230,.6); margin-top: 1rem; max-width: 54ch; }
.cta-actions { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.cta-email { font-size: .875rem; color: rgba(244,239,230,.5); }
.cta-email a { color: rgba(244,239,230,.7); transition: color .2s; }
.cta-email a:hover { color: var(--c-coral); }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 6rem));
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}
.page-hero-inner { max-width: 760px; }
.page-hero .eyebrow { margin-bottom: .75rem; }
.page-hero .h1 { margin-top: .5rem; }
.page-hero .lead { margin-top: 1.5rem; max-width: 56ch; }

/* ─── Services Page ─── */
.service-section {
  padding-block: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--c-gray);
}
.service-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem); align-items: start;
}
.service-layout.flip { direction: rtl; }
.service-layout.flip > * { direction: ltr; }
.svc-number {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 4.5rem; color: var(--c-gray); line-height: 1;
  margin-bottom: -.5rem; display: block;
}
.svc-name {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.0;
  letter-spacing: -.025em; color: var(--c-charcoal);
}
.svc-tagline { font-size: 1rem; font-weight: 600; color: var(--c-blue); margin-top: .5rem; margin-bottom: 1.25rem; }
.svc-body { font-size: .95rem; color: #444; line-height: 1.75; margin-bottom: 1.5rem; }
.svc-includes-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-charcoal); margin-bottom: .85rem; display: block;
}
.svc-includes-list { display: flex; flex-direction: column; gap: .5rem; }
.svc-includes-list li {
  font-size: .875rem; color: #444; display: flex; align-items: baseline; gap: .65rem;
}
.svc-includes-list li::before { content: '—'; color: var(--c-coral); flex-shrink: 0; }
.svc-outcome {
  margin-top: 1.75rem; padding: 1.25rem 1.5rem;
  background: rgba(37,99,235,.06); border-left: 3px solid var(--c-blue); border-radius: 0 4px 4px 0;
}
.svc-outcome strong {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--c-blue); margin-bottom: .4rem;
}
.svc-outcome p { font-size: .875rem; color: #333; line-height: 1.65; }
.svc-image {
  border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; background: var(--c-gray);
}
.svc-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s var(--ease-out);
}
.svc-image:hover img { transform: scale(1.04); }

/* ─── Packages ─── */
.packages-section { padding-block: var(--section-py); background: var(--c-charcoal); }
.packages-section .h2 { color: var(--c-bone); margin-top: .6rem; }
.packages-section .lead { color: rgba(244,239,230,.6); margin-top: 1rem; }
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3.5rem;
}
.pkg-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  padding: 2rem; border-radius: 6px;
  transition: background .3s, border-color .3s, transform .2s;
}
.pkg-card:hover { background: rgba(255,255,255,.09); border-color: var(--c-coral); transform: translateY(-3px); }
.pkg-name { font-family: var(--ff-display); font-weight: 800; font-size: 1.2rem; color: var(--c-bone); margin-bottom: .65rem; }
.pkg-desc { font-size: .875rem; color: rgba(244,239,230,.6); line-height: 1.65; }
.pkg-link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.5rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; color: var(--c-coral); transition: gap .25s;
}
.pkg-card:hover .pkg-link { gap: .65rem; }

/* ─── Portfolio / Work Page ─── */
.filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.filter-btn {
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  padding: .5rem 1.25rem; border: 2px solid var(--c-gray); border-radius: 100px;
  color: var(--c-charcoal); background: transparent;
  transition: background .25s, color .25s, border-color .25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--c-charcoal); color: var(--c-bone); border-color: var(--c-charcoal);
}
.portfolio-section { padding-block: var(--section-py); }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.port-item {
  position: relative; overflow: hidden; border-radius: 6px;
  background: var(--c-charcoal); aspect-ratio: 4/3;
  cursor: pointer;
  transition: opacity .35s, transform .35s;
}
.port-item.hidden { display: none; }
.port-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s var(--ease-out);
}
.port-item:hover img { transform: scale(1.05); }
.port-overlay {
  position: absolute; inset: 0;
  background: rgba(24,24,24,0); display: flex;
  flex-direction: column; justify-content: flex-end; padding: 1.5rem;
  transition: background .4s;
}
.port-item:hover .port-overlay { background: rgba(24,24,24,.72); }
.port-info { transform: translateY(16px); opacity: 0; transition: transform .4s var(--ease-out), opacity .35s; }
.port-item:hover .port-info { transform: none; opacity: 1; }
.port-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .35rem; }
.port-tag { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-lime); }
.port-name { font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--c-bone); }
.port-type { font-size: .78rem; color: rgba(244,239,230,.55); margin-top: .2rem; }

/* ─── Portfolio Lightbox ─── */
.port-modal {
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 1rem) 1.5rem 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.port-modal.open { opacity: 1; pointer-events: all; }
.port-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(6px);
}
.port-modal-panel {
  position: relative; z-index: 1;
  background: #181818; border-radius: 12px;
  width: min(92vw, 960px);
  max-height: calc(100vh - var(--nav-h) - 2.5rem);
  overflow-y: auto; overflow-x: hidden;
  transform: translateY(28px) scale(.97);
  transition: transform .4s var(--ease-out);
  box-shadow: 0 40px 100px rgba(0,0,0,.65);
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.15) transparent;
}
.port-modal-panel::-webkit-scrollbar { width: 5px; }
.port-modal-panel::-webkit-scrollbar-track { background: transparent; }
.port-modal-panel::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 99px; }
.port-modal.open .port-modal-panel { transform: none; }
.port-modal-topbar {
  position: sticky; top: 0; z-index: 2;
  display: flex; justify-content: flex-end;
  padding: 1.1rem 1.1rem .5rem;
  background: linear-gradient(180deg, #181818 55%, rgba(24,24,24,0));
  pointer-events: none;
}
.port-modal-close {
  pointer-events: all;
  background: rgba(255,255,255,.12); border: none; border-radius: 50%;
  width: 2.25rem; height: 2.25rem;
  color: var(--c-bone); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.port-modal-close:hover { background: rgba(255,255,255,.24); }
.port-modal-header {
  padding: 0 2.5rem 2.25rem;
  margin-top: -1rem;
  display: flex; flex-direction: column; gap: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.port-modal-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.port-modal-name {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem); color: var(--c-bone); margin: 0;
}
.port-modal-type { font-size: .85rem; color: rgba(244,239,230,.5); margin: 0; }
.port-modal-desc {
  font-size: .95rem; color: rgba(244,239,230,.78);
  line-height: 1.8; margin: 0; max-width: 64ch;
}
.port-modal-gallery {
  display: flex; flex-direction: column; gap: .75rem;
  padding: 2rem 2rem 2.5rem;
}
.port-modal-gallery img {
  width: 100%; display: block;
  border-radius: 8px; object-fit: cover;
}
.port-modal-video {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: 8px; overflow: hidden;
}
.port-modal-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}
@media (max-width: 600px) {
  .port-modal { padding: 1rem; }
  .port-modal-header { padding: 0 1.25rem 1.75rem; }
  .port-modal-gallery { padding: 1.5rem 1.25rem 2rem; gap: .5rem; }
  .port-modal-topbar { padding: .85rem .85rem .4rem; }
}

.confidential-note {
  margin-top: 4rem; padding: 2.5rem;
  border: 1px solid var(--c-gray); border-left: 4px solid var(--c-blue);
  border-radius: 4px;
}
.confidential-note h3 {
  font-family: var(--ff-display); font-weight: 700; font-size: 1rem;
  letter-spacing: .04em; margin-bottom: .85rem; color: var(--c-charcoal);
}
.confidential-note p { font-size: .875rem; color: #555; line-height: 1.75; max-width: 76ch; }

/* ─── About Page ─── */
.about-intro { padding-block: var(--section-py); border-top: 1px solid var(--c-gray); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 8rem); align-items: start; }
.about-body { font-size: .95rem; color: #444; line-height: 1.8; }
.about-body p + p { margin-top: 1rem; }

.founder-section { padding-block: var(--section-py); background: var(--c-charcoal); }
.founder-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(3rem, 6vw, 7rem); align-items: start; }
.founder-img { border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; background: #2a2a2a; }
.founder-img img { width: 100%; height: 100%; object-fit: cover; }
.founder-content .eyebrow { color: var(--c-coral); }
.founder-content .h2 { color: var(--c-bone); margin-top: .6rem; }
.founder-bio { color: rgba(244,239,230,.7); line-height: 1.8; font-size: .93rem; margin-top: 1.5rem; }
.founder-bio p + p { margin-top: 1rem; }
.expertise-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.exp-pill {
  font-size: .75rem; font-weight: 500; padding: .35rem .9rem;
  border: 1px solid rgba(244,239,230,.2); border-radius: 100px;
  color: rgba(244,239,230,.7); transition: border-color .2s, color .2s;
}
.exp-pill:hover { border-color: var(--c-coral); color: var(--c-bone); }

.values-section { padding-block: var(--section-py); border-top: 1px solid var(--c-gray); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  padding: 2rem; border: 1px solid var(--c-gray); border-radius: 6px;
  transition: border-color .3s, background .3s;
}
.value-card:hover { border-color: var(--c-blue); background: rgba(37,99,235,.04); }
.value-title {
  font-family: var(--ff-display); font-weight: 800; font-size: 1.1rem;
  color: var(--c-charcoal); margin-bottom: .5rem;
}
.value-title span { color: var(--c-blue); }
.value-body { font-size: .875rem; color: #555; line-height: 1.65; }

/* ─── Contact Page ─── */
.contact-section { padding-block: var(--section-py); }
.contact-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(3rem, 6vw, 7rem); align-items: start; }
.form-group { margin-bottom: 1.35rem; }
.form-label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--c-charcoal); margin-bottom: .5rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: .875rem 1rem; background: transparent;
  border: 1.5px solid var(--c-gray); border-radius: 4px;
  font-size: .93rem; color: var(--c-charcoal);
  transition: border-color .25s, box-shadow .25s; -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.check-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.check-label {
  display: flex; align-items: center; gap: .35rem; font-size: .82rem;
  padding: .4rem .9rem; border: 1.5px solid var(--c-gray); border-radius: 100px; cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.check-label input[type="checkbox"] { display: none; }
.check-label:has(input:checked) { border-color: var(--c-blue); background: rgba(37,99,235,.08); color: var(--c-blue); }
.form-note { font-size: .78rem; color: #888; margin-top: .5rem; }

.contact-aside { padding-top: 1rem; }
.contact-block { margin-bottom: 2.5rem; }
.contact-block-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-blue); display: block; margin-bottom: .4rem;
}
.contact-block p, .contact-block a { font-size: .92rem; color: var(--c-charcoal); line-height: 1.7; }
.contact-block a { transition: color .2s; }
.contact-block a:hover { color: var(--c-coral); }
.contact-social { display: flex; gap: 1.25rem; margin-top: .35rem; }
.contact-social a { font-size: .85rem; font-weight: 600; color: var(--c-charcoal); transition: color .2s; }
.contact-social a:hover { color: var(--c-blue); }

.next-steps-section { padding-block: var(--section-py); background: var(--c-bone); border-top: 1px solid var(--c-gray); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); margin-top: 3rem; }
.next-step-num {
  font-family: var(--ff-display); font-weight: 800; font-size: 2.25rem;
  color: var(--c-coral); line-height: 1; margin-bottom: .85rem;
}
.next-step-title { font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--c-charcoal); margin-bottom: .5rem; }
.next-step-desc { font-size: .875rem; color: #555; line-height: 1.65; }

.faq-section { padding-block: var(--section-py); border-top: 1px solid var(--c-gray); }
.faq-list { margin-top: 2.5rem; max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--c-gray); }
.faq-q {
  width: 100%; text-align: left; padding: 1.35rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1rem;
  color: var(--c-charcoal); gap: 1.5rem;
}
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border: 2px solid var(--c-gray);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--c-charcoal);
  transition: background .25s, border-color .25s, transform .3s;
}
.faq-item.open .faq-icon { background: var(--c-blue); border-color: var(--c-blue); color: var(--c-bone); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out), padding .3s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.35rem; }
.faq-a p { font-size: .9rem; color: #555; line-height: 1.75; }

.form-success {
  display: none; padding: 2.5rem; text-align: center;
  background: rgba(37,99,235,.07); border: 1.5px solid var(--c-blue); border-radius: 6px;
}
.form-success.show { display: block; }
.form-success h3 { font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem; color: var(--c-charcoal); margin-bottom: .75rem; }
.form-success p { font-size: .9rem; color: #555; line-height: 1.65; }

/* ─── Footer ─── */
.footer { background: var(--c-charcoal); padding-top: 5rem; padding-bottom: 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem); padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(244,239,230,.1);
}
.footer-logo img { height: 36px; width: auto; }
.footer-tagline { font-size: .875rem; color: rgba(244,239,230,.5); line-height: 1.65; margin-top: .85rem; max-width: 26ch; }
.footer-col h4 {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(244,239,230,.3); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col li a { font-size: .875rem; color: rgba(244,239,230,.6); transition: color .2s; }
.footer-col li a:hover { color: var(--c-coral); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.75rem; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .78rem; color: rgba(244,239,230,.28); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; color: rgba(244,239,230,.3); transition: color .2s; }
.footer-legal a:hover { color: var(--c-coral); }

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .packages-grid       { grid-template-columns: repeat(2, 1fr); }
  .work-grid           { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-steps       { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .founder-grid        { grid-template-columns: 1fr; max-width: 600px; }
  .founder-img         { aspect-ratio: 16/9; }
  .steps-grid          { grid-template-columns: repeat(2, 1fr); }
  .values-grid         { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-right .btn-outline { display: none; }
  .nav-hamburger { display: flex; }
  .intro-grid   { grid-template-columns: 1fr; }
  .about-grid   { grid-template-columns: 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .service-layout.flip { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .cursor-dot, .cursor-ring { display: none; }
  * { cursor: auto; }
  .hero-bg-num  { font-size: clamp(8rem, 35vw, 14rem); }
}
@media (max-width: 580px) {
  .work-grid       { grid-template-columns: 1fr; }
  .portfolio-grid  { grid-template-columns: 1fr; }
  .packages-grid   { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .steps-grid      { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; text-align: center; }
}
