/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/
/* Add your custom styles here */

/* ============================================================
   ERIK LEE PHOTOGRAPHY — ATLAS HOMEPAGE
   ------------------------------------------------------------
   All rules are scoped under #elp-site, so they only affect the
   homepage section and never bleed into other pages of the site.
   The matching HTML goes in an Elementor HTML widget whose
   content is wrapped in <div id="elp-site"> ... </div>.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Archivo:wght@400;500;600;700&family=Archivo+Expanded:wght@600;700&display=swap');

:root {
  --sand: #ece5d8;
  --sand2: #e3dac9;
  --navy: #141d27;
  --navy2: #1d2833;
  --ink: #10171f;
  --brass: #b08a4f;
  --brass-hi: #d4ac6a;
  --fg: #f4f0e8;
  --mut: #5a5950;
  --mut-d: #98a1a9;
  --line: #d2c8b6;
  --line-dk: rgba(202,164,103,.22);
  --serif: 'Fraunces',Georgia,serif;
  --label: 'Archivo',system-ui,sans-serif;
  --exp: 'Archivo Expanded','Archivo',sans-serif;
  --ease: cubic-bezier(.19,1,.22,1);
}

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

#elp-site {
  scroll-behavior: smooth;
}

#elp-site {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#elp-site a {
  color: inherit;
  text-decoration: none;
}

#elp-site ::selection {
  background: var(--brass);
  color: var(--sand);
}

#elp-site .skip-link {
  position: absolute;
  left: -999px;
  background: var(--navy);
  color: var(--sand);
  padding: 10px 18px;
  z-index: 400;
}

#elp-site .skip-link:focus {
  left: 8px;
  top: 8px;
}

#elp-site :focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

#elp-site .container {
  width: min(1300px,92vw);
  margin: 0 auto;
}

#elp-site .label {
  font-family: var(--label);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

#elp-site .grain {
  position: fixed;
  inset: 0;
  z-index: 390;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* intro curtain */
#elp-site .curtain {
  position: fixed;
  inset: 0;
  z-index: 350;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#elp-site .curtain .clock {
  display: inline-block;
}

#elp-site .curtain .cword {
  font-family: var(--exp);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--sand);
  font-size: clamp(2rem,7vw,5rem);
  overflow: hidden;
  display: flex;
  gap: .02em;
  justify-content: center;
}

#elp-site .curtain .cword span {
  display: inline-block;
  transform: translateY(110%);
  animation: cup .9s var(--ease) forwards;
}

#elp-site .curtain .cphoto {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: .5em;
  font-family: var(--label);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brass-hi);
  font-size: clamp(.6rem,1.55vw,1.1rem);
  overflow: hidden;
}

#elp-site .curtain .cphoto span {
  display: inline-block;
  transform: translateY(140%);
  animation: cup .8s var(--ease) forwards;
  animation-delay: .5s;
}

#elp-site .curtain .cbar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--brass);
  width: 0;
  animation: cbar 1.7s var(--ease) .2s forwards;
}

@keyframes cup {
  to {
    transform: none;
  }
}

@keyframes cbar {
  to {
    width: 100%;
  }
}

#elp-site .curtain.done {
  transform: translateY(-100%);
  transition: transform 1s var(--ease);
}

#elp-site .curtain .csub {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--label);
  font-size: .66rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mut-d);
  opacity: 0;
  animation: fadein .6s ease .8s forwards;
}

@keyframes fadein {
  to {
    opacity: 1;
  }
}

/* header */
#elp-site header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  padding: 26px 0;
  transition: padding .4s var(--ease),background .4s,color .4s;
  color: var(--fg);
}

#elp-site header.solid {
  background: rgba(20,29,39,.86);
  backdrop-filter: blur(14px);
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dk);
}

#elp-site .headrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#elp-site .brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

#elp-site .brand .bn {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: .01em;
}

#elp-site .brand .bn b {
  color: var(--brass-hi);
}

#elp-site .brand .bs {
  font-family: var(--label);
  font-size: .54rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--mut-d);
  margin-top: 4px;
  padding-left: 1px;
}

#elp-site nav.main ul {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}

#elp-site nav.main a {
  font-family: var(--label);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
}

#elp-site nav.main a:not(.navcta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right .4s var(--ease);
}

#elp-site nav.main a:not(.navcta):hover::after {
  right: 0;
}

#elp-site .navcta {
  border: 1px solid currentColor;
  padding: 10px 22px;
  transition: background .3s,color .3s,border-color .3s;
}

#elp-site .navcta:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--navy);
}

#elp-site .menu-btn {
  display: none;
  background: none;
  border: 1px solid currentColor;
  color: inherit;
  padding: 9px 13px;
  font-family: var(--label);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}

/* hero */
#elp-site .hero {
  position: relative;
  height: 1050px;
  background: var(--navy);
  color: var(--fg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 128px 0 60px;
}

#elp-site .hero .glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(50% 45% at 82% 22%,rgba(176,138,79,.22),transparent 60%),
    radial-gradient(45% 40% at 10% 88%,rgba(60,84,74,.28),transparent 62%);
}

#elp-site .hero .container {
  position: relative;
  z-index: 3;
}

#elp-site .hero .kick {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--line-dk);
  padding-bottom: 20px;
  margin-bottom: 60px;
}

#elp-site .hero .kick .r {
  font-family: var(--label);
  font-size: .64rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--mut-d);
}

#elp-site .hero-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--brass-hi);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadein .8s ease .1s forwards;
}

#elp-site .hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem,7vw,7rem);
  line-height: .95;
  letter-spacing: -.02em;
}

#elp-site .hero h1 .ln {
  display: block;
  overflow: hidden;
}

#elp-site .hero h1 .ln i {
  display: inline-block;
  font-style: normal;
  transform: translateY(110%);
  opacity: 0;
}

#elp-site .hero h1 em {
  font-style: italic;
  color: var(--brass-hi);
}

#elp-site.loaded .hero h1 .ln i {
  animation: lineup 1s var(--ease) forwards;
}

#elp-site.loaded .hero h1 .ln:nth-child(1) i {
  animation-delay: .15s;
}

#elp-site.loaded .hero h1 .ln:nth-child(2) i {
  animation-delay: .28s;
}

#elp-site.loaded .hero h1 .ln:nth-child(3) i {
  animation-delay: .41s;
}

@keyframes lineup {
  to {
    transform: none;
    opacity: 1;
  }
}

#elp-site .hero .undr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin-top: 44px;
}

#elp-site .hero .lede {
  max-width: 44ch;
  color: #e4dfd3;
  font-size: 1.2rem;
  opacity: 0;
  animation: fadein .8s ease .7s forwards;
}

#elp-site .hero .cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: fadein .8s ease .85s forwards;
}

#elp-site .btn {
  display: inline-block;
  font-family: var(--label);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 17px 38px;
  transition: transform .3s var(--ease),background .3s,color .3s,border-color .3s;
  will-change: transform;
}

#elp-site .btn-fill {
  background: var(--brass);
  color: var(--navy);
  font-weight: 600;
}

#elp-site .btn-fill:hover {
  background: var(--brass-hi);
}

#elp-site .btn-line {
  color: var(--fg);
  border-bottom: 1px solid var(--fg);
  padding: 0 2px 6px;
}

#elp-site .btn-line:hover {
  color: var(--brass-hi);
  border-color: var(--brass-hi);
}

#elp-site .strip {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding-top: 50px;
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

#elp-site .strip .frame {
  width: 340px;
  height: 230px;
  flex: none;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-dk);
}

#elp-site .strip .frame .im {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(.15) contrast(1.03);
  will-change: transform;
  transform: translate3d(0,var(--py,0),0);
}

#elp-site .strip .frame .cap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--label);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
  z-index: 2;
}

#elp-site .strip .i1 {
  background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1200&q=80&auto=format&fit=crop'),linear-gradient(135deg,#2c3a44,#141d27);
}

#elp-site .strip .i2 {
  background-image: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1200&q=80&auto=format&fit=crop'),linear-gradient(135deg,#5a4a30,#241c12);
}

#elp-site .strip .i3 {
  background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?w=1200&q=80&auto=format&fit=crop'),linear-gradient(135deg,#3a3630,#1c1a16);
}

#elp-site .strip .i4 {
  background-image: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1200&q=80&auto=format&fit=crop'),linear-gradient(135deg,#436055,#141d27);
}

#elp-site .strip .i5 {
  background-image: url('https://images.unsplash.com/photo-1502920917128-1aa500764cbd?w=1200&q=80&auto=format&fit=crop'),linear-gradient(135deg,#4a3a26,#241812);
}

#elp-site .strip .i6 {
  background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1200&q=80&auto=format&fit=crop'),linear-gradient(135deg,#334654,#10171f);
}

#elp-site .marq {
  background: var(--sand);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 26px 0;
}

#elp-site .marq .tk {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marq 34s linear infinite;
}

#elp-site .marq:hover .tk {
  animation-play-state: paused;
}

@keyframes marq {
  to {
    transform: translateX(-50%);
  }
}

#elp-site .marq .it {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  padding: 0 44px;
  display: flex;
  align-items: center;
  gap: 16px;
}

#elp-site .marq .it::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
  display: inline-block;
}

#elp-site .work {
  background: var(--sand);
  padding: 130px 0;
}

#elp-site .work .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 70px;
}

#elp-site .work .head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem,5.5vw,4.6rem);
  line-height: 1;
  letter-spacing: -.01em;
}

#elp-site .work .head p {
  color: var(--mut);
  max-width: 44ch;
  font-size: 1.125rem;
}

#elp-site .disciplines {
  display: flex;
  flex-direction: column;
}

#elp-site .disc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 55px 0;
  border-top: 1px solid var(--line);
}

#elp-site .disc:last-child {
  border-bottom: 1px solid var(--line);
}

#elp-site .disc .shot {
  position: relative;
  height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
}

#elp-site .disc .shot .im {
  position: absolute;
  inset: -8% 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(.12) contrast(1.03);
  will-change: transform;
  transform: translate3d(0,var(--py,0),0);
  transition: filter .7s;
}

#elp-site .disc:hover .shot .im {
  filter: grayscale(0) contrast(1.05);
}

#elp-site .disc .shot .pl {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--label);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

#elp-site .disc .no {
  font-family: var(--label);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
}

#elp-site .disc h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem,4vw,3.2rem);
  margin: 10px 0 16px;
  line-height: 1;
}

#elp-site .disc p {
  color: var(--mut);
  max-width: 44ch;
  margin-bottom: 22px;
  font-size: 1.0625rem;
}

#elp-site .disc .more {
  font-family: var(--label);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 5px;
  transition: letter-spacing .3s, color .3s;
}

#elp-site .disc .more:hover {
  letter-spacing: .24em;
  color: var(--brass);
}

#elp-site .wk-event .im {
  background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1400&q=80&auto=format&fit=crop'),linear-gradient(135deg,#5a4a30,#241c12);
}

#elp-site .wk-dest .im {
  background-image: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80&auto=format&fit=crop'),linear-gradient(135deg,#2c3a44,#141d27);
}

#elp-site .wk-port .im {
  background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?w=1400&q=80&auto=format&fit=crop'),linear-gradient(135deg,#3a3630,#1c1a16);
}

#elp-site .manifesto {
  background: var(--navy);
  color: var(--fg);
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

#elp-site .manifesto .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 50%,rgba(176,138,79,.14),transparent 60%);
}

#elp-site .manifesto .container {
  position: relative;
  z-index: 2;
}

#elp-site .manifesto p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem,3.6vw,2.9rem);
  line-height: 1.32;
  max-width: 30ch;
  margin: 0 auto;
  text-align: center;
}

#elp-site .manifesto p em {
  font-style: italic;
  color: var(--brass-hi);
}

#elp-site .manifesto .word {
  display: inline-block;
  opacity: .16;
  transition: opacity .5s var(--ease);
}

#elp-site .manifesto .word.lit {
  opacity: 1;
}

#elp-site .about {
  background: var(--sand);
  padding: 130px 0;
}

#elp-site .about .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#elp-site .about .pic {
  position: relative;
  height: 640px;
  overflow: hidden;
  border: 1px solid var(--line);
}

#elp-site .about .pic .im {
  position: absolute;
  inset: -12% 0;
  background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1200&q=80&auto=format&fit=crop'),linear-gradient(150deg,#2a2014,#10171f);
  background-size: cover;
  background-position: center top;
  filter: grayscale(.12);
  will-change: transform;
  transform: translate3d(0,var(--py,0),0);
}

#elp-site .about .pic .badge {
  position: absolute;
  right: -1px;
  bottom: -1px;
  background: var(--navy);
  color: var(--fg);
  padding: 20px 26px;
  z-index: 2;
  max-width: 230px;
}

#elp-site .about .pic .badge .k {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-hi);
  font-size: 1.2rem;
}

#elp-site .about .pic .badge p {
  font-family: var(--label);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mut-d);
  margin-top: 6px;
  line-height: 1.7;
}

#elp-site .about h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem,4.4vw,3.6rem);
  margin: 16px 0 22px;
  line-height: 1.04;
}

#elp-site .about h2 em {
  font-style: italic;
  color: var(--brass);
}

#elp-site .about .body p {
  color: var(--mut);
  margin-bottom: 18px;
  max-width: 46ch;
  font-size: 1.0625rem;
}

#elp-site .about .sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.9rem;
  margin-top: 8px;
}

#elp-site .about .vet {
  margin-top: 26px;
  border-left: 2px solid var(--brass);
  padding-left: 22px;
}

#elp-site .about .vet .k {
  font-family: var(--label);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
}

#elp-site .about .vet p {
  font-size: 1rem;
  margin-top: 8px;
}

#elp-site .final {
  background: var(--navy);
  color: var(--fg);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#elp-site .final .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 20%,rgba(176,138,79,.18),transparent 60%);
}

#elp-site .final .container {
  position: relative;
  z-index: 2;
}

#elp-site .final .label {
  color: var(--brass-hi);
}

#elp-site .final h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem,7vw,6rem);
  line-height: 1.02;
  margin: 16px 0 24px;
}

#elp-site .final h2 em {
  font-style: italic;
  color: var(--brass-hi);
}

#elp-site .final p {
  color: #dcd8cd;
  max-width: 46ch;
  margin: 0 auto 40px;
  font-size: 1.125rem;
}

#elp-site .final .cta-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

#elp-site .wordmark {
  margin-top: 120px;
  line-height: .8;
  overflow: hidden;
}

#elp-site .wordmark span {
  display: block;
  font-family: var(--exp);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(3rem,15.5vw,15rem);
  letter-spacing: -.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,172,106,.5);
  text-stroke: 1px rgba(212,172,106,.5);
  transform: translateY(30%);
  transition: transform 1.1s var(--ease);
}

#elp-site .wordmark.in span {
  transform: none;
}

#elp-site footer {
  background: var(--navy);
  color: var(--mut-d);
  border-top: 1px solid var(--line-dk);
  padding: 34px 0;
}

#elp-site .footrow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--label);
  font-size: .74rem;
}

#elp-site footer a:hover {
  color: var(--brass-hi);
}

#elp-site .rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease),transform 1s var(--ease);
}

#elp-site .rv.in {
  opacity: 1;
  transform: none;
}

#elp-site .stg>* {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease),transform .8s var(--ease);
}

#elp-site .stg.in>* {
  opacity: 1;
  transform: none;
}

#elp-site .stg.in>*:nth-child(1) {
  transition-delay: .05s;
}

#elp-site .stg.in>*:nth-child(2) {
  transition-delay: .13s;
}

#elp-site .stg.in>*:nth-child(3) {
  transition-delay: .21s;
}

#elp-site .stg.in>*:nth-child(4) {
  transition-delay: .29s;
}

#elp-site .stg.in>*:nth-child(5) {
  transition-delay: .37s;
}

#elp-site .stg.in>*:nth-child(6) {
  transition-delay: .45s;
}

#elp-site .stg.in>*:nth-child(7) {
  transition-delay: .53s;
}

#elp-site .cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
  pointer-events: none;
  z-index: 395;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease),height .25s var(--ease),background .25s;
  mix-blend-mode: difference;
}

#elp-site .cursor.big {
  width: 44px;
  height: 44px;
  background: var(--brass-hi);
}

@media(max-width:920px) {
  #elp-site .work {
    padding: 80px 0;
  }
  #elp-site .manifesto {
    padding: 90px 0;
  }
  #elp-site .about {
    padding: 80px 0;
  }
  #elp-site .final {
    padding: 90px 0;
  }
  #elp-site .work .head {
    margin-bottom: 50px;
  }
  #elp-site nav.main ul {
    display: none;
  }
  #elp-site .menu-btn {
    display: block;
  }
  #elp-site .hero {
    height: auto;
    min-height: 600px;
    padding: 110px 0 50px;
  }
  #elp-site .hero .undr {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  #elp-site .work .head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  #elp-site .disc {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  #elp-site .disc .shot {
    height: 260px;
    order: -1;
  }
  #elp-site .about .grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #elp-site .about .pic {
    height: 440px;
    order: -1;
  }
  #elp-site .cursor {
    display: none;
  }
}

@media(prefers-reduced-motion:reduce) {
  #elp-site * {
    animation: none!important;
    scroll-behavior: auto;
    transition: none!important;
    --py: 0!important;
  }
  #elp-site .curtain {
    display: none!important;
  }
  #elp-site .hero h1 .ln i, #elp-site .hero .lede, #elp-site .hero .cta-row, #elp-site .hero-eyebrow {
    opacity: 1!important;
    transform: none!important;
  }
  #elp-site .rv, #elp-site .stg>* {
    opacity: 1!important;
    transform: none!important;
  }
  #elp-site .wordmark span {
    transform: none!important;
  }
  #elp-site .manifesto .word {
    opacity: 1!important;
  }
  #elp-site .cursor {
    display: none!important;
  }
}


/* ============================================================
   HEADER  (Elementor Theme Builder → Header template)
   Scoped under #elp-header — independent of the homepage.
   ============================================================ */

#elp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  padding: 26px 0;
  color: var(--fg);
  transition: padding .4s var(--ease), background .4s, color .4s;
}
#elp-header.solid {
  background: rgba(20,29,39,.86);
  backdrop-filter: blur(14px);
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dk);
}
#elp-header .elp-h-inner {
  width: min(1300px,92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
#elp-header .elp-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: inherit;
}
#elp-header .elp-brand .bn {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: .01em;
}
#elp-header .elp-brand .bn b {
  color: var(--brass-hi);
}
#elp-header .elp-brand .bs {
  font-family: var(--label);
  font-size: .54rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--mut-d);
  margin-top: 4px;
  padding-left: 1px;
}
#elp-header .elp-h-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.5;
}
#elp-header .elp-h-meta .m1 {
  font-family: var(--label);
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass-hi);
  font-weight: 600;
}
#elp-header .elp-h-meta .m2 {
  font-family: var(--label);
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mut-d);
}
#elp-header .elp-nav ul {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
#elp-header .elp-nav a {
  font-family: var(--label);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  color: inherit;
  text-decoration: none;
}
#elp-header .elp-nav a:not(.navcta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right .4s var(--ease);
}
#elp-header .elp-nav a:not(.navcta):hover::after {
  right: 0;
}
#elp-header .elp-nav .navcta {
  border: 1px solid currentColor;
  padding: 10px 22px;
  transition: background .3s, color .3s, border-color .3s;
}
#elp-header .elp-nav .navcta:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--navy);
}
#elp-header .elp-menu-btn {
  display: none;
  background: none;
  border: 1px solid currentColor;
  color: inherit;
  padding: 9px 13px;
  font-family: var(--label);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}

@media(max-width:920px) {
  #elp-header .elp-h-meta {
    display: none;
  }
  #elp-header .elp-nav ul {
    display: none;
    position: absolute;
    top: 58px;
    right: 4vw;
    flex-direction: column;
    background: var(--navy2);
    padding: 20px 26px;
    gap: 16px;
    border: 1px solid var(--line-dk);
  }
  #elp-header .elp-nav ul.open {
    display: flex;
  }
  #elp-header .elp-menu-btn {
    display: block;
  }
}


/* ============================================================
   FOOTER  (Elementor Theme Builder → Footer template)
   Scoped under #elp-footer — independent of the homepage.
   ============================================================ */

#elp-footer {
  background: var(--navy);
  color: var(--mut-d);
  border-top: 1px solid var(--line-dk);
  padding: 110px 0 40px;
  overflow: hidden;
}
#elp-footer .elp-f-inner {
  width: min(1300px,92vw);
  margin: 0 auto;
}
#elp-footer .elp-f-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 55px;
}
#elp-footer .elp-f-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: var(--fg);
}
#elp-footer .elp-f-brand .bn {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
}
#elp-footer .elp-f-brand .bn b {
  color: var(--brass-hi);
}
#elp-footer .elp-f-brand .bs {
  font-family: var(--label);
  font-size: .56rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--mut-d);
  margin-top: 5px;
}
#elp-footer .elp-f-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
#elp-footer .elp-f-nav a {
  font-family: var(--label);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mut-d);
  text-decoration: none;
  transition: color .3s;
}
#elp-footer .elp-f-nav a:hover {
  color: var(--brass-hi);
}
#elp-footer .elp-wordmark {
  line-height: .8;
  margin: 20px 0 55px;
  text-align: center;
  overflow: hidden;
}
#elp-footer .elp-wordmark span {
  display: block;
  font-family: var(--exp);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(3rem,15.5vw,15rem);
  letter-spacing: -.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,172,106,.5);
  text-stroke: 1px rgba(212,172,106,.5);
  transform: translateY(30%);
  transition: transform 1.1s var(--ease);
}
#elp-footer .elp-wordmark.in span {
  transform: none;
}
#elp-footer .elp-f-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--label);
  font-size: .74rem;
  border-top: 1px solid var(--line-dk);
  padding-top: 30px;
}
#elp-footer .elp-f-bottom a {
  color: var(--mut-d);
  text-decoration: none;
  transition: color .3s;
}
#elp-footer .elp-f-bottom a:hover {
  color: var(--brass-hi);
}

@media(max-width:920px) {
  #elp-footer {
    padding: 70px 0 34px;
  }
  #elp-footer .elp-f-top {
    flex-direction: column;
    gap: 18px;
  }
}

@media(prefers-reduced-motion:reduce) {
  #elp-header,
  #elp-header * {
    transition: none !important;
  }
  #elp-footer .elp-wordmark span {
    transform: none !important;
    transition: none !important;
  }
}