*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --g: #b8975a;
  --g2: #e8c97a;
  --g3: #6b5230;
  --ink: #050505;
  --ink2: #0d0d0d;
  --ink3: #141414;
  --ink4: #1c1c1c;
  --cream: #f0ebe0;
  --mute: rgba(240, 235, 224, 0.45);
  --dim: rgba(240, 235, 224, 0.18);
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease2: cubic-bezier(0.22, 1, 0.36, 1);
}

@font-face {
  font-family: Arad;
  src: url(Arad-ExtraBlack.woff2);
  font-display: swap;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--ink); color: var(--cream); font-family: "Arad", "Segoe UI", sans-serif; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

#loader { position: fixed; inset: 0; z-index: 99000; background: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transition: opacity 0.8s var(--ease), visibility 0.8s; }
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-family: "Arad", serif; font-size: clamp(3rem, 8vw, 7rem); font-weight: 900; letter-spacing: 0.05em; color: transparent; -webkit-text-stroke: 1px var(--g); position: relative; overflow: hidden; }
.loader-logo::after { content: attr(data-text); position: absolute; inset: 0; color: var(--g); clip-path: inset(100% 0 0 0); transition: clip-path 1.2s var(--ease2); }
.loader-logo.fill::after { clip-path: inset(0% 0 0 0); }
.loader-bar { width: 240px; height: 1px; background: rgba(184,151,90,0.15); position: relative; overflow: hidden; }
.loader-bar::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, var(--g), transparent); transform: translateX(-100%); animation: loadBar 1.4s var(--ease) forwards 0.2s; }
.loader-pct { font-family: "Arad", monospace; font-size: 0.65rem; letter-spacing: 0.3em; color: var(--g); }
@keyframes loadBar { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 24px 56px; display: flex; justify-content: space-between; align-items: center; transition: padding 0.4s var(--ease), background 0.4s; }
nav.scrolled { padding: 16px 56px; background: rgba(5,5,5,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(184,151,90,0.08); }
.nav-logo { font-family: "Arad", serif; font-size: 1.3rem; font-weight: 900; letter-spacing: 0.25em; color: var(--g); text-transform: uppercase; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-dot { width: 6px; height: 6px; background: var(--g2); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.6); } }
.nav-center { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 44px; list-style: none; }
.nav-center a { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); text-decoration: none; transition: color 0.3s; position: relative; padding-bottom: 4px; }
.nav-center a::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--g); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.nav-center a:hover { color: var(--cream); }
.nav-center a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-right a { color: var(--dim); font-size: 1rem; text-decoration: none; transition: color 0.3s, transform 0.3s; }
.nav-right a:hover { color: var(--g2); transform: translateY(-2px); }
.nav-cta { padding: 10px 24px; border: 1px solid rgba(184,151,90,0.4); color: var(--g); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none; transition: all 0.35s var(--ease); font-family: "Arad", sans-serif; }
.nav-cta:hover { background: var(--g); color: var(--ink); border-color: var(--g); }

#hero { height: 100vh; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 120% 80% at 60% 40%, #1a1208 0%, var(--ink) 70%); }
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.28) saturate(0.5); transform: scale(1.06); transition: transform 8s ease; }
.hero-scan { position: absolute; inset: 0; z-index: 2; background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.06) 3px, rgba(0,0,0,0.06) 4px); pointer-events: none; }
.hero-vignette { position: absolute; inset: 0; z-index: 3; background: radial-gradient(ellipse at center, transparent 30%, rgba(5,5,5,0.85) 100%), linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0.5) 25%, transparent 60%); pointer-events: none; }
.hero-glow { position: absolute; bottom: -20%; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; z-index: 2; background: radial-gradient(ellipse, rgba(184,151,90,0.07) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 10; width: 100%; padding: 0 56px 80px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.hero-title { font-family: "Arad", serif; font-size: clamp(4.5rem, 11vw, 10.5rem); font-weight: 900; line-height: 0.88; letter-spacing: -0.03em; opacity: 0; transform: translateY(60px); transition: opacity 1s var(--ease2) 0.3s, transform 1s var(--ease2) 0.3s; }
.hero-title.show { opacity: 1; transform: translateY(0); }
.hero-title .t-outline { -webkit-text-stroke: 1px var(--cream); color: transparent; font-style: italic; }
.hero-title .t-gold { color: var(--g2); font-style: italic; }
.hero-desc { margin-top: 28px; max-width: 500px; font-size: 0.95rem; line-height: 1.9; color: var(--mute); font-weight: 300; letter-spacing: 0.03em; opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease2) 0.6s, transform 0.9s var(--ease2) 0.6s; }
.hero-desc.show { opacity: 1; transform: translateY(0); }
.hero-btns { margin-top: 48px; display: flex; gap: 16px; align-items: center; opacity: 0; transition: opacity 0.8s var(--ease2) 0.9s; }
.hero-btns.show { opacity: 1; }
.btn-primary { position: relative; overflow: hidden; padding: 18px 48px; background: var(--g); color: var(--ink); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; text-decoration: none; transition: color 0.5s; display: flex; align-items: center; gap: 12px; }
.btn-primary::before { content: ""; position: absolute; inset: 0; background: var(--g2); transform: translateX(-100%); transition: transform 0.5s var(--ease); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-ghost { padding: 18px 40px; border: 1px solid rgba(240,235,224,0.2); color: var(--mute); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; text-decoration: none; transition: all 0.4s var(--ease); display: flex; align-items: center; gap: 12px; }
.btn-ghost:hover { border-color: var(--g); color: var(--g); }
.hero-right { display: flex; flex-direction: column; align-items: flex-end; gap: 32px; padding-bottom: 8px; opacity: 0; transition: opacity 0.8s var(--ease2) 1.1s; }
.hero-right.show { opacity: 1; }
.hero-stat { text-align: left; }
.hero-stat-num { font-family: "Arad", serif; font-size: 3.5rem; font-weight: 900; color: var(--g); line-height: 1; letter-spacing: -0.03em; }
.hero-stat-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim); margin-top: 4px; font-family: "Arad", monospace; }
.hero-divider { width: 1px; height: 50px; background: rgba(184,151,90,0.2); }
.hero-scroll { position: absolute; bottom: 36px; left: 56px; z-index: 10; display: flex; align-items: center; gap: 16px; font-family: "Arad", monospace; font-size: 0.55rem; letter-spacing: 0.35em; color: var(--g); text-transform: uppercase; opacity: 0; animation: fadeIn 1s var(--ease2) 1.8s forwards; }
.hero-scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--g), transparent); animation: scrollDrop 2.5s ease infinite; }
@keyframes scrollDrop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero-framecode { position: absolute; top: 100px; right: 56px; z-index: 10; font-family: "Arad", monospace; font-size: 0.55rem; letter-spacing: 0.15em; color: rgba(184,151,90,0.35); opacity: 0; animation: fadeIn 1s var(--ease2) 2s forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.ticker { background: var(--g); padding: 13px 0; overflow: hidden; border-top: 1px solid rgba(184,151,90,0.3); border-bottom: 1px solid rgba(184,151,90,0.3); }
.ticker-track { display: flex; gap: 0; white-space: nowrap; animation: ticker 32s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 28px; padding: 0 28px; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink); font-weight: 600; font-family: "Arad", sans-serif; }
.ticker-item i { font-size: 0.8rem; opacity: 0.5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

#reel { padding: 120px 0 80px; }
.reel-header { padding: 0 56px 60px; display: flex; justify-content: space-between; align-items: flex-end; }
.section-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; font-family: "Arad", monospace; font-size: 0.58rem; letter-spacing: 0.35em; color: var(--g); text-transform: uppercase; }
.section-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--g); }
.section-title { font-family: "Arad", serif; font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 900; line-height: 1; letter-spacing: -0.02em; }
.section-title i { font-style: italic; color: var(--g); }
.see-all { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--g); text-decoration: none; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(184,151,90,0.3); padding-bottom: 4px; transition: gap 0.3s, border-color 0.3s; }
.see-all:hover { gap: 16px; border-color: var(--g); }
.reel-track { display: flex; gap: 20px; padding: 0 56px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; }
.reel-track::-webkit-scrollbar { display: none; }
.reel-track.grabbing { cursor: grabbing; }
.reel-card { flex: 0 0 auto; scroll-snap-align: start; position: relative; overflow: hidden; background: var(--ink3); transition: transform 0.6s var(--ease); }
.reel-card:nth-child(1) { width: 520px; } .reel-card:nth-child(2) { width: 380px; } .reel-card:nth-child(3) { width: 460px; } .reel-card:nth-child(4) { width: 340px; } .reel-card:nth-child(5) { width: 500px; }
.reel-card-inner { aspect-ratio: 2/3; position: relative; overflow: hidden; }
.reel-card-inner video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5) brightness(0.6); transform: scale(1.08); transition: transform 0.9s var(--ease), filter 0.6s; }
.reel-card:hover .reel-card-inner video { transform: scale(1); filter: grayscale(0) brightness(0.75); }
.reel-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.2) 50%, transparent 100%); }
.reel-card-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 28px 24px; }
.reel-cat { font-family: "Arad", monospace; font-size: 0.55rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--g); margin-bottom: 10px; }
.reel-name { font-family: "Arad", serif; font-size: 1.6rem; font-weight: 700; line-height: 1.15; }
.reel-meta { margin-top: 10px; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--dim); display: flex; align-items: center; gap: 10px; }
.reel-meta i { color: var(--g); font-size: 0.65rem; }
.reel-play { position: absolute; top: 50%; left: 50%; z-index: 3; transform: translate(-50%, -50%) scale(0.7); width: 72px; height: 72px; border-radius: 50%; border: 1px solid rgba(240,235,224,0.4); display: flex; align-items: center; justify-content: center; background: rgba(184,151,90,0.12); backdrop-filter: blur(6px); opacity: 0; transition: all 0.4s var(--ease); }
.reel-play i { color: var(--cream); font-size: 1.3rem; margin-right: -3px; }
.reel-card:hover .reel-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.reel-year { position: absolute; top: 20px; right: 20px; z-index: 3; font-family: "Arad", monospace; font-size: 0.55rem; letter-spacing: 0.2em; background: rgba(5,5,5,0.6); border: 1px solid rgba(184,151,90,0.2); padding: 6px 12px; color: var(--g); backdrop-filter: blur(4px); }
.reel-drag { padding: 24px 56px 0; display: flex; align-items: center; gap: 12px; font-family: "Arad", monospace; font-size: 0.55rem; letter-spacing: 0.25em; color: var(--dim); text-transform: uppercase; }
.reel-drag i { color: var(--g); }

#about { padding: 160px 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.about-left { padding: 0 80px 0 56px; display: flex; flex-direction: column; justify-content: center; }
.about-right { position: relative; overflow: hidden; background: var(--ink2); }
.about-right::before { content: "MT"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: "Arad", serif; font-size: 22rem; font-weight: 900; font-style: italic; color: rgba(184,151,90,0.04); white-space: nowrap; pointer-events: none; line-height: 1; letter-spacing: -0.05em; }
.about-img-grid { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; padding: 40px; }
.about-img-cell { background: var(--ink4); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-img-cell i { font-size: 2.5rem; color: rgba(184,151,90,0.12); }
.about-img-cell:nth-child(1) { grid-column: 1/3; }
.about-img-cell:nth-child(1) i { font-size: 4rem; }
.about-img-cell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent, rgba(184,151,90,0.04)); }
.about-corner-mark { position: absolute; width: 24px; height: 24px; border-color: rgba(184,151,90,0.35); border-style: solid; }
.about-corner-mark.tl { top: 20px; left: 20px; border-width: 1px 0 0 1px; }
.about-corner-mark.br { bottom: 20px; right: 20px; border-width: 0 1px 1px 0; }
.about-title { font-family: "Arad", serif; font-size: clamp(2.5rem, 4.5vw, 4.2rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 32px; }
.about-body { font-size: 0.9rem; line-height: 2; color: var(--mute); font-weight: 300; margin-bottom: 20px; }
.about-signature { margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(184,151,90,0.15); display: flex; gap: 48px; }
.sig-item-num { font-family: "Arad", serif; font-size: 3.2rem; font-weight: 900; color: var(--g); line-height: 1; }
.sig-item-sub { font-family: "Arad", monospace; font-size: 0.55rem; letter-spacing: 0.2em; color: var(--dim); text-transform: uppercase; margin-top: 6px; }
.about-award { margin-top: 40px; display: flex; align-items: center; gap: 16px; padding: 20px 24px; border: 1px solid rgba(184,151,90,0.15); background: rgba(184,151,90,0.03); }
.award-icon { width: 48px; height: 48px; border: 1px solid rgba(184,151,90,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.award-icon i { color: var(--g); font-size: 1.2rem; }
.award-text-top { font-size: 0.6rem; letter-spacing: 0.25em; color: var(--g); text-transform: uppercase; font-family: "Arad", monospace; margin-bottom: 4px; }
.award-text-main { font-size: 0.85rem; font-weight: 500; color: var(--cream); }

#services { padding: 160px 56px; background: var(--ink2); }
.services-inner { max-width: 1400px; margin: 0 auto; }
.services-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.services-intro-text { font-size: 0.9rem; line-height: 1.9; color: var(--mute); font-weight: 300; }
.service-list { display: flex; flex-direction: column; gap: 2px; }
.service-row { display: grid; grid-template-columns: 60px 1fr 80px auto; align-items: center; gap: 24px; padding: 28px 32px; background: var(--ink3); border: 1px solid transparent; transition: background 0.35s, border-color 0.35s, padding 0.35s var(--ease); position: relative; overflow: hidden; }
.service-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--g); transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s var(--ease); }
.service-row:hover { background: var(--ink4); border-color: rgba(184,151,90,0.1); padding-right: 24px; padding-left: 40px; }
.service-row:hover::before { transform: scaleY(1); }
.srv-num { font-family: "Arad", monospace; font-size: 0.65rem; letter-spacing: 0.15em; color: rgba(184,151,90,0.35); }
.srv-name { font-family: "Arad", serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.srv-sub { font-size: 0.75rem; color: var(--dim); letter-spacing: 0.08em; }
.srv-icon { width: 48px; height: 48px; border: 1px solid rgba(184,151,90,0.12); display: flex; align-items: center; justify-content: center; transition: background 0.3s, border-color 0.3s; }
.srv-icon i { color: rgba(184,151,90,0.5); font-size: 1rem; transition: color 0.3s; }
.service-row:hover .srv-icon { background: rgba(184,151,90,0.08); border-color: rgba(184,151,90,0.35); }
.service-row:hover .srv-icon i { color: var(--g); }
.srv-arrow { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--dim); transition: color 0.3s, transform 0.3s; font-size: 0.85rem; }
.service-row:hover .srv-arrow { color: var(--g); transform: translate(-4px, -4px); }

#process { padding: 160px 56px; position: relative; overflow: hidden; }
#process::before { content: "04"; position: absolute; top: 60px; right: -20px; font-family: "Arad", serif; font-size: 28rem; font-weight: 900; font-style: italic; color: rgba(184,151,90,0.025); line-height: 1; pointer-events: none; }
.process-inner { max-width: 1400px; margin: 0 auto; }
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 100px; }
.process-subtext { font-size: 0.9rem; line-height: 1.9; color: var(--mute); font-weight: 300; }
.process-steps { display: flex; gap: 0; position: relative; }
.process-steps::before { content: ""; position: absolute; top: 30px; left: 30px; right: 30px; height: 1px; background: rgba(184,151,90,0.12); }
.process-step { flex: 1; padding: 0 32px 0 0; position: relative; }
.step-num-wrap { width: 60px; height: 60px; border: 1px solid rgba(184,151,90,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 32px; background: var(--ink); position: relative; z-index: 1; transition: background 0.3s, border-color 0.3s; }
.process-step:hover .step-num-wrap { background: var(--g); border-color: var(--g); }
.step-num-wrap i { color: var(--g); font-size: 1rem; transition: color 0.3s; }
.process-step:hover .step-num-wrap i { color: var(--ink); }
.step-order { position: absolute; top: -8px; right: -8px; width: 20px; height: 20px; background: var(--ink2); border: 1px solid rgba(184,151,90,0.25); display: flex; align-items: center; justify-content: center; font-family: "Arad", monospace; font-size: 0.5rem; color: var(--g); }
.step-title2 { font-family: "Arad", serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 14px; }
.step-body { font-size: 0.8rem; line-height: 1.85; color: var(--mute); font-weight: 300; }

#testimonials { padding: 160px 56px; background: var(--ink2); }
.testi-inner { max-width: 1400px; margin: 0 auto; }
.testi-header { margin-bottom: 72px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.testi-card { background: var(--ink3); padding: 48px 36px; position: relative; overflow: hidden; transition: background 0.35s; }
.testi-card:hover { background: var(--ink4); }
.testi-card::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--g), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.testi-card:hover::after { transform: scaleX(1); }
.testi-stars { color: var(--g); font-size: 0.7rem; letter-spacing: 4px; margin-bottom: 20px; }
.testi-q { font-family: "Arad", serif; font-size: 4rem; font-weight: 900; color: rgba(184,151,90,0.1); line-height: 0.8; margin-bottom: 16px; }
.testi-text { font-size: 0.85rem; line-height: 1.9; color: var(--mute); font-weight: 300; margin-bottom: 32px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-ava { width: 44px; height: 44px; background: rgba(184,151,90,0.08); border: 1px solid rgba(184,151,90,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-ava i { color: var(--g); font-size: 1rem; }
.testi-name2 { font-size: 0.85rem; font-weight: 600; color: var(--cream); }
.testi-role2 { font-size: 0.6rem; letter-spacing: 0.15em; color: var(--g); opacity: 0.75; margin-top: 3px; font-family: "Arad", monospace; }

#clients { padding: 80px 56px; border-top: 1px solid rgba(184,151,90,0.07); border-bottom: 1px solid rgba(184,151,90,0.07); }
.clients-inner { max-width: 1400px; margin: 0 auto; }
.clients-label { text-align: center; font-family: "Arad", monospace; font-size: 0.55rem; letter-spacing: 0.4em; color: var(--dim); text-transform: uppercase; margin-bottom: 44px; }
.clients-logos { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; }
.client-item { display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.18; transition: opacity 0.4s; }
.client-item:hover { opacity: 0.6; }
.client-item i { font-size: 2.2rem; color: var(--cream); }
.client-item span { font-family: "Arad", monospace; font-size: 0.5rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream); }

#contact { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.contact-left { background: var(--g); padding: 100px 80px 100px 56px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.contact-left::before { content: "MT"; position: absolute; bottom: -60px; left: -40px; font-family: "Arad", serif; font-size: 28rem; font-weight: 900; font-style: italic; color: rgba(5,5,5,0.08); line-height: 1; pointer-events: none; }
.contact-left-eyebrow { font-family: "Arad", monospace; font-size: 0.6rem; letter-spacing: 0.35em; color: rgba(5,5,5,0.55); text-transform: uppercase; margin-bottom: 32px; display: flex; align-items: center; gap: 12px; }
.contact-left-eyebrow::before { content: ""; width: 28px; height: 1px; background: rgba(5,5,5,0.4); }
.contact-big-title { font-family: "Arad", serif; font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 900; line-height: 0.95; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 40px; }
.contact-tagline { font-size: 0.9rem; line-height: 1.8; color: rgba(5,5,5,0.65); font-weight: 300; margin-bottom: 56px; max-width: 380px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-row { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: rgba(5,5,5,0.06); border-left: 2px solid rgba(5,5,5,0.15); transition: background 0.3s, border-color 0.3s; }
.contact-info-row:hover { background: rgba(5,5,5,0.1); border-color: rgba(5,5,5,0.4); }
.contact-info-row i { color: rgba(5,5,5,0.5); font-size: 0.95rem; width: 18px; }
.contact-info-txt { font-size: 0.82rem; color: rgba(5,5,5,0.8); font-weight: 500; }
.contact-social-row { margin-top: 40px; display: flex; gap: 14px; }
.c-soc { width: 44px; height: 44px; border: 1px solid rgba(5,5,5,0.25); display: flex; align-items: center; justify-content: center; color: rgba(5,5,5,0.5); font-size: 1rem; text-decoration: none; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.c-soc:hover { background: rgba(5,5,5,0.1); color: var(--ink); border-color: rgba(5,5,5,0.5); }

.contact-right { background: var(--ink2); padding: 100px 56px; display: flex; flex-direction: column; justify-content: center; }
.contact-right-label { font-family: "Arad", monospace; font-size: 0.6rem; letter-spacing: 0.35em; color: var(--g); text-transform: uppercase; margin-bottom: 48px; display: flex; align-items: center; gap: 12px; }
.contact-right-label::before { content: ""; width: 28px; height: 1px; background: var(--g); }
.alt-contact-card { background: var(--ink3); border: 1px solid rgba(184,151,90,0.15); padding: 32px; margin-bottom: 40px; border-radius: 4px; }
.alt-contact-item { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.alt-contact-item:last-child { margin-bottom: 0; }
.alt-contact-item i { font-size: 1.5rem; color: var(--g); width: 40px; text-align: center; }
.alt-contact-item div { display: flex; flex-direction: column; gap: 6px; }
.alt-contact-item strong { font-size: 0.85rem; color: var(--cream); letter-spacing: 0.05em; }
.alt-contact-item span { font-size: 0.8rem; color: var(--dim); }

.map-placeholder { background: rgba(184,151,90,0.05); border: 1px dashed rgba(184,151,90,0.3); padding: 24px; text-align: center; margin-bottom: 40px; border-radius: 8px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.map-placeholder i { font-size: 2rem; color: var(--g); }
.map-placeholder span { font-size: 0.75rem; color: var(--dim); letter-spacing: 0.1em; }
.map-mock { width: 100%; height: 100px; background: repeating-linear-gradient(45deg, rgba(184,151,90,0.1) 0px, rgba(184,151,90,0.1) 10px, transparent 10px, transparent 20px); border-radius: 4px; margin-top: 8px; }

.direct-contact { display: flex; gap: 20px; justify-content: space-between; }
.call-btn, .mail-btn { flex: 1; background: transparent; border: 1px solid rgba(184,151,90,0.3); padding: 14px 0; text-align: center; text-decoration: none; color: var(--g); font-size: 0.75rem; letter-spacing: 0.2em; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.call-btn:hover, .mail-btn:hover { background: var(--g); color: var(--ink); border-color: var(--g); }

footer { background: var(--ink); padding: 60px 56px 40px; border-top: 1px solid rgba(184,151,90,0.08); }
.footer-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(184,151,90,0.07); margin-bottom: 32px; }
.footer-logo { font-family: "Arad", serif; font-size: 1.6rem; font-weight: 900; letter-spacing: 0.2em; color: var(--g); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-tagline { font-size: 0.75rem; color: var(--dim); line-height: 1.7; max-width: 260px; }
.footer-nav-label { font-family: "Arad", monospace; font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--g); margin-bottom: 20px; }
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-links a { font-size: 0.8rem; color: var(--dim); text-decoration: none; transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-nav-links a:hover { color: var(--cream); }
.footer-nav-links a i { font-size: 0.7rem; color: rgba(184,151,90,0.35); }
.footer-social-col { display: flex; flex-direction: column; align-items: flex-end; }
.footer-soc-label { font-family: "Arad", monospace; font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--g); margin-bottom: 20px; }
.footer-soc-icons { display: flex; gap: 12px; }
.f-soc { width: 42px; height: 42px; border: 1px solid rgba(184,151,90,0.15); display: flex; align-items: center; justify-content: center; color: var(--dim); font-size: 0.95rem; text-decoration: none; transition: all 0.3s; }
.f-soc:hover { border-color: var(--g); color: var(--g); background: rgba(184,151,90,0.06); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-family: "Arad", monospace; font-size: 0.55rem; letter-spacing: 0.2em; color: rgba(240,235,224,0.2); }
.footer-bottom a { color: rgba(184,151,90,0.4); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--g); }

#modal { position: fixed; inset: 0; z-index: 9000; background: rgba(5,5,5,0.97); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.45s var(--ease); }
#modal.open { opacity: 1; pointer-events: all; }
.modal-wrap { width: 90vw; max-width: 1100px; aspect-ratio: 16/9; position: relative; transform: scale(0.88); transition: transform 0.45s var(--ease2); }
#modal.open .modal-wrap { transform: scale(1); }
#modal-video { width: 100%; height: 100%; object-fit: cover; background: var(--ink3); }
.modal-close { position: absolute; top: -52px; right: 0; background: none; border: none; display: flex; align-items: center; gap: 10px; font-family: "Arad", monospace; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(240,235,224,0.4); transition: color 0.3s; cursor: pointer; }
.modal-close:hover { color: var(--g); }
.modal-close i { font-size: 0.85rem; }
.modal-title { position: absolute; bottom: -44px; left: 0; font-family: "Arad", monospace; font-size: 0.55rem; letter-spacing: 0.25em; color: var(--g); text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(48px); transition: opacity 0.9s var(--ease2), transform 0.9s var(--ease2); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-48px); transition: opacity 0.9s var(--ease2), transform 0.9s var(--ease2); }
.reveal-l.in { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.22s; } .d3 { transition-delay: 0.34s; } .d4 { transition-delay: 0.46s; }

@media (max-width: 1024px) {
  #about, #contact { grid-template-columns: 1fr; }
  .about-right { display: none; }
  .services-top, .process-header { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-social-col { display: none; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-steps::before { display: none; }
  .contact-right { padding: 80px 32px; }
}
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-center, .nav-right .nav-cta { display: none; }
  .hero-content { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .hero-right { flex-direction: row; align-items: center; justify-content: flex-start; gap: 32px; }
  .reel-header, .reel-track, .reel-drag { padding-left: 24px; padding-right: 24px; }
  #services, #process, #testimonials, #clients, #contact .contact-left, #contact .contact-right { padding: 80px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .direct-contact { flex-direction: column; gap: 12px; }
}
.heartbeat {
  animation: heartbeat 1.2s ease-in-out infinite;
  display: inline-block;
  color: var(--g);
  margin: 0 2px;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.2); }
  35% { transform: scale(1.1); }
  45% { transform: scale(1.2); }
  55% { transform: scale(1); }
  100% { transform: scale(1); }
}

.developer-credit {
  font-family: "Arad", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: rgba(184, 151, 90, 0.6);
  margin-right: 6px;
}

.heartbeat-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}