/* ==========================================================================
   ISHLVLSTUDIOS — CONTACT — Mockup 01
   Minimal, compact, direct — one destination (the email address), reached
   without excessive scroll. Same root variables, fonts, header/footer, and
   editorial black-on-white language as every approved page; no orbit, no
   media, no form.
   ========================================================================== */

:root{
  --black:#0a0a0a;
  --white:#ffffff;
  --gray-1:#6b6b6b;
  --gray-2:#b3b3b3;
  --ease:cubic-bezier(.22,.61,.36,1);
  --ease-soft:cubic-bezier(.16,.84,.44,1);
}

*{box-sizing:border-box;}
html,body{ height:100%; margin:0; }
body{
  background:var(--white); color:var(--black);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Helvetica Neue',Arial,sans-serif;
  -webkit-font-smoothing:antialiased; width:100%;
  overflow-x:hidden;
}
img{display:block;max-width:100%;}

/* ==========================================================================
   TOP BAR — identical to every approved page.
   ========================================================================== */
.film-bar{
  position:absolute; top:0;left:0;right:0; z-index:40;
  display:flex; align-items:center; justify-content:space-between;
  padding:calc(30px + env(safe-area-inset-top)) calc(36px + env(safe-area-inset-right)) 30px calc(36px + env(safe-area-inset-left)); pointer-events:none;
}
.film-bar > *{pointer-events:auto;}
.home-mark img{height:88px;width:auto;display:block;opacity:.92;transition:opacity .4s var(--ease);}
.home-mark:hover img{opacity:1;}
.home-mark:focus-visible{outline:2px solid var(--black); outline-offset:4px;}
.division-id{
  font-size:14px;
  font-weight:500;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--black);
  white-space:nowrap;
}

/* Page footer — matches every approved page exactly. */
.corner-id{
  width:100%; box-sizing:border-box;
  padding:0 36px 32px;
  font-size:10px;letter-spacing:.12em;text-transform:uppercase; color:var(--gray-2);
  display:flex; justify-content:flex-end; gap:8px;
}

/* ==========================================================================
   REVEAL — same one-time fade/lift pattern used on every approved page.
   ========================================================================== */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .9s var(--ease-soft),transform .9s var(--ease-soft);}
.reveal.is-visible{opacity:1;transform:translateY(0);}
.contact-copy.reveal{transition-delay:.1s;}
.email-block.reveal{transition-delay:.2s;}
.inquiry-section.reveal{transition-delay:.05s;}

/* Masked line reveal — reserved for the single-word CONTACT heading, the
   page's one large typographic gesture. The outer .mask clips; the inner
   line lifts up from below and fades in, then settles — no letters, no
   bounce, no zoom. */
.mask{display:block; overflow:hidden;}
.mask-inner{
  display:block;
  transform:translateY(115%);
  opacity:0;
  transition:transform 1s var(--ease-soft), opacity 1s var(--ease-soft);
}
.mask-inner.is-visible{transform:translateY(0); opacity:1;}

/* ==========================================================================
   OPENING — compact, not full 100vh: strong presence without forcing a
   long scroll before the email is reached.
   ========================================================================== */
.contact-hero{
  width:100%; min-height:86vh; min-height:86svh; box-sizing:border-box;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:center;
  padding:96px 36px 0;
}
.contact-hero-inner{
  max-width:820px; width:100%; margin:0 auto;
}
.contact-heading{
  margin:0 0 34px;
  font-family:'Newsreader',Georgia,serif; font-style:normal; font-weight:400;
  font-size:clamp(56px,12vw,140px); line-height:1; letter-spacing:-.01em;
  color:var(--black);
}
.contact-copy{
  margin:0 0 46px;
  font-family:'Newsreader',Georgia,serif; font-style:normal; font-weight:400;
  font-size:21px; line-height:1.65; color:var(--black);
  max-width:46ch;
}

/* ==========================================================================
   PRIMARY EMAIL ACTION — the page's one real call to action. No button,
   no border, no card: a large text link with a line and CSS arrow that
   respond on hover/focus, plus a small label that swaps text.
   ========================================================================== */
.email-block{
  display:flex; flex-direction:column; align-items:flex-start; gap:12px;
}
.email-link{
  position:relative;
  display:inline-flex; align-items:baseline; gap:14px;
  color:var(--black); text-decoration:none;
}
.email-text{
  font-family:'Newsreader',Georgia,serif; font-style:normal; font-weight:400;
  font-size:clamp(24px,4.4vw,44px); line-height:1.2; letter-spacing:0;
  transition:letter-spacing .4s var(--ease-soft);
}
.email-link:hover .email-text,
.email-link:focus-visible .email-text{
  letter-spacing:.01em;
}
/* Underline — a real line, not text-decoration, so it can expand from 0
   width on hover/focus instead of just appearing. */
.email-link::after{
  content:'';
  position:absolute; left:0; bottom:-6px;
  width:100%; height:1px; background:rgba(10,10,10,.18);
  transform-origin:left center;
}
.email-link::before{
  content:'';
  position:absolute; left:0; bottom:-6px;
  width:100%; height:1px; background:var(--black);
  transform:scaleX(0); transform-origin:left center;
  transition:transform .5s var(--ease-soft);
}
.email-link:hover::before,
.email-link:focus-visible::before{
  transform:scaleX(1);
}
/* CSS arrow — same construction as the site's approved non-emoji arrow
   (two rotated borders), sized up to match this link's larger scale. */
.email-arrow{
  display:inline-block;
  width:14px; height:14px; margin-bottom:6px;
  border-top:2px solid currentColor;
  border-right:2px solid currentColor;
  transform:rotate(45deg);
  opacity:.55;
  transition:opacity .4s var(--ease), transform .4s var(--ease-soft);
}
.email-link:hover .email-arrow,
.email-link:focus-visible .email-arrow{
  opacity:1;
  transform:rotate(45deg) translate(3px,-3px);
}
.email-link:focus-visible{
  outline:2px solid var(--black); outline-offset:8px;
}
/* Small label — swaps "Contact" / "Open Email" via JS; the static text is
   meaningful on its own if JS never runs, so nothing is lost. */
.email-label{
  font-size:10px; font-weight:500; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gray-1);
  transition:color .4s var(--ease-soft);
}
.email-link:hover ~ .email-label,
.email-link:focus-visible ~ .email-label{
  color:var(--black);
}

/* ==========================================================================
   INQUIRY INDEX — quiet typographic sequence beneath the email. Default
   state sits dimmed; each term reaches full black only on its own hover
   or keyboard focus — never a competing block of black text.
   ========================================================================== */
.inquiry-section{
  width:100%; box-sizing:border-box;
  padding:6vh 36px 10vh;
}
.inquiry-list{
  max-width:820px; margin:0 auto; padding:0; list-style:none;
  display:flex; flex-wrap:wrap; gap:10px 28px;
}
.inquiry-list a{
  display:inline-block;
  font-size:12px; font-weight:500; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gray-2); text-decoration:none;
  padding:6px 0;
  transition:color .4s var(--ease-soft);
}
.inquiry-list a:hover,
.inquiry-list a:focus-visible{
  color:var(--black);
}
.inquiry-list a:focus-visible{
  outline:2px solid var(--black); outline-offset:4px;
}

/* ==========================================================================
   REDUCED MOTION — everything visible and usable with no scroll/hover
   animation; the email and inquiry links work identically either way.
   ========================================================================== */
@media (prefers-reduced-motion: reduce){
  .reveal, .mask-inner{opacity:1 !important; transform:none !important; transition:none !important;}
  .email-text, .email-arrow, .email-link::before, .email-label, .inquiry-list a, .home-mark img{
    transition:none !important;
  }
}

/* ==========================================================================
   TOUCH — remove cursor-dependent affordances; keep the activation states
   (focus/active) so a tap still shows the underline/arrow response.
   ========================================================================== */
@media (hover:none){
  .email-link:active .email-arrow{opacity:1; transform:rotate(45deg) translate(3px,-3px);}
  .email-link:active::before{transform:scaleX(1);}
  .inquiry-list a:active{color:var(--black);}
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:900px){
  .home-mark img{height:64px;}
  .division-id{font-size:12px;}
  .contact-hero{padding:84px 28px 0;}
}
@media (max-width:680px){
  .film-bar{padding:calc(22px + env(safe-area-inset-top)) calc(20px + env(safe-area-inset-right)) 22px calc(20px + env(safe-area-inset-left));}
  .home-mark img{height:48px;}
  .division-id{font-size:11px;letter-spacing:.08em;}
  .corner-id{padding:0 20px 24px;font-size:9px;}

  .contact-hero{min-height:auto; padding:74px 20px 0;}
  .contact-heading{font-size:clamp(44px,16vw,64px); margin-bottom:24px;}
  .contact-copy{font-size:18px; line-height:1.6; margin-bottom:34px; max-width:none;}

  .email-text{font-size:clamp(20px,7vw,28px); word-break:break-word;}
  .email-arrow{width:11px;height:11px;margin-bottom:4px;}
  .email-link{gap:10px;}

  .inquiry-section{padding:4vh 20px 8vh;}
  .inquiry-list{gap:8px 20px;}
  .inquiry-list a{font-size:11px;}
}
@media (max-height:640px){
  .contact-hero{min-height:auto; padding-top:110px; padding-bottom:6vh;}
}
