/* ─────────────────────────────────────────────
   MELLO IGE — style.css
───────────────────────────────────────────── */

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:     #0E0E0C;
  --bg2:    #141412;
  --bg3:    #1C1C1A;
  --bg4:    #242422;
  --line:   rgba(255, 255, 255, .07);
  --white:  #F2F2EF;
  --g1:     rgba(242, 242, 239, .7);
  --g2:     rgba(242, 242, 239, .4);
  --g3:     rgba(242, 242, 239, .18);
  --g4:     rgba(242, 242, 239, .08);
  --grotesk: 'Space Grotesk', sans-serif;
  --mono:    'Space Mono', monospace;
  --spring:  cubic-bezier(.34, 1.56, .64, 1);
  --out:     cubic-bezier(.25, .46, .45, .94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--grotesk);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) {
  body     { cursor: auto; }
  .cur,
  .cur2    { display: none !important; }
}

/* ── CURSOR ── */
.cur {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .15s, height .15s;
}
.cur2 {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid var(--g3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
}

/* ── DYNAMIC ISLAND ── */
#island {
  position: fixed;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--bg2);
  border-radius: 999px;
  height: 36px; min-width: 130px;
  display: flex; align-items: center;
  justify-content: center;
  gap: 8px; padding: 0 16px;
  border: 1px solid var(--line);
  cursor: none;
  overflow: hidden; white-space: nowrap;
  transition:
    min-width .5s var(--spring),
    height    .5s var(--spring),
    padding   .4s var(--out);
}
#island.expanded { min-width: 288px; height: 56px; padding: 0 20px; }

.i-dot {
  width: 7px; height: 7px;
  border-radius: 50%; background: #3aff8a;
  flex-shrink: 0;
  animation: iPulse 2.5s ease-in-out infinite;
}
@keyframes iPulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.i-default {
  font-family: var(--mono); font-size: 10px;
  color: var(--g2); letter-spacing: .1em;
  transition: opacity .2s; position: absolute;
}
.i-exp {
  display: flex; align-items: center; gap: 12px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s .15s; position: absolute;
}
#island.expanded .i-default  { opacity: 0; }
#island.expanded .i-exp      { opacity: 1; }

.i-text { font-family: var(--grotesk); font-size: 12px; font-weight: 500; color: var(--white); }
.i-sub  { font-family: var(--mono); font-size: 9px; color: var(--g2); letter-spacing: .06em; margin-top: 1px; }

.i-bars { display: flex; align-items: flex-end; gap: 2px; height: 16px; }
.i-bars span {
  display: block; width: 3px; border-radius: 2px;
  background: var(--white);
  animation: iBar .9s ease-in-out infinite alternate;
}
.i-bars span:nth-child(1) { height: 5px;  animation-delay: 0s;   }
.i-bars span:nth-child(2) { height: 11px; animation-delay: .15s; }
.i-bars span:nth-child(3) { height: 8px;  animation-delay: .3s;  }
.i-bars span:nth-child(4) { height: 13px; animation-delay: .08s; }
.i-bars span:nth-child(5) { height: 6px;  animation-delay: .22s; }
@keyframes iBar { from { transform: scaleY(.4); } to { transform: scaleY(1); } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500; height: 52px;
  display: flex; align-items: center;
  padding: 0 2rem;
  background: rgba(14, 14, 12, .85);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--grotesk); font-weight: 700; font-size: 15px;
  letter-spacing: -.02em; color: var(--white);
  text-decoration: none; cursor: none;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none;
  margin-left: auto; margin-right: 2rem;
}
.nav-links a {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  color: var(--g2); text-decoration: none; cursor: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; background: none; border: none;
  padding: 4px; margin-left: auto;
}
.nav-ham span {
  display: block; width: 20px; height: 1.5px;
  background: var(--g2); border-radius: 2px;
  transition: .3s;
}
.nav-ham.open span:nth-child(1) { transform: translateY(6.5px)  rotate(45deg);  }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none; position: fixed;
  top: 52px; left: 0; right: 0;
  z-index: 499;
  background: var(--bg2); border-bottom: 1px solid var(--line);
  flex-direction: column; padding: .5rem 0;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  color: var(--g1); text-decoration: none;
  padding: .9rem 2rem; border-bottom: 1px solid var(--line);
  transition: color .2s, background .2s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--white); background: var(--bg3); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex;
  align-items: center; padding: 80px 0 60px;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 2rem; width: 100%; }

.hero-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .15em; color: var(--g2);
  margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--g3); }

.hero-h1 {
  font-family: var(--grotesk); font-weight: 700;
  font-size: clamp(52px, 9vw, 136px);
  line-height: .9; letter-spacing: -.04em; color: var(--white);
}
.hero-h1 .dim { color: transparent; -webkit-text-stroke: 1px var(--g3); }

.hero-desc {
  font-family: var(--grotesk); font-weight: 300;
  font-size: clamp(15px, 2vw, 20px);
  color: var(--g1); line-height: 1.7;
  max-width: 480px; margin: 1.75rem 0 2.25rem;
  letter-spacing: -.01em;
}
.hero-desc strong { color: var(--white); font-weight: 500; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .75rem 1.5rem; border-radius: 980px;
  font-family: var(--grotesk); font-size: 14px; font-weight: 500;
  letter-spacing: -.01em; text-decoration: none; cursor: none;
  transition: transform .4s var(--spring), background .2s, color .2s;
}
.btn:active { transform: scale(.95) !important; }
.btn-s { background: var(--white); color: var(--bg); }
.btn-s:hover { background: var(--g1); transform: scale(1.04); }
.btn-g { background: var(--g4); color: var(--white); border: 1px solid var(--line); }
.btn-g:hover { background: var(--g3); transform: scale(1.04); }

/* ── HERO iMESSAGE BUBBLES ── */
.hero-bubbles {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 2.25rem; max-width: 420px;
}
.hbub {
  display: inline-flex; align-items: center;
  padding: 7px 14px;
  border-radius: 18px 18px 18px 4px;
  background: var(--bg3);
  font-family: var(--mono); font-size: 12px; color: var(--g1);
  opacity: 0;
  animation: bubPop .5s var(--spring) forwards;
}
.hbub.r {
  border-radius: 18px 18px 4px 18px;
  background: var(--g4); margin-left: auto;
}
@keyframes bubPop {
  from { opacity: 0; transform: scale(.7)  translateY(6px); }
  to   { opacity: 1; transform: scale(1)   translateY(0);   }
}

/* ── DIVIDERS ── */
.rule      { height: 1px; background: var(--line); max-width: 1080px; margin: 0 auto; }
.rule-full { height: 1px; background: var(--line); }

/* ── SECTION ── */
.sec { max-width: 1080px; margin: 0 auto; padding: 6rem 2rem; }

.sec-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .15em; color: var(--g2); margin-bottom: .6rem;
}
.sec-title {
  font-family: var(--grotesk); font-weight: 700;
  font-size: clamp(30px, 5vw, 60px);
  letter-spacing: -.03em; line-height: .95;
  color: var(--white); margin-bottom: 3rem;
}

/* ── PROJECT GRID ── */
.pg {
  display: grid; grid-template-columns: 1fr;
  gap: 2px; background: var(--bg3);
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line);
}
@media (min-width: 640px) {
  .pg                 { grid-template-columns: 1fr 1fr; }
  .pg .p-feat         { grid-column: 1 / -1; }
}

.p {
  background: var(--bg2); text-decoration: none; color: var(--white);
  display: flex; flex-direction: column;
  cursor: none; position: relative; overflow: hidden;
  transition: background .3s;
}
.p:hover { background: var(--bg3); }

.p-img {
  width: 100%; aspect-ratio: 16 / 9;
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.p-feat .p-img  { aspect-ratio: 21 / 8; }
/* cover image — always visible */
.p-cover {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--out), opacity .3s ease;
  z-index: 1;
}
/* loop video — hidden until hover */
.p-loop {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity .4s ease, transform .8s var(--out);
  z-index: 2;
}
.p:hover .p-cover { transform: scale(1.05); }
.p:hover .p-loop  { opacity: 1; transform: scale(1.05); }
.p-sweep {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 30%, rgba(242,242,239,.03) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .7s ease;
}
.p:hover .p-sweep { transform: translateX(110%); }

.p-body {
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--line);
}
.p-tags        { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: .4rem; }
.ptag {
  font-family: var(--mono); font-size: 9px; letter-spacing: .1em;
  color: var(--g2); border: 1px solid var(--line);
  padding: 2px 7px; border-radius: 3px; background: var(--bg);
}
.p-title {
  font-family: var(--grotesk); font-weight: 600;
  font-size: clamp(16px, 2.2vw, 24px);
  letter-spacing: -.02em; color: var(--white);
  margin-bottom: 2px; line-height: 1.05;
}
.p-meta-line {
  font-family: var(--mono); font-size: 10px;
  color: var(--g2); letter-spacing: .06em;
}
.p-arrow {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--g2);
  transition: background .2s, border-color .2s, color .2s, transform .5s var(--spring);
}
.p:hover .p-arrow {
  background: var(--white); border-color: var(--white);
  color: var(--bg); transform: rotate(45deg) scale(1.1);
}

@media (max-width: 500px) {
  .p-img  { display: none; }
  .p-body { border-top: none; padding: .9rem 1.1rem; }
  .pg     { border-radius: 14px; }
}

/* ── ABOUT ── */
.about-bg {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  max-width: 1080px; margin: 0 auto;
  padding: 6rem 2rem;
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; align-items: start;
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: auto 1fr; gap: 5rem; }
}

/* phone */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 256px; flex-shrink: 0;
  border-radius: 40px; background: var(--bg3);
  border: 1.5px solid rgba(242, 242, 239, .1);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(242,242,239,.04);
}
.phone-notch {
  height: 34px; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.phone-pill {
  width: 88px; height: 24px; border-radius: 999px;
  background: var(--bg); border: 1.5px solid rgba(242, 242, 239, .08);
}
.phone-hdr { padding: 10px 14px 8px; border-bottom: 1px solid var(--line); text-align: center; }
.phone-name { font-family: var(--grotesk); font-size: 12px; font-weight: 600; color: var(--white); }
.phone-sub  { font-family: var(--grotesk); font-size: 10px; color: var(--g2); margin-top: 1px; }

.phone-msgs {
  height: 340px; overflow: hidden;
  padding: 10px 10px 6px;
  display: flex; flex-direction: column; gap: 7px;
}
.msg-time { font-family: var(--mono); font-size: 9px; color: var(--g2); text-align: center; flex-shrink: 0; }
.msg {
  max-width: 84%; padding: 7px 11px; flex-shrink: 0;
  font-family: var(--mono); font-size: 11px; line-height: 1.5;
  opacity: 0; animation: msgIn .4s var(--spring) forwards;
}
.msg.recv { background: var(--bg4); color: var(--white); border-radius: 4px 14px 14px 14px; align-self: flex-start; }
.msg.sent { background: var(--white); color: var(--bg);    border-radius: 14px 4px 14px 14px;  align-self: flex-end;   }
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to   { opacity: 1; transform: translateY(0)   scale(1);   }
}
.typing {
  align-self: flex-start; background: var(--bg4);
  border-radius: 4px 14px 14px 14px;
  padding: 9px 12px; display: flex; gap: 4px;
  align-items: center; flex-shrink: 0;
  opacity: 0; animation: msgIn .4s var(--spring) forwards;
}
.t-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--g2);
  animation: tBounce 1.1s ease-in-out infinite;
}
.t-dot:nth-child(2) { animation-delay: .18s; }
.t-dot:nth-child(3) { animation-delay: .36s; }
@keyframes tBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

.phone-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-top: 1px solid var(--line);
}
.phone-input {
  flex: 1; background: var(--g4); border-radius: 999px;
  padding: 6px 12px; font-family: var(--grotesk); font-size: 10px;
  color: var(--g2); border: 1px solid var(--line);
}
.phone-send {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--bg);
}

/* about text */
.about-greeting {
  font-family: var(--grotesk); font-weight: 700;
  font-size: clamp(28px, 4vw, 50px);
  letter-spacing: -.03em; color: var(--white);
  line-height: 1.05; margin-bottom: 1.5rem;
}
.about-p {
  font-family: var(--grotesk); font-size: 15px; font-weight: 300;
  color: var(--g1); line-height: 1.85;
  margin-bottom: 1.1rem; letter-spacing: -.01em;
}
.about-p strong { color: var(--white); font-weight: 500; }
.about-p a      { color: var(--white); text-decoration: underline; text-decoration-color: var(--g3); }
.about-p a:hover { text-decoration-color: var(--white); }

.exp-block   { margin-top: 2.25rem; }
.exp-label,
.skills-label {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .15em; color: var(--g2);
  margin-bottom: .75rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}
.exp-item {
  padding: .8rem 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 1rem;
}
.exp-role  { font-family: var(--grotesk); font-size: 13px; font-weight: 500; color: var(--white); }
.exp-where { font-family: var(--grotesk); font-size: 12px; font-weight: 300; color: var(--g2); margin-top: 2px; }
.exp-year  { font-family: var(--mono); font-size: 11px; color: var(--g2); flex-shrink: 0; }

.skills-block { margin-top: 2.25rem; }
.skills-row   { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-family: var(--grotesk); font-size: 12px; font-weight: 400;
  color: var(--g1); background: var(--bg3);
  border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 999px; cursor: default;
  transition: color .2s, border-color .2s, transform .4s var(--spring);
}
.chip:hover { color: var(--white); border-color: var(--g3); transform: scale(1.08); }

/* ── CONTACT ── */
.contact-inner { max-width: 1080px; margin: 0 auto; padding: 6rem 2rem; }

.contact-big {
  font-family: var(--grotesk); font-weight: 700;
  font-size: clamp(48px, 9vw, 120px);
  letter-spacing: -.04em; line-height: .9;
  color: var(--white); margin-bottom: 1.25rem;
}
.contact-big .dim { color: transparent; -webkit-text-stroke: 1px var(--g3); }

.contact-sub {
  font-family: var(--grotesk); font-size: 15px; font-weight: 300;
  color: var(--g1); line-height: 1.8;
  max-width: 400px; margin-bottom: 2.5rem; letter-spacing: -.01em;
}
.contact-row { display: flex; flex-direction: column; gap: 10px; max-width: 400px; }
.cpill {
  display: flex; align-items: center;
  border-radius: 999px; overflow: hidden;
  text-decoration: none; border: 1px solid var(--line); width: 100%;
  transition: border-color .2s, transform .5s var(--spring), box-shadow .2s;
}
.cpill:hover { border-color: var(--g2); transform: scale(1.03); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.cp-l {
  font-family: var(--mono); font-size: 9px; letter-spacing: .12em;
  color: var(--bg); background: var(--white);
  padding: .65rem 1rem; flex-shrink: 0;
}
.cp-v {
  font-family: var(--grotesk); font-size: 13px; font-weight: 400;
  color: var(--white); padding: .65rem 1.25rem;
}

/* ── FOOTER ── */
footer { border-top: 1px solid var(--line); }
.footer-in {
  max-width: 1080px; margin: 0 auto; padding: 1.5rem 2rem;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.f-logo {
  font-family: var(--grotesk); font-weight: 700; font-size: 15px;
  letter-spacing: -.02em; color: var(--white);
  text-decoration: none; cursor: none;
}
.f-links { display: flex; gap: 1.5rem; list-style: none; }
.f-links a {
  font-family: var(--grotesk); font-size: 12px; font-weight: 300;
  color: var(--g2); text-decoration: none; cursor: none; transition: color .2s;
}
.f-links a:hover { color: var(--white); }
.f-copy { font-family: var(--mono); font-size: 10px; color: var(--g2); letter-spacing: .06em; }

/* ── MODAL ── */
.m-ov {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(8, 8, 7, .92);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.m-ov.open { opacity: 1; pointer-events: all; }

.m-box {
  background: var(--bg2); border: 1px solid rgba(242,242,239,.1);
  border-radius: 22px; max-width: 760px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(24px) scale(.97);
  transition: transform .45s var(--spring);
}
.m-ov.open .m-box { transform: translateY(0) scale(1); }

.m-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.4rem; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--bg2);
  border-radius: 22px 22px 0 0; z-index: 10;
}
.m-dots               { display: flex; gap: 6px; }
.m-dot                { width: 12px; height: 12px; border-radius: 50%; }
.m-dot:nth-child(1)   { background: #FF5F57; }
.m-dot:nth-child(2)   { background: #FEBC2E; }
.m-dot:nth-child(3)   { background: #28C840; }
.m-esc {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  color: var(--g2); background: none; border: none; cursor: none;
  transition: color .2s;
}
.m-esc:hover { color: var(--white); }

.m-body  { padding: 1.5rem; }
.m-tags  { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: .8rem; }
.m-title {
  font-family: var(--grotesk); font-weight: 700;
  font-size: clamp(24px, 5vw, 48px);
  letter-spacing: -.03em; color: var(--white);
  line-height: .95; margin-bottom: .4rem;
}
.m-sub { font-family: var(--mono); font-size: 10px; color: var(--g2); letter-spacing: .1em; margin-bottom: 1.5rem; }

.m-media { margin-bottom: 1.5rem; }
.m-main {
  width: 100%; aspect-ratio: 16 / 9;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg3);
  position: relative; display: flex; align-items: center;
  justify-content: center; margin-bottom: 8px;
}
.m-main iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.m-main img    { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.m-ph {
  font-family: var(--grotesk); font-weight: 700;
  font-size: clamp(28px, 6vw, 64px);
  color: rgba(242,242,239,.04); letter-spacing: -.03em;
}
.m-thumbs {
  display: flex; gap: 6px; overflow-x: auto;
  scrollbar-width: none; padding-bottom: 2px;
}
.m-thumbs::-webkit-scrollbar { display: none; }
.m-thumb {
  flex-shrink: 0; width: 88px; height: 50px;
  border-radius: 7px; overflow: hidden;
  border: 1.5px solid transparent; cursor: none;
  transition: border-color .2s, transform .3s var(--spring);
  background: var(--bg3); display: flex;
  align-items: center; justify-content: center; position: relative;
}
.m-thumb.active     { border-color: var(--white); }
.m-thumb:hover      { transform: scale(1.07); }
.m-thumb img        { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.m-thumb-lbl        { font-family: var(--mono); font-size: 8px; color: var(--g2); letter-spacing: .06em; position: relative; z-index: 1; }
.m-thumb.is-vid::after {
  content: '▶'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(242,242,239,.6); background: rgba(0,0,0,.25);
}
.m-text {
  font-family: var(--grotesk); font-size: 14px; font-weight: 300;
  color: var(--g1); line-height: 1.9; margin-bottom: 1.5rem; letter-spacing: -.01em;
}
.m-text strong { color: var(--white); font-weight: 500; }
.m-dets { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
.m-det  { background: var(--bg3); border: 1px solid var(--line); border-radius: 10px; padding: .85rem; }
.m-det-l { font-family: var(--mono); font-size: 9px; color: var(--g2); letter-spacing: .1em; margin-bottom: 4px; }
.m-det-v { font-family: var(--grotesk); font-size: 13px; font-weight: 500; color: var(--white); }

/* ── SCROLL REVEAL ── */
.rev { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s var(--out); }
.rev.on { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav             { padding: 0 1.25rem; }
  .nav-links      { display: none; }
  .nav-ham        { display: flex; }
  .wrap           { padding: 0 1.25rem; }
  .hero           { padding: 72px 0 40px; }
  .hero-label     { font-size: 9px; letter-spacing: .1em; }
  .hero-bubbles   { max-width: 100%; }
  .hbub           { font-size: 11px; padding: 6px 11px; }
  .sec            { padding: 4rem 1.25rem; }
  .about-grid     { padding: 4rem 1.25rem; gap: 3rem; }
  .contact-inner  { padding: 4rem 1.25rem; }
  .footer-in      { padding: 1.25rem; }
  .f-links        { gap: 1rem; }
  .m-body         { padding: 1.1rem; }
  .phone          { width: 240px; }
  .phone-msgs     { height: 300px; }
}
@media (max-width: 380px) {
  .hero-h1     { font-size: 44px; }
  .contact-big { font-size: 44px; }
}
