:root{
  --ma-bg:#040421;
  --ma-text:#e9e9ee;
  --ma-muted:rgba(255,255,255,.72);
  --ma-line:rgba(255,255,255,.12);
  --ma-accent:#b8ff3b;
  --ma-panel:rgba(5,5,35,.72);
  --ma-shadow:0 18px 70px rgba(0,0,0,.45);
  --ma-radius:14px;
  --ma-max:1180px;
  --ma-pad:24px;
}

.maSite, .maSite *{ box-sizing:border-box; }
.maSite{
  background:var(--ma-bg);
  color:var(--ma-text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
}
.maSite a{ color:inherit; text-decoration:none; }

.maContainer{ max-width:var(--ma-max); margin:0 auto; padding:0 var(--ma-pad); }
.maAccent{ color:var(--ma-accent); }

/* Header */
.maHeader{
  position:sticky; top:0; z-index:999;
  background:rgba(2,2,20,.75);
  border-bottom:1px solid var(--ma-line);
  backdrop-filter: blur(10px);
}
.maHeader__inner{
  display:flex;
  align-items:center;
  padding:18px var(--ma-pad);
  max-width:var(--ma-max);
  margin:0 auto;
}
.maBrand{ font-weight:900; font-size:18px; display:flex; }
.maBrand__m{ color:#fff; }
.maBrand__a{ color:var(--ma-accent); }

/* Nav (works for desktop + mobile) */
.maNav{
  display:flex;
  gap:22px;
  font-size:12px;
  letter-spacing:.14em;
  align-items:center;
  margin-left:auto;
}
.maNav a{ color:rgba(255,255,255,.82); text-transform:uppercase; }
.maNav a:hover{ color:#fff; }

/* Dropdown */
.maNavItem{ position:relative; }
.maNavBtn{
  appearance:none;
  border:0;
  background:transparent;
  padding:0;
  margin:0;
  cursor:pointer;
  font:inherit;
  letter-spacing:inherit;
  color:rgba(255,255,255,.82);
  text-transform:uppercase;
}
.maNavBtn:hover{ color:#fff; }

/* hover buffer (helps desktop hover stability) */
.maHasDropdown::after{
  content:"";
  position:absolute;
  left:-16px;
  right:-16px;
  top:100%;
  height:16px;
}

/* Desktop hover opens menu */
@media (hover:hover) and (pointer:fine){
  .maHasDropdown:hover .maDropdown{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
}

/* Click/tap opens menu (all devices) */
.maHasDropdown.is-open .maDropdown{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.maDropdown{
  position:absolute;
  top:calc(100% + 12px);
  left:-10px;
  min-width:220px;
  background:rgba(2,2,20,.96);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  box-shadow:0 18px 70px rgba(0,0,0,.45);
  padding:10px;

  opacity:0;
  transform:translateY(6px);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;

  max-height:260px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  z-index:1000;
}
.maDropdownItem{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:none;
  color:rgba(255,255,255,.82);
}
.maDropdownItem:hover{
  background:rgba(255,255,255,.06);
  color:#fff;
}

/* Mobile header tightening (still inline, no burger) */
@media (max-width:980px){
  .maHeader__inner{ padding:14px 16px; }
  .maNav{ gap:16px; font-size:11px; flex-wrap:wrap; }
}

/* Hero */
.maHero{
  padding:70px 0 30px;
  border-bottom:1px solid var(--ma-line);
  background:
    radial-gradient(1200px 520px at 50% 30%, rgba(20,20,120,.25), transparent 65%),
    linear-gradient(180deg, rgba(2,2,24,.35), rgba(2,2,24,.95));
}
.maKicker{ margin:0 0 18px; color:rgba(255,255,255,.7); font-size:12px; }
.maHero__title{ font-size:clamp(42px,5vw,74px); font-weight:900; line-height:.95; margin:0; }
.maHero__sub{ font-size:clamp(14px,1.6vw,22px); font-style:italic; margin-left:10px; color:rgba(255,255,255,.85); }
.maText{ max-width:720px; color:var(--ma-muted); line-height:1.65; margin-top:18px; }

/* Hero cards */
.maHeroCards{ display:flex; gap:18px; margin-top:28px; flex-wrap:wrap; }
.maCard{
  display:flex;
  gap:14px;
  padding:14px;
  background:rgba(5,5,35,.72);
  border-radius:var(--ma-radius);
  box-shadow:var(--ma-shadow);
  min-width:280px;
  flex:1;
}
.maCard__body{ display:flex; flex-direction:column; justify-content:center; gap:8px; }
.maLabel{ margin:0; font-size:12px; font-weight:700; }
.maCard__link{ font-size:13px; color:rgba(255,255,255,.92); line-height:1.35; }
.maCard__link:hover{ color:#fff; }

/* Images */
.maImg{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
  display:block;
}
.maImg--small{ width:140px; height:100px; flex:0 0 auto; }
.maImg--slide{ height:260px; border-radius:12px; }
.maImg--about{ height:360px; border-radius:18px; }

/* Sections */
.maSection{ padding:60px 0; }
.maEyebrow{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.7); margin:0 0 8px; }
.maH2{ font-size:clamp(24px,2.6vw,36px); font-weight:900; margin:0 0 10px; }

/* Wide showreel video */
.maShowreel{ overflow:hidden; }
.maVideoWide{
  width:100%;
  max-width:1600px;
  margin:32px auto 0;
  padding:0 24px;
}
.maVideo{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  border-radius:18px;
  overflow:hidden;
  background:#000;
  box-shadow:0 30px 90px rgba(0,0,0,.55);
}
.maVideo iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
@media (max-width:768px){
  .maVideoWide{ max-width:100%; padding:0 16px; margin-top:18px; }
}

/* Selected Work strip (manual only) */
.maWorkWide{ overflow:hidden; }
.maCarouselWide{
  width:100%;
  max-width:1600px;
  margin:24px auto 0;
  padding:0 24px;
}
.maCarouselWrap{
  position:relative;
  background:rgba(2,2,22,.55);
  border-top:1px solid var(--ma-line);
  border-bottom:1px solid var(--ma-line);
  padding:22px 0;
}
.maCarousel{
  display:flex;
  gap:24px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  overscroll-behavior-x:contain;
  padding:0 58px;
  scrollbar-width: thin;
}
.maSlide{
  flex:0 0 auto;
  width:480px;
  scroll-snap-align:center;
}
.maCarouselBtn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.9);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:5;
}
.maCarouselBtn--left{ left:10px; }
.maCarouselBtn--right{ right:10px; }
.maCarouselBtn:hover{ background:rgba(255,255,255,.10); }

@media (max-width:768px){
  .maCarouselWide{ max-width:100%; padding:0 16px; }
  .maCarousel{ padding:0 40px; gap:18px; }
  .maSlide{ width:80vw; }
}

/* ABOUT wrapper */
.maAboutWrap{
  width:100%;
  max-width:1600px;
  margin:0 auto;
  padding:0 24px;
}
.maAboutGrid{
  display:grid;
  grid-template-columns: 380px 1fr 520px;
  gap:28px;
  align-items:start;
}
.maAboutTitle{
  margin:0 0 18px;
  font-size:clamp(34px,3vw,54px);
  font-weight:900;
  line-height:1.02;
}
.maAboutLeft .maImg--about{ margin-top:14px; }

/* Positioning */
.maAboutMid{ transform: translateY(175px); }
.maAboutRight{ transform: translateY(205px); }

/* Chips */
.maChips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
  max-width:560px;
}
.maChip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.06em;
  border:1px solid rgba(184,255,59,.65);
  color:rgba(184,255,59,.95);
  background:rgba(184,255,59,.06);
}

/* Right cards */
.maAboutRight{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.maPillCard{
  border:2px solid rgba(184,255,59,.7);
  border-radius:22px;
  padding:16px 18px;
  background:rgba(0,0,0,.10);
  box-shadow:0 22px 70px rgba(0,0,0,.30);
}
.maPillHead{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
}
.maPillIcon{
  width:30px; height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  border:1px solid rgba(184,255,59,.55);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.92);
}
.maPillIcon svg{ width:18px; height:18px; display:block; }
.maPillTitle{ font-weight:800; font-size:14px; color:rgba(255,255,255,.95); }
.maPillDesc{ margin:0; color:rgba(255,255,255,.72); font-size:13px; line-height:1.5; text-align:center; }

/* Divider line */
.maDivider{ width:100%; height:1px; background:var(--ma-line); }
.maDivider--about{ margin-top:120px; }

/* CONTACT */
.maContact{
  border-top:1px solid var(--ma-line);
  background: radial-gradient(900px 420px at 50% 20%, rgba(184,255,59,.10), transparent 60%);
}
.maContactInner{ max-width: 920px; text-align:center; }
.maContactTitle{ margin:0; font-size:clamp(34px,4vw,58px); font-weight:900; line-height:1.05; }
.maContactSub{ margin:14px auto 0; max-width:720px; color:rgba(255,255,255,.74); line-height:1.6; font-size:14px; }

/* WPForms wrapper */
.maWpforms{ margin:28px auto 0; width:min(860px, 100%); text-align:left; }
.maWpforms .wpforms-container{ margin:0 !important; }
.maWpforms .wpforms-title,
.maWpforms .wpforms-description{ display:none !important; }
.maWpforms .wpforms-field-label{
  font-size:12px !important;
  color: rgba(255,255,255,.82) !important;
  margin:0 0 6px !important;
  font-weight:600 !important;
}
.maWpforms .wpforms-required-label{ color: rgba(184,255,59,.95) !important; }
.maWpforms input[type="text"],
.maWpforms input[type="email"],
.maWpforms textarea{
  width:100% !important;
  padding:12px 12px !important;
  border-radius:0 !important;
  border:1px solid rgba(255,255,255,.35) !important;
  background:rgba(0,0,0,.08) !important;
  color:rgba(255,255,255,.92) !important;
  box-shadow:none !important;
}
.maWpforms textarea{ min-height:120px !important; resize:vertical !important; }
.maWpforms input:focus,
.maWpforms textarea:focus{
  border-color: rgba(184,255,59,.95) !important;
  outline:none !important;
  box-shadow: 0 0 0 3px rgba(184,255,59,.14) !important;
}
.maWpforms .wpforms-field.wpforms-field-name .wpforms-field-row{
  display:grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap:18px !important;
  align-items:end !important;
}
.maWpforms .wpforms-field.wpforms-field-name .wpforms-field-row-block{
  width:auto !important;
  margin:0 !important;
}
.maWpforms .wpforms-field.wpforms-field-name .wpforms-field-row-block input{ height:44px !important; }
.maWpforms .wpforms-submit-container{ display:flex !important; justify-content:flex-end !important; margin-top:16px !important; }
.maWpforms button[type="submit"].wpforms-submit{
  background: var(--ma-accent) !important;
  color:#0b0b16 !important;
  border:1px solid rgba(184,255,59,.9) !important;
  border-radius:0 !important;
  padding:12px 28px !important;
  font-weight:900 !important;
}
.maWpforms button[type="submit"].wpforms-submit:hover{ filter:brightness(1.05) !important; }

/* Responsive About + Name field */
@media (max-width:1100px){
  .maAboutWrap{ max-width:100%; padding:0 16px; }
  .maAboutGrid{ grid-template-columns:1fr; }
  .maAboutMid, .maAboutRight{ transform:none; }
  .maChips{ max-width:100%; }
  .maDivider--about{ margin-top:34px; }
}
@media (max-width:768px){
  .maWpforms .wpforms-field.wpforms-field-name .wpforms-field-row{ grid-template-columns:1fr !important; }
}

/* Footer */
.maFooter{
  padding:26px 0;
  border-top:1px solid var(--ma-line);
  background:rgba(2,2,20,.8);
  font-size:13px;
  color:rgba(255,255,255,.6);
}
.maFooterRow{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  flex-wrap:nowrap;
}
.maFooterLeft{
  display:grid;
  grid-template-columns:auto auto auto;
  column-gap:48px;
  align-items:start;
}
.maFooterItem{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:rgba(255,255,255,.7);
}
.maFooterItem:hover{ color:rgba(255,255,255,.95); }
.maFooterIcon{ width:18px; height:18px; margin-top:2px; }
.maFooterIcon svg{ width:18px; height:18px; display:block; }
.maBackTop{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  white-space:nowrap;
}
.maBackTop:hover{ color:rgba(255,255,255,.95); }
.maFooterBottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--ma-line);
}
@media (max-width:900px){
  .maFooterRow{ flex-wrap:wrap; }
  .maFooterLeft{ grid-template-columns:1fr; row-gap:12px; }
}
/* Make carousel slides clickable without changing layout */
.maSlideLink{
  display:block;
  width:100%;
  height:100%;
  border-radius:12px; /* matches your slide rounding */
  overflow:hidden;
  outline:none;
}

/* Keep the same look (no underline etc) */
.maSlideLink:link,
.maSlideLink:visited{
  text-decoration:none;
}

/* Optional: subtle hover, doesn’t affect size/structure */
@media (hover:hover) and (pointer:fine){
  .maSlideLink:hover .maImg--slide{
    filter:brightness(1.03);
  }
}

/* Accessibility focus */
.maSlideLink:focus-visible{
  box-shadow:0 0 0 3px rgba(184,255,59,.25);
  border-radius:12px;
}
