/* =============================================================================
   MMMEDIA — Mythic Motion Media
   Stylesheet
   -----------------------------------------------------------------------------
   ဖွဲ့စည်းပုံ / STRUCTURE
   01. Tokens (colours, type, spacing)  <- အရောင်/စာလုံး ပြင်ချင်ရင် ဒီမှာပဲ ပြင်ပါ
   02. Reset & base
   03. Typography helpers
   04. Buttons & links
   05. Layout utilities
   06. Reveal animations
   07. Navigation
   08. Hero
   09. Marquee
   10. About
   11. Services
   12. Work
   13. Showreel band
   14. Process
   15. Clients
   16. Testimonials
   17. Contact
   18. Footer
   19. Case-study page (work.html)
   20. Responsive
   ============================================================================= */


/* =============================================================================
   01. TOKENS — ဒီနေရာတစ်ခုတည်းမှာ ပြင်လိုက်ရင် site တစ်ခုလုံး ပြောင်းသွားပါမယ်
   ============================================================================= */
:root {
  /* --- Brand colours --------------------------------------------------- */
  --accent:        #daff1d;          /* logo lime — brand accent */
  --accent-dim:    #b4d417;
  --accent-soft:   rgba(218, 255, 29, 0.12);

  --bg:            #070707;          /* page background */
  --bg-2:          #0d0d0d;          /* alternating section background */
  --surface:       #131313;          /* cards */
  --surface-2:     #1a1a1a;

  --text:          #f4f4f1;          /* primary text */
  --text-muted:    #8e8e88;          /* secondary text */
  --text-faint:    #57574f;

  --line:          rgba(255, 255, 255, 0.10);
  --line-strong:   rgba(255, 255, 255, 0.22);

  /* --- Type ------------------------------------------------------------ */
  --font-display:  "Archivo", "Noto Sans Myanmar", system-ui, sans-serif;
  --font-body:     "Archivo", "Noto Sans Myanmar", system-ui, sans-serif;
  --font-mono:     "JetBrains Mono", "Noto Sans Myanmar", ui-monospace, "SF Mono", monospace;

  --fs-hero:   clamp(3.1rem, 12.5vw, 12rem);
  --fs-h1:     clamp(2.5rem, 6.6vw, 6rem);
  --fs-h2:     clamp(2rem, 4.6vw, 4rem);
  --fs-h3:     clamp(1.35rem, 2.2vw, 2rem);
  --fs-lead:   clamp(1.05rem, 1.35vw, 1.35rem);
  --fs-body:   clamp(0.98rem, 1.05vw, 1.06rem);
  --fs-small:  0.82rem;
  --fs-label:  0.72rem;

  /* --- Space & shape --------------------------------------------------- */
  --gutter:        clamp(1.25rem, 4.5vw, 5rem);
  --maxw:          1560px;
  --section-y:     clamp(5rem, 11vh, 10rem);
  --radius:        2px;               /* 0 = fully square, 16px = soft */

  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
  --dur:           0.6s;

  --nav-h:         76px;
}


/* =============================================================================
   02. RESET & BASE
   ============================================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }

::selection { background: var(--accent); color: #000; }

/* Film-grain overlay — remove this block for a perfectly flat look */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.7s steps(2) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-2%, 1.5%); }
  100% { transform: translate(1.5%, -1%); }
}

/* Scroll progress bar */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--accent); z-index: 9999;
  transition: width 0.08s linear;
}

/* Focus ring */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }


/* =============================================================================
   03. TYPOGRAPHY
   ============================================================================= */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 400;
}

.label {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.label--accent { color: var(--accent); }

.accent { color: var(--accent); }
.muted  { color: var(--text-muted); }

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.2px var(--line-strong);
}

/* Section heading block */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-head__label { display: flex; align-items: center; gap: 0.75rem; }
.section-head__label::before {
  content: ""; width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
}


/* =============================================================================
   04. BUTTONS & LINKS
   ============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}
.btn:hover { color: #000; border-color: var(--accent); }
.btn:hover::before { transform: translateY(0); }

.btn--solid { background: var(--accent); color: #000; border-color: var(--accent); }
.btn--solid::before { background: #fff; }
.btn--solid:hover { color: #000; border-color: #fff; }

.btn__arrow { transition: transform 0.4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Underline-on-hover link */
.link-u {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.link-u::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.link-u:hover::after { transform: scaleX(1); transform-origin: left; }


/* =============================================================================
   05. LAYOUT
   ============================================================================= */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section[id] { scroll-margin-top: var(--nav-h); }

.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-2); }
.section--tight { padding-block: clamp(3rem, 6vh, 5rem); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 3rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--16x9  { aspect-ratio: 16 / 9; }
.media--4x5   { aspect-ratio: 4 / 5; }
.media--1x1   { aspect-ratio: 1 / 1; }
.media--3x4   { aspect-ratio: 3 / 4; }


/* =============================================================================
   06. REVEAL ANIMATIONS (JS adds .in when the element scrolls into view)
   ============================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0s);
}
[data-reveal].in { opacity: 1; transform: none; }

[data-reveal="mask"] { opacity: 1; transform: none; clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease); transition-delay: var(--delay, 0s); }
[data-reveal="mask"].in { clip-path: inset(0 0 0 0); }

[data-reveal="scale"] { opacity: 0; transform: scale(1.06); }
[data-reveal="scale"].in { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  html { scroll-behavior: auto; }
}


/* =============================================================================
   07. NAVIGATION
   ============================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), height 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  height: 64px;
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav__logo img { height: 34px; width: auto; transition: height 0.4s var(--ease); }
.nav.is-stuck .nav__logo img { height: 28px; }

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.4rem); }
.nav__links a {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--text); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__right { display: flex; align-items: center; gap: 1rem; }

/* EN / MM language switch */
.lang {
  display: flex; align-items: center;
  border: 1px solid var(--line); border-radius: 100px; overflow: hidden;
}
.lang button {
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em;
  padding: 0.45rem 0.7rem; color: var(--text-muted); transition: 0.3s;
}
.lang button.is-on { background: var(--accent); color: #000; }

.nav__cta { display: inline-flex; }

/* Burger */
.burger { display: none; width: 40px; height: 40px; position: relative; z-index: 1002; }
.burger span {
  position: absolute; left: 8px; right: 8px; height: 1.5px; background: var(--text);
  transition: transform 0.4s var(--ease), opacity 0.25s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 23px; }
.burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Fullscreen mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 1001;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}
.menu.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.menu__list a {
  display: block;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.2rem, 10vw, 4.5rem); line-height: 1.05; letter-spacing: -0.03em;
  padding: 0.35rem 0;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.menu.is-open .menu__list a { opacity: 1; transform: none; }
.menu__list a:hover { color: var(--accent); }
.menu__foot { margin-top: auto; padding-top: 2.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; }


/* =============================================================================
   08. HERO
   ============================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg video, .hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,7,7,0.96) 0%, rgba(7,7,7,0.35) 45%, rgba(7,7,7,0.7) 100%),
    radial-gradient(120% 80% at 50% 100%, rgba(218,255,29,0.10), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(2.5rem, 6vh, 5rem); }

.hero__eyebrow { display: flex; align-items: center; gap: 0.8rem; margin-bottom: clamp(1.25rem, 3vh, 2rem); }
.hero__eyebrow::before { content: ""; width: clamp(28px, 5vw, 64px); height: 1px; background: var(--accent); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-hero);
  line-height: 0.85;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: block;
  transform: translateY(102%);
  animation: riseIn 1.1s var(--ease) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: 0.15s; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.28s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.41s; }
@keyframes riseIn { to { transform: translateY(0); } }

.hero__bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap;
  padding-top: clamp(1.5rem, 4vh, 2.5rem);
  border-top: 1px solid var(--line);
}
.hero__copy { max-width: 46ch; }
.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }

.hero__meta { display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); }
.hero__meta div strong { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.6rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em; }

.scroll-cue {
  position: absolute; right: var(--gutter); bottom: 40%;
  writing-mode: vertical-rl;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-muted); display: flex; align-items: center; gap: 0.8rem; z-index: 3;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 56px; background: linear-gradient(to bottom, var(--accent), transparent);
  animation: cue 2s var(--ease-in-out) infinite;
}
@keyframes cue { 0%,100% { transform: scaleY(0.35); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }


/* =============================================================================
   09. MARQUEE
   ============================================================================= */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: clamp(0.9rem, 2vw, 1.4rem);
}
.marquee__track { display: flex; width: max-content; animation: slide 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__group span {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.1rem, 2.4vw, 2.1rem); letter-spacing: -0.02em;
  padding-inline: clamp(1rem, 2.5vw, 2rem);
  display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem);
}
.marquee__group span::after { content: "✦"; color: var(--accent); font-size: 0.55em; }
@keyframes slide { to { transform: translateX(-50%); } }

.marquee--accent { background: var(--accent); border-color: var(--accent); }
.marquee--accent .marquee__group span { color: #000; }
.marquee--accent .marquee__group span::after { color: #000; opacity: 0.4; }


/* =============================================================================
   10. ABOUT
   ============================================================================= */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.about__media { position: relative; }
.about__media .media { aspect-ratio: 4 / 5; }
.about__badge {
  position: absolute; right: -1.5rem; bottom: -1.5rem;
  background: var(--accent); color: #000;
  padding: 1.25rem 1.5rem; border-radius: var(--radius);
  max-width: 220px;
}
.about__badge strong { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; line-height: 1; display: block; letter-spacing: -0.03em; }
.about__badge span { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; }

.about__body { position: sticky; top: calc(var(--nav-h) + 2rem); }
.about__body p + p { margin-top: 1.25rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: clamp(2rem, 4vw, 3rem); padding-top: 2rem; border-top: 1px solid var(--line); }
.stats__n { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3.2vw, 3rem); line-height: 1; letter-spacing: -0.035em; color: var(--accent); }
.stats__l { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.5rem; display: block; }


/* =============================================================================
   11. SERVICES — hover rows with floating preview image
   ============================================================================= */
.services__list { border-top: 1px solid var(--line); }
.srv {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) minmax(0, 1.05fr) 3rem;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.4rem, 3vw, 2.2rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-inline 0.5s var(--ease);
}
.srv::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, var(--accent-soft), transparent 70%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.srv:hover { padding-inline: 1.25rem; }
.srv:hover::before { opacity: 1; }
.srv__n { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-faint); letter-spacing: 0.1em; }
.srv__title {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.4rem, 3.1vw, 2.6rem); line-height: 1; letter-spacing: -0.03em;
  transition: color 0.4s var(--ease);
}
.srv:hover .srv__title { color: var(--accent); }
.srv__desc { color: var(--text-muted); font-size: 0.95rem; }
.srv__tags { margin-top: 0.6rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.srv__tags span {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--line); padding: 0.28rem 0.6rem; border-radius: 100px; color: var(--text-faint);
}
.srv__arrow { justify-self: end; color: var(--text-faint); transition: transform 0.4s var(--ease), color 0.4s; }
.srv:hover .srv__arrow { transform: translate(4px, -4px); color: var(--accent); }

/* floating cursor preview */
.srv-preview {
  position: fixed; top: 0; left: 0;
  width: 300px; aspect-ratio: 4 / 3;
  border-radius: var(--radius); overflow: hidden;
  pointer-events: none; z-index: 800;
  opacity: 0; transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.srv-preview.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.srv-preview img { width: 100%; height: 100%; object-fit: cover; }


/* =============================================================================
   12. WORK
   ============================================================================= */
.work__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3.5vw, 3.5rem) clamp(1.5rem, 3vw, 3rem); }
.work__item:nth-child(even) { margin-top: clamp(0rem, 8vw, 7rem); }

.card { display: block; position: relative; }
.card .media { aspect-ratio: 4 / 3; }
.card .media img { transition: transform 1.1s var(--ease), filter 0.6s; filter: grayscale(0.35) contrast(1.05); }
.card:hover .media img { transform: scale(1.06); filter: grayscale(0) contrast(1.05); }
.card .media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 55%);
  opacity: 0.85; transition: opacity 0.5s;
}
.card:hover .media::after { opacity: 0.4; }

.card__view {
  position: absolute; z-index: 2; top: 50%; left: 50%;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--accent); color: #000;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  transform: translate(-50%, -50%) scale(0.4); opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.card:hover .card__view { transform: translate(-50%, -50%) scale(1); opacity: 1; }

.card__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: 1.1rem; }
.card__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.1rem, 1.9vw, 1.6rem); letter-spacing: -0.02em; line-height: 1.05; transition: color 0.35s; }
.card:hover .card__title { color: var(--accent); }
.card__cat { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.card__year { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-faint); }

/* filter pills */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.filters button {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.55rem 1.05rem; border: 1px solid var(--line); border-radius: 100px;
  color: var(--text-muted); transition: 0.35s var(--ease);
}
.filters button:hover { border-color: var(--line-strong); color: var(--text); }
.filters button.is-on { background: var(--accent); border-color: var(--accent); color: #000; }

.work__item.is-hidden { display: none; }


/* =============================================================================
   13. SHOWREEL BAND
   ============================================================================= */
.reel { position: relative; min-height: clamp(340px, 62vh, 620px); display: grid; place-items: center; overflow: hidden; }
.reel__bg { position: absolute; inset: 0; }
.reel__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5) brightness(0.55); transition: transform 1.4s var(--ease); }
.reel:hover .reel__bg img { transform: scale(1.05); }
.reel__inner { position: relative; z-index: 2; text-align: center; }
.reel__play {
  width: clamp(88px, 12vw, 132px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid var(--accent); color: var(--accent);
  display: grid; place-items: center; margin: 0 auto 1.75rem;
  transition: background 0.4s var(--ease), color 0.4s, transform 0.4s var(--ease);
}
.reel__play:hover { background: var(--accent); color: #000; transform: scale(1.06); }
.reel__ring { position: absolute; inset: -14px; border: 1px solid rgba(218,255,29,0.3); border-radius: 50%; animation: pulse 2.6s var(--ease-in-out) infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.25); opacity: 0; } }


/* =============================================================================
   14. PROCESS
   ============================================================================= */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.step { background: var(--bg); padding: clamp(1.6rem, 3vw, 2.6rem); transition: background 0.45s var(--ease); }
.step:hover { background: var(--surface); }
.step__n { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent); letter-spacing: 0.16em; }
.step__t { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.15rem, 1.8vw, 1.5rem); letter-spacing: -0.02em; margin: 1.5rem 0 0.75rem; }
.step p { color: var(--text-muted); font-size: 0.92rem; }


/* =============================================================================
   15. CLIENTS
   ============================================================================= */
.clients { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.clients div {
  background: var(--bg-2); display: grid; place-items: center; padding: clamp(1.4rem, 3vw, 2.4rem) 1rem;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em;
  font-size: clamp(0.85rem, 1.3vw, 1.15rem); color: var(--text-faint);
  transition: color 0.4s, background 0.4s;
}
.clients div:hover { color: var(--accent); background: var(--surface); }


/* =============================================================================
   16. TESTIMONIALS
   ============================================================================= */
.quotes { position: relative; min-height: clamp(150px, 22vw, 210px); }
.quote { position: absolute; inset: 0; opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); pointer-events: none; }
.quote.is-on { opacity: 1; transform: none; pointer-events: auto; }
.quote blockquote {
  margin: 0;
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.025em;
  font-size: clamp(1.35rem, 3.1vw, 2.6rem); line-height: 1.2; text-transform: none;
}
.quote figcaption { margin-top: 1.75rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.quotes__dots { display: flex; gap: 0.5rem; margin-top: 2rem; }
.quotes__dots button { width: 28px; height: 2px; background: var(--line-strong); transition: background 0.35s; }
.quotes__dots button.is-on { background: var(--accent); }


/* =============================================================================
   17. CONTACT
   ============================================================================= */
.contact__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); }
.contact__mail {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.15rem, 2.7vw, 2.5rem); letter-spacing: -0.03em; line-height: 1.05;
  display: inline-block; overflow-wrap: anywhere;
}
.contact__mail:hover { color: var(--accent); }
.contact__rows { margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line); }
.contact__row { display: flex; gap: 1.5rem; padding-block: 1.1rem; border-bottom: 1px solid var(--line); }
.contact__row dt { flex: 0 0 100px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin: 0; }
.contact__row dd { margin: 0; color: var(--text-muted); }

.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { position: relative; }
.field label { position: absolute; left: 0; top: 0.9rem; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); pointer-events: none; transition: 0.35s var(--ease); }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 0.9rem 0; color: var(--text); font-family: var(--font-body); font-size: 1rem;
  transition: border-color 0.35s;
}
.field select { color: var(--text-muted); }
.field select option { background: var(--surface); color: var(--text); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--accent); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label { top: -0.7rem; font-size: 0.6rem; color: var(--accent); }
.form__note { font-size: 0.78rem; color: var(--text-faint); }


/* =============================================================================
   18. FOOTER
   ============================================================================= */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: clamp(2rem, 4vw, 4rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.footer__logo img { height: 56px; width: auto; margin-bottom: 1.5rem; }
.footer h4 { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 1.25rem; font-weight: 400; }
.footer__col li { margin-bottom: 0.7rem; }
.footer__col a { color: var(--text-muted); transition: color 0.3s; }
.footer__col a:hover { color: var(--accent); }

.newsletter { display: flex; border-bottom: 1px solid var(--line-strong); }
.newsletter input { flex: 1; background: transparent; border: 0; padding: 0.8rem 0; color: var(--text); font-family: var(--font-body); }
.newsletter input:focus { outline: none; }
.newsletter button { color: var(--accent); padding-left: 1rem; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  padding-block: 1.75rem; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint);
}

.to-top { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-muted); transition: color 0.3s; }
.to-top:hover { color: var(--accent); }


/* =============================================================================
   19. CASE-STUDY PAGE (work.html)
   ============================================================================= */
.cs-hero { padding-top: calc(var(--nav-h) + clamp(3rem, 8vh, 6rem)); }
.cs-hero__title { font-size: var(--fs-h1); }
.cs-hero__media { margin-top: clamp(2.5rem, 5vw, 4rem); }
.cs-hero__media .media { aspect-ratio: 16 / 9; }

.cs-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: clamp(2rem, 4vw, 3rem); border-block: 1px solid var(--line); }
.cs-facts dt { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.5rem; }
.cs-facts dd { margin: 0; font-size: 0.98rem; }

.cs-body { display: grid; grid-template-columns: 0.5fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
.cs-body p + p { margin-top: 1.25rem; }
.cs-body h3 { margin-bottom: 1rem; }

.cs-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2.2vw, 2rem); }
.cs-gallery > *:nth-child(1) { grid-column: span 12; }
.cs-gallery > *:nth-child(2) { grid-column: span 7; }
.cs-gallery > *:nth-child(3) { grid-column: span 5; }
.cs-gallery > *:nth-child(4) { grid-column: span 5; }
.cs-gallery > *:nth-child(5) { grid-column: span 7; }

.cs-next { display: block; text-align: center; padding-block: clamp(4rem, 9vw, 8rem); border-top: 1px solid var(--line); }
.cs-next__title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: var(--fs-h2); letter-spacing: -0.035em; transition: color 0.4s; }
.cs-next:hover .cs-next__title { color: var(--accent); }


/* =============================================================================
   20. RESPONSIVE
   ============================================================================= */
@media (max-width: 1100px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .clients { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .cs-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
  .about__grid { grid-template-columns: 1fr; }
  .about__body { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .cs-body { grid-template-columns: 1fr; }
  .srv { grid-template-columns: 2.5rem 1fr 2rem; }
  .srv__desc { grid-column: 2 / -1; margin-top: 0.5rem; }
  .srv-preview { display: none; }
  .scroll-cue { display: none; }
  .cs-gallery > * { grid-column: span 12 !important; }
}

@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .work__item:nth-child(even) { margin-top: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .clients { grid-template-columns: repeat(2, 1fr); }
  .about__badge { position: static; display: inline-block; margin-top: 1rem; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
}

/* =============================================================================
   BURMESE MODE — မြန်မာစာမှာ အထက်/အောက် သင်္ကေတတွေ ထပ်နေတတ်လို့
   line-height ကို ပိုပေးထားပါတယ်။ letter-spacing ကို သုညထားပါတယ်။
   ============================================================================= */
[data-lang="mm"] body,
[data-lang="mm"] p,
[data-lang="mm"] .lead,
[data-lang="mm"] li,
[data-lang="mm"] dd,
[data-lang="mm"] .srv__desc,
[data-lang="mm"] .step p,
[data-lang="mm"] .quote figcaption { line-height: 1.95; letter-spacing: 0; }

[data-lang="mm"] .display,
[data-lang="mm"] .hero__title,
[data-lang="mm"] .srv__title,
[data-lang="mm"] .step__t,
[data-lang="mm"] .card__title,
[data-lang="mm"] .cs-next__title,
[data-lang="mm"] .contact__mail,
[data-lang="mm"] .quote blockquote,
[data-lang="mm"] .menu__list a { letter-spacing: 0; line-height: 1.5; }

[data-lang="mm"] .label,
[data-lang="mm"] .btn,
[data-lang="mm"] .filters button,
[data-lang="mm"] .stats__l,
[data-lang="mm"] .card__cat,
[data-lang="mm"] .cs-facts dt,
[data-lang="mm"] .contact__row dt,
[data-lang="mm"] .footer h4 { letter-spacing: 0.04em; line-height: 1.8; text-transform: none; }

[data-lang="mm"] .btn { padding-block: 0.85rem; }
[data-lang="mm"] .hero__title { font-size: clamp(2.2rem, 7.5vw, 6rem); }
[data-lang="mm"] .section-head h2 { line-height: 1.45; }
