/* ============================================
   WIN MYAT KO KO — Design System
   Minimal. Intelligent. Intentional.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Chivo:wght@400;700;900&family=Poppins:wght@300;400;500&display=swap');

/* ── Variables ── */
:root {
  --black:       #0C0C0C;
  --black-2:     #141414;
  --black-3:     #1C1C1C;
  --black-4:     #242424;
  --white:       #F5F3EE;
  --white-2:     #D8D4CC;
  --muted:       #918E87;
  --muted-2:     #5A5855;
  --yellow:      #E8B84B;
  --yellow-dim:  #C49A35;

  --font-display: 'Chivo', sans-serif;
  --font-body:    'Poppins', sans-serif;

  --max-width: 1160px;
  --nav-height: 72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
p { color: #D8D4CC; font-weight: 300; max-width: 64ch; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,0.06);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
}
.nav-logo span { color: var(--yellow); }
.nav-logo:hover { color: var(--yellow); }
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--yellow);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  color: var(--yellow);
  border: 1px solid rgba(232, 184, 75, 0.3);
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-links .nav-cta:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.nav-links .nav-cta::after { display: none; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--black-2);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-direction: column;
    gap: 0;
    padding: 24px 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    padding: 14px 40px;
    width: 100%;
    font-size: 1rem;
  }
  .nav-links .nav-cta {
    margin: 12px 40px 0;
    text-align: center;
    width: auto;
  }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(232,184,75,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(232,184,75,0.03) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 120px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
}
.hero-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}
.hero-label span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}
.hero h1 {
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.2s forwards;
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--yellow-dim); transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 400;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white-2); }

/* ── Impact Strip ── */
.impact-strip {
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.impact-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .impact-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.impact-item {
  padding: 0 40px;
  position: relative;
}
.impact-item + .impact-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.impact-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: "tnum" 1, "ss01" 0, "ss02" 0;
  font-variant-numeric: tabular-nums;
}
.impact-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .impact-grid { grid-template-columns: 1fr; gap: 32px; }
  .impact-item { padding: 0; }
  .impact-item + .impact-item::before { display: none; }
}

/* ── Section Base ── */
.section { padding: 100px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.section-label span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--yellow);
}
.section-header { margin-bottom: 64px; }
.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--muted);
}

/* ── Work Cards ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (max-width: 768px) { .work-grid { grid-template-columns: 1fr; } }

.work-card {
  background: var(--black-2);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: block;
}
.work-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow) 0%, transparent 60%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.work-card:hover { background: var(--black-3); }
.work-card:hover::before { transform: scaleX(1); }

.work-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--black-4);
  padding: 4px 10px;
  border-radius: 2px;
}
.work-card h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin-bottom: 16px;
  color: var(--white);
  transition: color 0.2s;
}
.work-card:hover h3 { color: var(--yellow); }
.work-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 42ch;
}
.work-card-result {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1, "ss01" 0, "ss02" 0;
  font-variant-numeric: tabular-nums;
}
.work-card-result-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}
.work-card-arrow {
  position: absolute;
  bottom: 48px; right: 48px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.work-card:hover .work-card-arrow {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translate(2px, -2px);
}
.work-card:hover .work-card-arrow svg path { stroke: var(--black); }

/* ── Positioning Section ── */
.positioning {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.positioning-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) {
  .positioning-inner { grid-template-columns: 1fr; gap: 40px; }
}
.positioning-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 24px;
  color: var(--white);
}
.positioning-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}
.positioning-text p + p { margin-top: 0; }
.positioning-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--yellow);
  border-bottom: 1px solid rgba(232,184,75,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
}
.positioning-link:hover { border-color: var(--yellow); gap: 12px; }

/* ── Contact CTA ── */
.contact-cta {
  padding: 120px 0;
  text-align: center;
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contact-cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}
.contact-cta h2 em {
  font-style: normal;
  color: var(--yellow);
}
.contact-cta p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 auto 40px;
  max-width: 48ch;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.contact-email:hover { color: var(--yellow); border-color: var(--yellow); gap: 14px; }

/* ── Footer ── */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted-2);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--muted-2);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Cursor dot ── */
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}
@media (max-width: 768px) { .cursor-dot { display: none; } }

/* ── Page header (inner pages) ── */
.page-header {
  padding: 160px 0 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-header .section-label { margin-bottom: 24px; }
.page-header h1 { margin-bottom: 20px; }
.page-header p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 56ch;
}

/* ── About page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-photo-placeholder {
  aspect-ratio: 4/5;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted-2);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-photo-placeholder svg { opacity: 0.3; }
.about-narrative p {
  font-size: 1rem;
  line-height: 1.85;
  color: #D8D4CC;
  margin-bottom: 20px;
  max-width: none;
}
.about-narrative p.lead {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.7;
}

/* Skills grid */
.skills-section { padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
@media (max-width: 640px) { .skills-grid { grid-template-columns: 1fr; } }
.skill-block {
  background: var(--black-2);
  padding: 36px;
}
.skill-block h4 {
  color: var(--yellow);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.skill-items { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-item {
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--black-3);
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, border-color 0.2s;
}
.skill-item:hover { color: var(--white); border-color: rgba(232,184,75,0.2); }

/* Certifications */
.certs-section { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.cert-list { margin-top: 36px; }
.cert-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 24px;
}
.cert-name { font-size: 0.9rem; color: var(--white-2); }
.cert-issuer { font-size: 0.8rem; color: var(--muted); }

/* CV Download */
.cv-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(232,184,75,0.3);
  padding: 12px 24px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.cv-download:hover { background: var(--yellow); color: var(--black); }

/* ── Work / Case Study page ── */
.work-index { padding: 60px 0 100px; }
.work-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 24px;
  transition: padding-left 0.3s var(--ease-out);
  cursor: pointer;
}
.work-row:hover { padding-left: 12px; }
.work-row-left { display: flex; align-items: center; gap: 32px; flex: 1; }
.work-row-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--muted-2);
  min-width: 28px;
}
.work-row-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}
.work-row:hover .work-row-title { color: var(--yellow); }
.work-row-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.work-row-year { font-size: 0.8rem; color: var(--muted-2); min-width: 40px; text-align: right; }
.work-row-arrow { color: var(--muted-2); transition: color 0.2s, transform 0.2s; }
.work-row:hover .work-row-arrow { color: var(--yellow); transform: translateX(4px); }

/* Case study detail */
.case-header {
  padding: 160px 0 80px;
  background: var(--black-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.case-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.case-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}
.case-separator { color: var(--muted-2); font-size: 0.7rem; }
.case-year { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; }
.case-header h1 { max-width: 18ch; margin-bottom: 24px; }
.case-header-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 58ch;
  font-weight: 300;
  line-height: 1.7;
}

/* Results strip */
.results-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 64px 0;
}
@media (max-width: 640px) { .results-strip { grid-template-columns: 1fr; } }
.result-card {
  background: var(--black-3);
  padding: 36px;
  border-top: 2px solid var(--yellow);
}
.result-card-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
  font-feature-settings: "tnum" 1, "ss01" 0, "ss02" 0;
  font-variant-numeric: tabular-nums;
}
.result-card-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Case body */
.case-body {
  padding: 80px 0;
  max-width: 720px;
}
.case-body h3 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  margin-top: 48px;
}
.case-body h3:first-child { margin-top: 0; }
.case-body p {
  font-size: 0.975rem;
  line-height: 1.85;
  color: #D8D4CC;
  margin-bottom: 16px;
  max-width: none;
}

/* ── Thinking page ── */
.thinking-grid { padding: 64px 0 100px; }
.article-card {
  display: block;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding-left 0.3s var(--ease-out);
}
.article-card:hover { padding-left: 8px; }
.article-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.article-date { font-size: 0.75rem; color: var(--muted-2); }
.article-category {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(232,184,75,0.08);
  padding: 3px 8px;
  border-radius: 2px;
}
.article-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--white);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.article-card:hover h3 { color: var(--yellow); }
.article-card p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 64ch;
  margin-bottom: 16px;
}
.article-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.2s, gap 0.2s;
}
.article-card:hover .article-read { color: var(--yellow); gap: 10px; }

/* ── Contact page ── */
.contact-page { padding: 80px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-direct-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--white-2);
  transition: color 0.2s, gap 0.2s;
}
.contact-direct-link:hover { color: var(--yellow); gap: 16px; }
.contact-direct-link svg { color: var(--yellow); flex-shrink: 0; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input,
.form-textarea {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  border-radius: 2px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus { border-color: rgba(232,184,75,0.5); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted-2); }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--yellow-dim); transform: translateY(-1px); }

/* ── Utility ── */
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--muted); }
.divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0;
}

/* ── Clients Section ── */
.clients-section {
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.clients-header {
  margin-bottom: 48px;
}
.clients-header p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--muted);
}
.ticker-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.ticker-wrapper::before,
.ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 100%);
}
.ticker-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--black) 0%, transparent 100%);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  height: 160px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ticker-item img {
  height: 100px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(20%) brightness(1.1);
  opacity: 0.9;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}
.ticker-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .ticker-item {
    padding: 0 36px;
    height: 120px;
  }
  .ticker-item img {
    height: 72px;
    max-width: 160px;
  }
  .ticker-wrapper::before,
  .ticker-wrapper::after {
    width: 60px;
  }
}

.ticker-row-label {
  padding: 16px 0 10px;
}
.ticker-label-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.ticker-track-slow {
  animation: ticker-scroll 20s linear infinite;
}
.ticker-wrapper-slow .ticker-track-slow:hover {
  animation-play-state: paused;
}

/* ── Hero above-fold layout ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.hero-content-centered {
  text-align: center;
  padding: 36px 0 24px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content-centered .hero-label { justify-content: center; }
.hero-content-centered h1 {
  max-width: 22ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.hero-content-centered .hero-sub {
  max-width: 52ch;
  text-align: center;
  margin-bottom: 24px;
}
.hero-actions-centered { justify-content: center; }

/* ── Hero full width map ── */
.hero-map-fullwidth {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
#hero-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

/* Map overlay — bottom left */
.hero-map-overlay {
  position: absolute;
  bottom: 24px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(12,12,12,0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: 3px;
  padding: 14px 22px;
  z-index: 10;
}
.hero-map-counter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--yellow);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-map-divider {
  width: 1px; height: 24px;
  background: rgba(232,184,75,0.2);
  flex-shrink: 0;
}
.hero-map-text-wrap { display: flex; flex-direction: column; gap: 2px; }
.hero-map-main {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  color: rgba(245,243,238,0.85);
  min-height: 13px;
  white-space: nowrap;
}
.hero-map-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 8px;
  color: rgba(145,142,135,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-map-dots { display: flex; align-items: center; gap: 3px; flex-shrink: 0; }
.hero-map-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  animation: hero-dot-pulse 2s ease-in-out infinite;
}
.hero-map-dot:nth-child(2) { animation-delay: 0.3s; opacity: 0.55; }
.hero-map-dot:nth-child(3) { animation-delay: 0.6s; opacity: 0.3; }
@keyframes hero-dot-pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(0.5); opacity: 0.2; }
}
@media (max-width: 768px) {
  .hero-content-centered { padding: 24px 0 16px; }
  .hero-content-centered h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-map-overlay { bottom: 12px; left: 12px; padding: 8px 12px; }
}
