/* ==========================================================================
   ELEMENT SEVEN — NEW IDENTITY LANDING
   Design system: Neo-Wave editorial. Black / Ivory foundation, gold accent.
   ========================================================================== */

:root{
  /* -- Brand colors (from brand guide, authoritative) -- */
  --c-black: #0A0A0A;
  --c-ivory: #F5F5F2;
  --c-graphite: #2D2D2D;
  --c-gold: #D6C2A1;

  /* -- Derived tones -- */
  --c-black-soft: #111110;
  --c-ivory-dim: #EDECE7;
  --c-line-on-dark: rgba(245,245,242,0.14);
  --c-line-on-dark-strong: rgba(245,245,242,0.28);
  --c-line-on-light: rgba(10,10,10,0.12);
  --c-line-on-light-strong: rgba(10,10,10,0.26);
  --c-text-dark-muted: rgba(245,245,242,0.62);
  --c-text-light-muted: rgba(10,10,10,0.58);

  /* -- Type -- */
  --f-display: 'Michroma', sans-serif;       /* primary display / hero */
  --f-label: 'Orbitron', sans-serif;         /* technical labels, eyebrows, nav */
  --f-head: 'Space Grotesk', sans-serif;     /* secondary headlines */
  --f-stat: 'Sora', sans-serif;              /* numerals / stats / metadata */
  --f-body: 'Inter', sans-serif;             /* body / UI */

  /* -- Rhythm -- */
  --edge: clamp(24px, 5vw, 64px);
  --section-pad: clamp(88px, 12vw, 168px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body{
  margin:0;
  background: var(--c-black);
  color: var(--c-ivory);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,p{ margin:0; }
button{ font-family:inherit; background:none; border:none; color:inherit; cursor:pointer; }

::selection{ background: var(--c-gold); color: var(--c-black); }

/* Focus visibility */
a:focus-visible, button:focus-visible{
  outline: 1px solid var(--c-gold);
  outline-offset: 4px;
}

/* -------------------------------------------------------------------------
   Utility
   ------------------------------------------------------------------------- */
.eyebrow{
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  display:flex;
  align-items:center;
  gap: 12px;
}
.eyebrow::before{
  content:'';
  width: 22px;
  height: 1px;
  background: var(--c-gold);
  display:inline-block;
}
.section-light .eyebrow{ color:#9c8560; }

.section{
  position: relative;
  padding: var(--section-pad) var(--edge);
}
.section-inner{
  max-width: 1440px;
  margin: 0 auto;
}
.section-light{
  background: var(--c-ivory);
  color: var(--c-black);
}
.section-dark{
  background: var(--c-black);
  color: var(--c-ivory);
}

.hairline{
  border: none;
  border-top: 1px solid var(--c-line-on-dark);
  margin: 0;
}
.section-light .hairline{ border-top-color: var(--c-line-on-light); }

/* reveal-on-scroll */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.reveal-line{
  overflow: hidden;
}
.reveal-line > span{
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}
.reveal-line.is-visible > span{ transform: translateY(0); }

/* -------------------------------------------------------------------------
   Loader
   ------------------------------------------------------------------------- */
#loader{
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c-black);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
#loaderMark svg{
  width: 58px;
  height: auto;
  display: block;
  overflow: visible;
}

/* The V/7 mark is the two <polygon> elements in the approved artwork.
   Only their visibility is animated (clip-path reveal/hide) — no path
   data, geometry, proportions, or color are touched. */
#loaderMark svg polygon{
  clip-path: inset(0 0 100% 0);
  animation: v7RevealHide 1.8s cubic-bezier(0.65,0,0.35,1) infinite;
}
#loaderMark svg polygon:nth-of-type(2){
  animation-delay: 0.08s;
}

/* The ELEMENT wordmark is the existing <path> elements — simple fade-in,
   shape untouched. */
#loaderMark svg path{
  opacity: 0;
  animation: loaderWordFade 0.7s ease forwards;
  animation-delay: 0.25s;
}

@keyframes v7RevealHide{
  0%   { clip-path: inset(0 0 100% 0); }
  45%  { clip-path: inset(0 0 0% 0); }
  65%  { clip-path: inset(0 0 0% 0); }
  100% { clip-path: inset(0 0 100% 0); }
}
@keyframes loaderWordFade{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
#loader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* -------------------------------------------------------------------------
   Navigation
   ------------------------------------------------------------------------- */
#nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 22px var(--edge);
  transition: transform 0.6s var(--ease), background-color 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
#nav.is-scrolled{
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--c-line-on-dark);
  padding-top: 16px;
  padding-bottom: 16px;
}
#nav.is-hidden{ transform: translateY(-100%); }

.nav-logo img{
  height: 30px;
  width: auto;
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 40px;
}
.nav-links a{
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ivory);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after{
  content:'';
  position:absolute;
  left:0; right:100%;
  bottom:0;
  height:1px;
  background: var(--c-gold);
  transition: right 0.4s var(--ease);
}
.nav-links a:hover::after{ right:0; }

.nav-toggle{
  display:none;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 620;
}
.nav-toggle span{
  position:absolute;
  left:0; right:0;
  height:1px;
  background: var(--c-ivory);
  transition: transform 0.4s var(--ease), opacity 0.3s ease, top 0.4s var(--ease);
}
.nav-toggle span:nth-child(1){ top: 0; }
.nav-toggle span:nth-child(2){ top: 9px; }
.nav-toggle span:nth-child(3){ top: 18px; }
.nav-toggle.is-open span:nth-child(1){ top:9px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ top:9px; transform: rotate(-45deg); }

#mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--c-black);
  display:flex;
  flex-direction: column;
  justify-content:center;
  padding: var(--edge);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}
#mobile-menu.is-open{ transform: translateY(0); }
#mobile-menu ul{ display:flex; flex-direction:column; gap: 18px; }
#mobile-menu a{
  font-family: var(--f-display);
  font-size: clamp(30px, 9vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
#mobile-menu .mobile-meta{
  margin-top: 56px;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-text-dark-muted);
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* -------------------------------------------------------------------------
   Hero — Video (sticky/pinned full-bleed background)
   ------------------------------------------------------------------------- */
#hero-video{
  position: relative;
  /* extra height beyond 100vh gives the video "dwell" scroll room while
     pinned, before the content section below fully covers it */
  height: 150vh;
}
.hero-video-sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--c-black);
}
.hero-video-fallback{
  position: absolute; inset: 0;
  z-index: 0;
  background:
    linear-gradient(160deg, #1c1c1b, #0a0a0a 70%);
}
.hero-video{
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-scrim{
  /* minimal legibility gradient only — no grid/noise texture */
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10,10,10,0.32) 0%, rgba(10,10,10,0.08) 30%, rgba(10,10,10,0.08) 60%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}
.hero-video-logo{
  position: absolute;
  z-index: 3;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 62vw);
  filter: drop-shadow(0 6px 30px rgba(0,0,0,0.55));
}
.hero-video-logo img{ width: 100%; height: auto; }


/* -------------------------------------------------------------------------
   Hero — Content (slides up over the pinned video)
   ------------------------------------------------------------------------- */
#hero-content{
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display:flex;
  flex-direction:column;
  justify-content: space-between;
  padding: 120px var(--edge) 48px;
  background: var(--c-black);
}

.hero-top-row{
  position: relative;
  z-index: 2;
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.hero-meta{
  font-family: var(--f-stat);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-text-dark-muted);
  text-align:right;
  line-height: 1.8;
}

.hero-main{
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 64px;
  min-width: 0;
}

.hero-cta{ margin-top: 40px; }

.hero-bottom-note{
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-dark-muted);
}

.hero-eyebrow{
  margin-bottom: 28px;
}
.hero-headline{
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(34px, 6.4vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 17ch;
}
.hero-headline .accent{ color: var(--c-gold); }

.hero-sub{
  margin-top: 32px;
  max-width: 46ch;
  font-family: var(--f-body);
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--c-text-dark-muted);
  font-weight: 300;
}

.hero-bottom-row{
  position: relative;
  z-index: 2;
  margin-top: 56px;
  display:flex;
  justify-content: space-between;
  align-items:flex-end;
  gap: 24px;
}
.cta-link{
  display:inline-flex;
  align-items:center;
  gap: 14px;
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--c-line-on-dark-strong);
  transition: border-color 0.35s ease, gap 0.35s ease;
}
.cta-link .arrow{ display:inline-block; transition: transform 0.4s var(--ease); }
.cta-link:hover{ border-color: var(--c-gold); gap: 20px; }
.cta-link:hover .arrow{ transform: translateY(4px); }

.scroll-indicator{
  display:flex;
  align-items:center;
  gap: 12px;
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--c-text-dark-muted);
}
.scroll-indicator .line{
  width: 1px;
  height: 46px;
  background: var(--c-line-on-dark-strong);
  position: relative;
  overflow: hidden;
}
.scroll-indicator .line::after{
  content:'';
  position:absolute;
  top:-100%; left:0; right:0;
  height: 40%;
  background: var(--c-gold);
  animation: scrollDrop 2.4s ease-in-out infinite;
}
@keyframes scrollDrop{
  0%{ top:-40%; }
  60%{ top:100%; }
  100%{ top:100%; }
}

/* -------------------------------------------------------------------------
   About
   ------------------------------------------------------------------------- */
#about .about-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}
.about-headline{
  font-family: var(--f-head);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-top: 22px;
}
.about-copy p{
  font-family: var(--f-body);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 300;
  color: var(--c-text-light-muted);
  max-width: 52ch;
}
.about-facts{
  margin-top: 48px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 700px){
  .about-facts{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.about-fact{
  border-top: 1px solid var(--c-line-on-light);
  padding-top: 14px;
  min-width: 120px;
}
.about-fact b{
  display:block;
  font-family: var(--f-stat);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
}
.about-fact span{
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-light-muted);
}

/* -------------------------------------------------------------------------
   Capabilities
   ------------------------------------------------------------------------- */
.cap-head{
  display:flex;
  justify-content: space-between;
  align-items:flex-end;
  gap: 24px;
  margin-bottom: clamp(32px,5vw,64px);
}
.cap-headline{
  font-family: var(--f-head);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  margin-top: 18px;
  max-width: 14ch;
}
.cap-count{
  font-family: var(--f-stat);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-text-dark-muted);
  white-space: nowrap;
}

.cap-list{ border-top: 1px solid var(--c-line-on-dark); }
.cap-item{
  border-bottom: 1px solid var(--c-line-on-dark);
  padding: clamp(20px, 3vw, 34px) 0;
  display:grid;
  grid-template-columns: 90px 1fr auto;
  align-items:center;
  gap: 24px;
  transition: padding 0.4s var(--ease);
  cursor: default;
}
.cap-num{
  font-family: var(--f-stat);
  font-size: 13px;
  color: var(--c-gold);
  letter-spacing: 0.05em;
}
.cap-name{
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(20px, 3.4vw, 40px);
  transition: transform 0.5s var(--ease), color 0.4s ease;
  letter-spacing: -0.01em;
}
.cap-tag{
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-dark-muted);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease);
  white-space: nowrap;
}
.cap-item:hover{ padding-left: 14px; padding-right: 14px; }
.cap-item:hover .cap-name{ transform: translateX(10px); color: var(--c-gold); }
.cap-item:hover .cap-tag{ opacity:1; transform: translateX(0); }

/* -------------------------------------------------------------------------
   Selected Work
   ------------------------------------------------------------------------- */
.work-head{
  display:flex;
  justify-content: space-between;
  align-items:flex-end;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.work-headline{
  font-family: var(--f-head);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 46px);
  margin-top: 18px;
  max-width: 16ch;
}
.work-note{
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-text-dark-muted);
  max-width: 30ch;
  text-align:right;
  font-weight: 300;
}

.work-list{
  display:flex;
  flex-direction: column;
  gap: clamp(64px, 9vw, 128px);
}
.work-item{
  display:grid;
  gap: clamp(20px, 3vw, 40px);
}
.work-media{
  position:relative;
  overflow:hidden;
  background: var(--c-graphite);
  aspect-ratio: 16/10;
}
.work-media .ph-fill{
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(135deg, rgba(245,245,242,0.05) 0 2px, transparent 2px 34px),
    linear-gradient(160deg, #1c1c1b, #0f0f0e 70%);
  transition: transform 1.1s var(--ease);
}
.work-media .ph-mark{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  color: rgba(245,245,242,0.22);
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align:center;
  padding: 24px;
}
.work-item:hover .ph-fill{ transform: scale(1.045); }

.work-media video{
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}
.work-media[data-project-video] .ph-fill{
  z-index: 0;
}
.work-playbtn{
  position: absolute;
  z-index: 2;
  inset: 0;
  margin: auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--c-line-on-dark-strong);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}
.work-playbtn span{
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--c-ivory);
  margin-left: 3px;
}
.work-playbtn:hover{ border-color: var(--c-gold); background: rgba(10,10,10,0.75); }
.work-media.is-playing .work-playbtn{ opacity: 0; pointer-events: none; }

.work-info{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line-on-dark);
}
.work-title{
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(18px, 2.1vw, 26px);
  letter-spacing: -0.01em;
}
.work-meta{
  text-align:right;
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-dark-muted);
  line-height: 1.9;
  white-space: nowrap;
}
@media (max-width: 640px){
  .work-meta{ white-space: normal; }
}

/* Editorial size/position variety */
.work-item{ grid-template-columns: 1fr; }
.work-item.is-wide .work-media{ aspect-ratio: 21/9; }
.work-item.is-portrait{ grid-template-columns: 0.62fr 1fr; align-items:end; }
.work-item.is-portrait .work-media{ aspect-ratio: 4/5; }
.work-item.is-portrait .work-info{ grid-column: 2; align-self:end; }
.work-item.is-offset{ grid-template-columns: 1fr 0.62fr; }
.work-item.is-offset .work-media{ aspect-ratio: 4/5; grid-column: 2; }
.work-item.is-offset .work-info{ grid-column: 2; }

@media (max-width: 760px){
  .work-item.is-portrait, .work-item.is-offset{ grid-template-columns: 1fr; }
  .work-item.is-portrait .work-media, .work-item.is-offset .work-media{ grid-column: 1; aspect-ratio: 4/5; }
  .work-item.is-portrait .work-info, .work-item.is-offset .work-info{ grid-column: 1; }
}

/* -------------------------------------------------------------------------
   Current Work strip
   ------------------------------------------------------------------------- */
#current{
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(64px, 9vw, 120px);
}
.current-headline{
  font-family: var(--f-head);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 38px);
  max-width: 20ch;
  margin-top: 18px;
}
.current-copy{
  margin-top: 18px;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--c-text-dark-muted);
  max-width: 46ch;
}

.marquee{
  margin-top: clamp(40px, 6vw, 72px);
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-track{
  display:flex;
  gap: 20px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state: paused; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.marquee-item{
  width: min(320px, 60vw);
  flex-shrink:0;
  display: block;
}
.marquee-item .work-media{ aspect-ratio: 4/3; margin-bottom:14px; }
.marquee-item .work-media img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.02);
  transition: filter 0.4s ease, transform 0.8s var(--ease);
}
.marquee-item:hover .work-media img{
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.03);
}
.marquee-item .m-title{
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.marquee-item:hover .m-title{ color: var(--c-gold); }
.marquee-item .m-sub{
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--c-text-dark-muted);
  margin-top: 4px;
}

/* -------------------------------------------------------------------------
   Pulse Program micro-section
   ------------------------------------------------------------------------- */
#pulse{
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
  border-top: 1px solid var(--c-line-on-light);
}
.pulse-grid{
  display:grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
  align-items:start;
}
.pulse-brand{
  position:sticky;
  top: 120px;
}
.pulse-signal{
  width: clamp(86px, 10vw, 150px);
  margin-top: 24px;
  overflow: hidden;
  line-height: 0;
  clip-path: inset(0 100% 0 0);
  animation: pulseSignalDraw 2.8s var(--ease) infinite;
}
.pulse-signal img{
  display: block;
  width: 100%;
  height: auto;
}
@keyframes pulseSignalDraw{
  0%, 8%{ clip-path: inset(0 100% 0 0); }
  43%, 55%{ clip-path: inset(0 0 0 0); }
  90%, 100%{ clip-path: inset(0 0 0 100%); }
}
.pulse-wordmark{
  margin-top: 28px;
  font-family: var(--f-display);
  font-size: clamp(42px, 7vw, 86px);
  line-height: .88;
  letter-spacing: .08em;
  color: var(--c-text-dark);
}
.pulse-kicker{
  display:block;
  margin-top: 16px;
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--c-text-dark-muted);
}
.pulse-content{
  max-width: 720px;
}
.pulse-status{
  font-family: var(--f-stat);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--c-gold);
}
.pulse-headline{
  margin-top: 14px;
  max-width: 18ch;
  font-family: var(--f-head);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.04;
  text-transform: uppercase;
}
.pulse-intro{
  margin-top: 22px;
  max-width: 58ch;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.65;
  color: var(--c-text-dark-muted);
}
.pulse-points{
  margin-top: 34px;
  border-top: 1px solid var(--c-line-on-light);
}
.pulse-point{
  display:grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line-on-light);
}
.pulse-num{
  font-family: var(--f-stat);
  font-size: 11px;
  color: var(--c-text-dark-muted);
}
.pulse-point strong{
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: .12em;
}
.pulse-point p{
  margin-top: 6px;
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-text-dark-muted);
}
.pulse-footer{
  margin-top: 24px;
  font-family: var(--f-stat);
  font-size: 9px;
  letter-spacing: .12em;
  line-height: 1.8;
  color: var(--c-text-dark-muted);
}

/* -------------------------------------------------------------------------
   New Era statement
   ------------------------------------------------------------------------- */
#new-era{
  min-height: 78vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
  position: relative;
  overflow: hidden;
}
.new-era-line{
  position:absolute;
  left:50%; top:50%;
  width: 1px;
  height: 220%;
  background: var(--c-line-on-dark);
  transform: translate(-50%,-50%) rotate(21deg);
  opacity: 0.5;
}
.new-era-eyebrow{
  justify-content:center;
  margin: 0 auto 32px;
}
.new-era-headline{
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(30px, 6.4vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.new-era-headline .accent{ color: var(--c-gold); }
.new-era-sub{
  margin: 28px auto 0;
  max-width: 44ch;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--c-text-dark-muted);
}
.new-era-tag{
  margin-top: 56px;
  font-family: var(--f-stat);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-text-dark-muted);
}

/* -------------------------------------------------------------------------
   Project Inquiry (CRM form)
   ------------------------------------------------------------------------- */
.inquiry-headline{
  font-family: var(--f-head);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 46px);
  margin-top: 18px;
  max-width: 16ch;
}
.inquiry-copy{
  margin-top: 16px;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--c-text-light-muted);
  max-width: 46ch;
}
.inquiry-frame{
  margin-top: clamp(36px, 5vw, 56px);
  max-width: 760px;
  border: 1px solid var(--c-line-on-light);
  background: #fff;
  /* height mirrors the form's declared data-height so layout doesn't jump */
  height: 1381px;
  max-height: 90vh;
  overflow: auto;
}
.inquiry-frame iframe{
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 640px){
  .inquiry-frame{ max-height: none; height: 1381px; }
}

/* -------------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------------- */
#contact .contact-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items:end;
}
.contact-headline{
  font-family: var(--f-head);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(32px, 5.2vw, 72px);
  line-height: 1.08;
  margin-top: 22px;
}
.contact-copy{
  margin-top: 22px;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(15px,1.3vw,18px);
  color: var(--c-text-light-muted);
  max-width: 40ch;
}
.contact-cta{
  margin-top: 40px;
  display:inline-flex;
  align-items:center;
  gap:16px;
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 30px;
  border: 1px solid var(--c-black);
  transition: background-color 0.35s ease, color 0.35s ease;
}
.contact-cta:hover{ background: var(--c-black); color: var(--c-ivory); }

.contact-side{
  border-top: 1px solid var(--c-line-on-light);
  padding-top: 24px;
}
.contact-email{
  font-family: var(--f-stat);
  font-size: clamp(18px, 2vw, 24px);
}
.contact-note{
  margin-top: 10px;
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-light-muted);
}
.contact-social{
  margin-top: 32px;
  display:flex;
  gap: 20px;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-social a{ border-bottom: 1px solid var(--c-line-on-light-strong); padding-bottom: 3px; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
#footer{
  padding: 48px var(--edge) 32px;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-line-on-dark);
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img{ height: 20px; }
.footer-links{
  display:flex;
  gap: 32px;
}
.footer-links a{
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-dark-muted);
}
.footer-links a:hover{ color: var(--c-ivory); }
.footer-bbb{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:24px 0;
  border-bottom:1px solid var(--c-line-on-dark);
}
.footer-bbb-label{
  font-family:var(--f-label);
  font-size:9px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--c-text-dark-muted);
}
.footer-bbb a{
  display:inline-flex;
  align-items:center;
}
.footer-bbb img{
  display:block;
  width:auto;
  height:54px;
  max-width:180px;
}
.footer-bottom{
  margin-top: 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--f-stat);
  font-size: 11px;
  color: var(--c-text-dark-muted);
  letter-spacing: 0.04em;
}

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 900px){
  .nav-links{ display:none; }
  .nav-toggle{ display:block; }

  #about .about-grid{ grid-template-columns: 1fr; }
  .about-copy{ max-width: none; }

  .cap-item{ grid-template-columns: 44px 1fr; }
  .cap-tag{ display:none; }

  #contact .contact-grid{ grid-template-columns: 1fr; }
  .contact-side{ margin-top: 8px; }

  .hero-bottom-row{ flex-direction:column; align-items:flex-start; gap: 32px; }
  .work-note{ text-align:left; }
  .work-head{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 520px){
  .footer-bbb{
    flex-direction:column;
    gap:10px;
  }

  .hero-top-row{ flex-direction:column; gap: 12px; }
  .hero-meta{ text-align:left; }
  .footer-top{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 760px){
  .pulse-grid{ grid-template-columns: 1fr; gap: 38px; }
  .pulse-brand{ position:static; }
  .pulse-signal{ width: clamp(84px, 24vw, 120px); margin-top: 18px; }
  .pulse-wordmark{ margin-top: 18px; font-size: clamp(42px, 17vw, 72px); }
  .pulse-headline{ max-width: 20ch; }
}
