:root {
  --bg: #ffffff;
  --bg2: #F7F8FA;
  --ink: #0B1220;
  --ink2: #4B5565;
  --mute: #94A0B2;
  --line: #E4E7EC;
  --line2: #CBD2DC;
  --accent: #2563EB;
  --accent-hover: #3B82F6;
  --accent-dark: #1D4ED8;
  --accent2: #14B8A6;
  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --display-bold: 'Anton', 'Arial Narrow', sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
}

/* Dark bands: hero, nav, footer keep the original near-black theme */
nav, .hero, footer {
  --bg: #0a0a0a;
  --bg2: #111111;
  --ink: #f5f5f3;
  --ink2: #cfcfcc;
  --mute: #6b6b6b;
  --line: #1f1f1f;
  --line2: #2a2a2a;
  color: var(--ink);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv01";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #ffffff; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.italic {
  font-style: italic;
  font-family: 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
  border-bottom-color: var(--line);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
}
.logo-mark {
  width: 38px; height: 38px;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  display: grid;
  place-items: center;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink2);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a:hover { color: var(--accent-hover); }
.nav-links a.current { color: var(--accent-hover); }
.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.nav-cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.menu-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; }

/* ===== HERO ===== */
.hero {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  position: relative;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-content { position: relative; z-index: 2; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.7);
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--display-bold);
  font-size: clamp(60px, 11vw, 184px);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-line {
  line-height: 0.92;
}
.hero-line-italic {
  margin-top: -0.06em;
  line-height: 0.8;
}
.hero-line-stroke {
  margin-top: 0.05em;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 60px;
}
.hero-sub {
  max-width: 520px;
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-self: end;
}
.btn {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 18px 34px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn.ghost:hover {
  background: transparent;
  color: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: none;
}
.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--bg2);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--display);
  font-size: 56px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 60px;
  color: var(--ink);
}
.marquee-item:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
}
.marquee-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTIONS COMMON ===== */
section { padding: 140px 0; position: relative; }
.section-label {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label .num { color: var(--accent); }

h2 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.005em;
  font-weight: 400;
  color: var(--ink);
}

/* ===== ABOUT ===== */
.about {
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: start;
}
.about h2 { margin-bottom: 40px; }
.about p {
  font-size: 18px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 540px;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.pillar-title {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}
.pillar-desc {
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.55;
}
.about-visual {
  aspect-ratio: 4/5;
  background: var(--bg2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.10), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(20, 184, 166, 0.08), transparent 50%);
}
.visual-mark {
  font-family: var(--display);
  font-size: 220px;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.visual-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute);
}

/* ===== FOUNDER ===== */
.founder {
  border-top: 1px solid var(--line);
  background: var(--bg2);
}
.founder-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.founder-mark {
  width: 220px;
  height: 220px;
  border: 1px solid var(--line2);
  background: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 72px;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}
.founder-name {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.founder-role {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 24px;
}
.founder-bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink2);
  margin-bottom: 18px;
  max-width: 620px;
}

/* ===== SERVICES ===== */
.services {
  border-top: 1px solid var(--line);
}
.services h2 {
  font-size: clamp(40px, 6.5vw, 88px);
  margin-bottom: 80px;
  max-width: 1000px;
}
.services-list {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.4s ease, background 0.4s ease;
  position: relative;
}
.service-row:hover {
  padding-left: 24px;
  padding-right: 24px;
  background: var(--bg2);
}
.service-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.1em;
  transition: color 0.4s ease;
}
.service-row:hover .service-num { color: var(--accent); }
.service-name {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: transform 0.4s ease;
}
.service-row:hover .service-name { transform: translateX(8px); }
.service-desc {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.55;
  max-width: 460px;
}
.service-arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--line2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all 0.4s ease;
}
.service-row:hover .service-arrow {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: rotate(45deg);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.35);
}

/* ===== WHO WE SERVE ===== */
.serve {
  border-top: 1px solid var(--line);
  background: var(--bg2);
}
.serve-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.serve h2 { font-size: clamp(44px, 7vw, 88px); }
.serve-head p {
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.65;
  max-width: 480px;
}
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.serve-card {
  background: var(--bg);
  padding: 48px 44px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.4s ease;
}
.serve-card:hover { background: var(--bg2); }
.serve-card-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.14em;
}
.serve-card-title {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 60px 0 18px;
  color: var(--ink);
}
.serve-card-desc {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.6;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  border-top: 1px solid var(--line);
}
.portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.portfolio h2 { font-size: clamp(44px, 7vw, 88px); }
.portfolio-sub {
  font-size: 16px;
  color: var(--ink2);
  max-width: 360px;
  line-height: 1.6;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: clamp(280px, 34vw, 500px) clamp(320px, 40vw, 580px) clamp(200px, 26vw, 380px) clamp(200px, 26vw, 380px);
  gap: 16px;
}
.work-item {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
a.work-item {
  display: block;
  text-decoration: none;
  color: inherit;
}
.work-item:hover {
  transform: translateY(-6px);
  border-color: var(--line2);
}
.work-item.large { grid-column: span 7; }
.work-item.small { grid-column: span 5; }
.work-item.med-a { grid-column: span 4; }
.work-item.med-b { grid-column: span 4; }
.work-item.med-c { grid-column: span 4; }
.work-item.med-h { grid-column: span 8; }
.work-item.wide  { grid-column: span 12; }

.work-thumb {
  position: absolute;
  inset: 0;
  background: #0c0c0c;
  overflow: hidden;
}
.work-thumb video,
.work-thumb img,
.work-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.work-item:hover .work-thumb video,
.work-item:hover .work-thumb img {
  transform: scale(1.04);
}
.work-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.03), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.work-thumb::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.work-play {
  position: absolute;
  width: 64px; height: 64px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  transition: all 0.4s ease;
  z-index: 3;
  cursor: pointer;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.work-play:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.4);
}
.work-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.8) 55%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  z-index: 2;
}
.work-title {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: #ffffff;
  max-width: 78%;
}
.work-subtitle {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cbd5e1;
  margin-top: 6px;
}
.work-platform {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-hover);
  margin-bottom: 6px;
}
.work-tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e2e8f0;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  white-space: nowrap;
}
.work-item.pending .work-thumb {
  background: linear-gradient(155deg, var(--accent) 0%, #0B1220 75%);
}
.work-pending-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
}

/* ===== PORTFOLIO TABS ===== */
.portfolio-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.tab-btn {
  background: none;
  border: none;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 0 0 16px 0;
  margin-bottom: -1px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--ink); border-bottom-color: var(--accent); }

.portfolio-panel[hidden] { display: none; }

.work-long { max-width: 780px; }
.work-item.work-long-item { aspect-ratio: 16/9; }

.work-short-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
  max-width: 560px;
}
.work-item.work-short-item { aspect-ratio: 9/16; }

.work-item.placeholder .work-thumb {
  background: linear-gradient(155deg, var(--accent) 0%, #0B1220 75%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-placeholder-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0.65;
}

@media (max-width: 640px) {
  .work-short-grid { max-width: 100%; }
}

/* ===== PROCESS ===== */
.process {
  border-top: 1px solid var(--line);
  background: var(--bg2);
}
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 90px;
}
.process h2 { font-size: clamp(44px, 7vw, 88px); }
.process-head p {
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.65;
  max-width: 460px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  border: 1px solid var(--line);
  padding: 40px 28px 32px;
  position: relative;
  transition: all 0.4s ease;
  background: var(--bg);
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.step::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.step:hover {
  border-color: var(--line2);
  transform: translateY(-4px);
}
.step:hover::before { transform: scaleX(1); }
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mute);
  margin-bottom: 50px;
  text-transform: uppercase;
  transition: color 0.4s ease;
}
.step:hover .step-num { color: var(--accent); }
.step-title {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  margin-top: auto;
  color: var(--ink);
}
.step-desc {
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.55;
}

/* ===== CONTACT ===== */
.contact {
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.contact h2 { font-size: clamp(44px, 6.5vw, 78px); margin-bottom: 32px; }
.contact-info p {
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 420px;
}
.contact-meta {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-top: 32px;
}
.contact-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 13px;
}
.contact-meta-row span:first-child {
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}
.contact-meta-row span:last-child,
.contact-meta-row a:last-child {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s ease;
}
.contact-meta-row a:last-child:hover {
  color: var(--accent);
}

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

.booking-cta {
  border: 1px solid var(--line);
  background: var(--bg2);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
}
.booking-cta-title {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.booking-cta-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink2);
  max-width: 360px;
  margin-bottom: 28px;
}
.field {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  transition: border-color 0.3s ease;
}
.field:focus-within { border-color: var(--accent); }
.field:focus-within label { color: var(--accent); }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  outline: none;
  resize: none;
  width: 100%;
  padding: 4px 0;
}
.field textarea { min-height: 120px; }
.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1220' stroke-width='1.5'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 18px;
  padding-right: 30px;
}
.field select option { background: var(--bg); color: var(--ink); }
.field input::placeholder,
.field textarea::placeholder { color: var(--mute); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.field-row .field { border-bottom: none; }
.field-row .field:first-child { border-right: 1px solid var(--line); padding-right: 32px; }
.field-row .field:last-child { padding-left: 32px; }

.submit-btn {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 24px 32px;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}
.submit-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mute);
  margin-bottom: 24px;
  font-weight: 400;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 16px;
  color: var(--ink2);
  margin-bottom: 8px;
  transition: color 0.25s ease;
  font-weight: 300;
}
.footer-col a:hover { color: var(--accent-hover); }
.footer-mark {
  font-family: var(--display);
  font-size: clamp(80px, 18vw, 280px);
  letter-spacing: 0.02em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
  margin: 40px 0;
  text-align: center;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute);
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .menu-toggle { display: block; }
  section { padding: 100px 0; }
  .hero { padding: 120px 0 60px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 40px; }
  .hero-actions { justify-self: start; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-mark { width: 140px; height: 140px; font-size: 48px; }
  .about-pillars { grid-template-columns: 1fr; }
  .serve-head { grid-template-columns: 1fr; gap: 32px; }
  .serve-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 50px 1fr auto; gap: 20px; }
  .service-desc { display: none; }
  .work-item.work-long-item { aspect-ratio: 4/3; }
  .work-short-grid { grid-template-columns: 1fr; gap: 16px; }
  .work-item.work-short-item { aspect-ratio: 4/3; }
  .contact-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .contact-meta-row span:last-child,
  .contact-meta-row a:last-child {
    text-align: left;
  }
  .process-head { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step { min-height: auto; padding: 32px 24px; }
  .step-num { margin-bottom: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .field-row { grid-template-columns: 1fr; border-bottom: none; }
  .field-row .field:first-child { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line); }
  .field-row .field:last-child { padding-left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .marquee-item { font-size: 36px; gap: 36px; }
  .marquee-track { gap: 36px; }
}
@media (max-width: 560px) {
  .about-pillars { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .visual-mark { font-size: 140px; }
  .footer-mark { font-size: 96px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
