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

:root {
  --bg: #1a1816;
  --bg-warm: #211f1c;
  --bg-card: #2a2725;
  --text: #f0ece4;
  --text-dim: #9a9590;
  --text-mid: #c8c2b8;
  --accent-lime: #c8ff2e;
  --accent-coral: #ff6b5a;
  --accent-blue: #5aafff;
  --accent-lavender: #c4a0ff;
  --accent-peach: #ffb088;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Instrument Sans', -apple-system, sans-serif;
  --mono: 'Space Mono', monospace;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a, button, input, textarea, select { cursor: none; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent-lime); color: var(--bg); }

/* ===== CROSSHAIR CURSOR ===== */
.crosshair {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.crosshair-h, .crosshair-v { position: absolute; background: var(--accent-lime); border-radius: 1px; }
.crosshair-h { width: 22px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.crosshair-v { width: 1.5px; height: 22px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.crosshair-dot {
  position: absolute; width: 3px; height: 3px;
  background: var(--accent-lime); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
@media (pointer: coarse) {
  body, a, button, input, textarea, select { cursor: auto; }
  .crosshair { display: none; }
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  mix-blend-mode: difference;
  transition: padding 0.4s ease, background 0.4s ease;
}
.nav.scrolled {
  mix-blend-mode: normal;
  background: rgba(26, 24, 22, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; transition: height 0.4s ease; }
.nav.scrolled .nav-logo img { height: 32px; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.03em; }
.nav-links a { position: relative; transition: color 0.3s; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent-lime); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Mobile menu button */
.nav-menu-btn {
  display: none;
  background: none; border: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  padding: 0;
}
.nav-menu-btn span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text); transition: all 0.3s ease;
}
.nav-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 24, 22, 0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem;
  color: var(--text); transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent-lime); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 3rem 4rem; position: relative; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; animation: float 12s ease-in-out infinite; }
.hero-shape--1 { width: 500px; height: 500px; background: var(--accent-coral); top: -10%; right: -5%; animation-delay: -2s; }
.hero-shape--2 { width: 400px; height: 400px; background: var(--accent-blue); bottom: 10%; left: -8%; animation-delay: -6s; }
.hero-shape--3 { width: 300px; height: 300px; background: var(--accent-lime); top: 40%; right: 30%; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-content { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; width: 100%; }
.hero-tag {
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-lime); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--accent-lime); }
.hero-title { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 2rem; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner { display: block; transform: translateY(110%); animation: revealLine 1s cubic-bezier(0.23, 1, 0.32, 1) forwards; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.15s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.3s; }
@keyframes revealLine { to { transform: translateY(0); } }
.hero-title-large { font-size: clamp(2.8rem, 8vw, 8rem); }
.hero-title .accent-word { color: var(--accent-coral); font-style: italic; }
.hero-title .outline-word { -webkit-text-stroke: 1.5px var(--text); color: transparent; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.35rem); color: var(--text-mid);
  max-width: 560px; line-height: 1.65; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-cta-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards; }

.hero-location {
  position: absolute;
  bottom: 3rem; right: 3rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--accent-lime); color: var(--bg);
  padding: 1rem 2.25rem; border-radius: 60px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s ease; border: none; cursor: none; font-family: var(--sans);
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 0 40px rgba(200, 255, 46, 0.25); }
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost { font-size: 0.9rem; font-weight: 500; color: var(--text-dim); border-bottom: 1px solid transparent; transition: all 0.3s; -webkit-tap-highlight-color: transparent; }
.btn-ghost:hover { color: var(--text); border-bottom-color: var(--text); }

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.marquee-track { display: flex; gap: 3rem; animation: marquee 25s linear infinite; width: max-content; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim); white-space: nowrap;
  display: flex; align-items: center; gap: 3rem;
}
.marquee-item::after { content: '✦'; color: var(--accent-coral); }

/* ===== PITCH ===== */
.pitch { padding: 8rem 3rem; max-width: 1400px; margin: 0 auto; }
.pitch-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pitch-visual { position: relative; }

.visual-block {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 3rem;
}
.visual-block::before {
  content: '';
  position: absolute; inset: -2px; border-radius: 26px;
  background: conic-gradient(from 0deg, var(--accent-coral), var(--accent-peach), var(--accent-lime), var(--accent-blue), var(--accent-lavender), var(--accent-coral));
  z-index: -1; animation: borderSpin 8s linear infinite; opacity: 0.4;
}
@keyframes borderSpin { to { transform: rotate(360deg); } }
.visual-block::after {
  content: ''; position: absolute; inset: 1px; border-radius: 23px; background: var(--bg-card); z-index: -1;
}
.visual-rotating-word {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-style: italic; text-align: center; line-height: 1.2;
  position: relative; height: 1.3em; overflow: hidden; width: 100%;
}
.visual-word-track {
  position: absolute; top: 0; left: 0; right: 0;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.visual-word { height: 1.3em; display: flex; align-items: center; justify-content: center; }
.visual-word:nth-child(5n+1) { color: var(--accent-coral); }
.visual-word:nth-child(5n+2) { color: var(--accent-lime); }
.visual-word:nth-child(5n+3) { color: var(--accent-blue); }
.visual-word:nth-child(5n+4) { color: var(--accent-peach); }
.visual-word:nth-child(5n+5) { color: var(--accent-lavender); }

.visual-label-top {
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 1.5rem;
}
.visual-label-bottom {
  font-family: var(--sans); font-size: 1rem; color: var(--text-mid);
  margin-top: 1.5rem; text-align: center; line-height: 1.6;
}
.visual-label-bottom strong { color: var(--text); font-weight: 600; }
.visual-decorative-lines {
  position: absolute; top: 2rem; right: 2rem;
  display: flex; flex-direction: column; gap: 5px; opacity: 0.15;
}
.visual-decorative-lines span { display: block; height: 1px; background: var(--text); }
.visual-decorative-lines span:nth-child(1) { width: 40px; }
.visual-decorative-lines span:nth-child(2) { width: 28px; }
.visual-decorative-lines span:nth-child(3) { width: 16px; }
.visual-corner-mark {
  position: absolute; bottom: 2rem; left: 2rem;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim); opacity: 0.5;
}

.pitch-accent-blob {
  position: absolute; width: 200px; height: 200px;
  background: var(--accent-coral); border-radius: 50%; filter: blur(60px);
  opacity: 0.2; top: -40px; right: -40px; z-index: -1; animation: float 10s ease-in-out infinite;
}
.pitch-text .section-tag {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-coral); margin-bottom: 1.5rem; display: block;
}
.pitch-heading {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.pitch-heading em { font-style: italic; color: var(--accent-coral); }
.pitch-body { font-size: 1.05rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1.5rem; }
.pitch-body strong { color: var(--text); font-weight: 600; }
.pitch-stats {
  display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num { font-family: var(--serif); font-size: 2.2rem; color: var(--accent-lime); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.5rem; line-height: 1.4; }

/* ===== SERVICES ===== */
.services { padding: 6rem 3rem 8rem; max-width: 1400px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-tag {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-blue); margin-bottom: 1.5rem; display: block;
}
.services-heading { font-family: var(--serif); font-size: clamp(2rem, 5vw, 4rem); line-height: 1.1; max-width: 700px; margin: 0 auto; }
.services-heading em { font-style: italic; color: var(--accent-blue); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px; padding: 2.5rem 2rem; position: relative; overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-tap-highlight-color: transparent;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.12); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 24px 24px 0 0; transition: height 0.4s ease;
}
.service-card:nth-child(1)::before { background: var(--accent-coral); }
.service-card:nth-child(2)::before { background: var(--accent-lime); }
.service-card:nth-child(3)::before { background: var(--accent-blue); }
.service-card:hover::before { height: 5px; }
.service-num { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--text-dim); margin-bottom: 1.5rem; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.4rem;
}
.service-card:nth-child(1) .service-icon { background: rgba(255, 107, 90, 0.12); }
.service-card:nth-child(2) .service-icon { background: rgba(200, 255, 46, 0.12); }
.service-card:nth-child(3) .service-icon { background: rgba(90, 175, 255, 0.12); }
.service-title { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 0.85rem; line-height: 1.2; }
.service-desc { font-size: 0.92rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 1.5rem; }
.service-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-list li {
  font-size: 0.72rem; font-family: var(--mono); letter-spacing: 0.05em;
  padding: 0.4rem 0.8rem; border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.08); color: var(--text-dim); transition: all 0.3s;
}
.service-card:nth-child(1):hover .service-list li { border-color: rgba(255, 107, 90, 0.25); color: var(--accent-coral); }
.service-card:nth-child(2):hover .service-list li { border-color: rgba(200, 255, 46, 0.25); color: var(--accent-lime); }
.service-card:nth-child(3):hover .service-list li { border-color: rgba(90, 175, 255, 0.25); color: var(--accent-blue); }

/* ===== PACKAGE ===== */
.package { padding: 6rem 3rem; position: relative; }
.package-inner {
  max-width: 1400px; margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-card) 0%, #2e2923 100%);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 32px;
  padding: 4rem; position: relative; overflow: hidden;
}
.package-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.08; }
.package-glow--1 { background: var(--accent-lime); top: -200px; right: -100px; }
.package-glow--2 { background: var(--accent-coral); bottom: -200px; left: -100px; }
.package-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.package-tag {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-peach); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.package-tag::before { content: '★'; font-size: 0.8rem; }
.package-heading { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.15; margin-bottom: 1.25rem; }
.package-heading em { font-style: italic; color: var(--accent-peach); }
.package-body { font-size: 1.05rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 2rem; }
.package-includes { display: flex; flex-direction: column; gap: 1.25rem; }
.package-item {
  display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.25rem;
  background: rgba(255,255,255,0.03); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.04); transition: all 0.3s ease;
}
.package-item:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); }
.package-item-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.package-item:nth-child(1) .package-item-icon { background: rgba(255, 107, 90, 0.12); }
.package-item:nth-child(2) .package-item-icon { background: rgba(200, 255, 46, 0.12); }
.package-item:nth-child(3) .package-item-icon { background: rgba(90, 175, 255, 0.12); }
.package-item:nth-child(4) .package-item-icon { background: rgba(196, 160, 255, 0.12); }
.package-item-title { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.25rem; }
.package-item-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }

/* ===== ABOUT ===== */
.about { padding: 8rem 3rem; max-width: 1400px; margin: 0 auto; }
.about-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 24px;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden; position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-photo-accent {
  position: absolute; width: 250px; height: 250px; border-radius: 50%;
  border: 2px solid var(--accent-lavender); opacity: 0.2;
  bottom: -40px; right: -40px; animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.about-tag {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-lavender); margin-bottom: 1.5rem; display: block;
}
.about-heading { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.15; margin-bottom: 1.5rem; }
.about-heading em { font-style: italic; color: var(--accent-lavender); }
.about-body { font-size: 1rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1.25rem; }
.about-body strong { color: var(--text); font-weight: 600; }
.about-sig { margin-top: 2rem; font-family: var(--serif); font-size: 1.35rem; font-style: italic; color: var(--accent-lavender); }

/* ===== PROCESS ===== */
.process { padding: 6rem 3rem 8rem; max-width: 1400px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-tag {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-lime); margin-bottom: 1.5rem; display: block;
}
.process-heading { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.5rem); line-height: 1.15; }
.process-heading em { font-style: italic; color: var(--accent-lime); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 48px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}
.process-step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 0.8rem; font-weight: 700;
  margin: 0 auto 1.25rem; position: relative; background: var(--bg); z-index: 1;
  transition: all 0.4s ease;
}
.process-step:hover .step-num { border-color: var(--accent-lime); color: var(--accent-lime); box-shadow: 0 0 20px rgba(200, 255, 46, 0.15); }
.step-title { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.6rem; }
.step-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }

/* ===== CTA + FORM ===== */
.cta { padding: 4rem 3rem 8rem; text-align: center; }
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-heading { font-family: var(--serif); font-size: clamp(2.2rem, 5.5vw, 4.5rem); line-height: 1.1; margin-bottom: 1.25rem; }
.cta-heading em { font-style: italic; color: var(--accent-coral); }
.cta-body {
  font-size: 1.1rem; line-height: 1.7; color: var(--text-mid);
  margin-bottom: 3rem; max-width: 550px; margin-left: auto; margin-right: auto;
}
.contact-form { max-width: 560px; margin: 0 auto; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.form-input, .form-textarea {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  padding: 0.9rem 1.15rem; font-size: 16px; font-family: var(--sans);
  color: var(--text); transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none; width: 100%; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); opacity: 0.6; }
.form-input:focus, .form-textarea:focus { border-color: var(--accent-lime); box-shadow: 0 0 0 3px rgba(200, 255, 46, 0.08); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.5rem; width: 100%; display: flex; justify-content: center; }
.form-submit .btn-primary { width: 100%; justify-content: center; padding: 1.1rem 2rem; font-size: 1rem; }

/* ===== FOOTER ===== */
.footer { padding: 3rem 3rem; border-top: 1px solid rgba(255,255,255,0.06); max-width: 1400px; margin: 0 auto; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 30px; width: auto; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.85rem; color: var(--text-dim); transition: color 0.3s; -webkit-tap-highlight-color: transparent; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); font-family: var(--mono); letter-spacing: 0.05em; }

/* ===== REVEALS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .pitch-layout, .package-content, .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .visual-block { aspect-ratio: 3/2; max-width: 520px; margin: 0 auto; }
  .about-photo { max-width: 400px; }
  .package-inner { padding: 3.5rem; }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.25rem; }
  .nav.scrolled { padding: 0.75rem 1.25rem; }
  .nav-logo img { height: 40px; }
  .nav.scrolled .nav-logo img { height: 26px; }
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }

  .hero { padding: 6.5rem 1.25rem 3rem; }
  .hero-title { margin-bottom: 1.5rem; }
  .hero-sub { margin-bottom: 2rem; font-size: 1rem; }
  .hero-cta-row { gap: 1.25rem; }
  .hero-location { bottom: 1.5rem; right: 1.25rem; font-size: 0.6rem; }
  .hero-shape--1 { width: 300px; height: 300px; }
  .hero-shape--2 { width: 250px; height: 250px; }
  .hero-shape--3 { width: 200px; height: 200px; }

  .marquee-item { font-size: 0.65rem; gap: 2rem; }
  .marquee-track { gap: 2rem; }

  .pitch { padding: 5rem 1.25rem; }
  .pitch-layout { gap: 2.5rem; }
  .pitch-heading { margin-bottom: 1.25rem; }
  .pitch-body { font-size: 0.98rem; margin-bottom: 1.25rem; }
  .pitch-stats { flex-direction: row; gap: 2rem; }
  .stat-num { font-size: 1.8rem; }

  .visual-block { aspect-ratio: 5/4; padding: 2rem 1.5rem; }
  .visual-label-bottom { font-size: 0.88rem; }
  .visual-corner-mark { bottom: 1.25rem; left: 1.25rem; font-size: 0.55rem; }
  .visual-decorative-lines { top: 1.25rem; right: 1.25rem; }

  .services { padding: 4rem 1.25rem 5rem; }
  .services-header { margin-bottom: 2.5rem; }
  .services-grid { max-width: 100%; }
  .service-card { padding: 2rem 1.5rem; border-radius: 20px; }
  .service-card:hover { transform: none; }
  .service-title { font-size: 1.35rem; }
  .service-desc { font-size: 0.9rem; }

  .package { padding: 4rem 1.25rem; }
  .package-inner { padding: 2.5rem 1.5rem; border-radius: 24px; }
  .package-content { gap: 2.5rem; }
  .package-heading { font-size: 1.8rem; }
  .package-body { font-size: 0.98rem; }
  .package-item { padding: 1rem; gap: 1rem; }
  .package-item-icon { width: 38px; height: 38px; border-radius: 10px; font-size: 0.9rem; }
  .package-item-title { font-size: 0.88rem; }
  .package-item-desc { font-size: 0.8rem; }

  .about { padding: 5rem 1.25rem; }
  .about-layout { gap: 2.5rem; }
  .about-photo { max-width: 100%; aspect-ratio: 1/1; border-radius: 20px; }
  .about-body { font-size: 0.95rem; }
  .about-sig { font-size: 1.2rem; }

  .process { padding: 4rem 1.25rem 5rem; }
  .process-header { margin-bottom: 2.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process-step { padding: 1.25rem 0.75rem; }
  .step-num { width: 42px; height: 42px; font-size: 0.75rem; margin-bottom: 1rem; }
  .step-title { font-size: 1rem; }
  .step-desc { font-size: 0.8rem; }

  .cta { padding: 3rem 1.25rem 6rem; }
  .cta-body { font-size: 1rem; margin-bottom: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 2.5rem 1.25rem; }
  .footer-inner { flex-direction: column; gap: 1.25rem; text-align: center; }
  .footer-logo img { height: 26px; }
  .footer-links { gap: 1.5rem; }
  .footer-links a { font-size: 0.8rem; }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 380px) {
  .hero { padding: 6rem 1rem 2.5rem; }
  .hero-title-large { font-size: 2.4rem; }
  .hero-title .outline-word { -webkit-text-stroke: 1px var(--text); }
  .btn-primary { padding: 0.9rem 1.75rem; font-size: 0.9rem; }
  .pitch, .services, .about, .process, .cta, .package { padding-left: 1rem; padding-right: 1rem; }
  .package-inner { padding: 2rem 1.25rem; }
  .visual-block { padding: 1.5rem 1rem; }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-title .line-inner { transform: translateY(0); }
  .hero-sub, .hero-cta-row, .hero-location { opacity: 1; }
  .reveal { opacity: 1; transform: translateY(0); }
}
